faq обучение настройка
Текущее время: Вс июл 27, 2025 03:58

Часовой пояс: UTC + 3 часа




Начать новую тему Ответить на тему  [ Сообщений: 22 ]  На страницу 1, 2  След.
Автор Сообщение
 Заголовок сообщения: dns-323 и 4 камеры dcs-2102, проблема volume_1
СообщениеДобавлено: Пн июн 14, 2010 10:33 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
День добрый!
Проблема такова: 4 dcs2102 пишут видео на dns 323, два диска по 1тб, по 2 камеры на диск, проблема в том, что при указании в 2102 пути "сервер 192.168.0.32", папка volume_1\kamera1\ - обругивает мол символы _ не допустимы, если писать по умолчанию, то камеры перебивают запись(создается video и обе камеры туда ворочают).
пробовал через telnet редактировать smb.config (менял volume_1 на disk1), файл сохраняется исправленный но при перезагрузке опять Volume_1.
Конфигурацию сохранял, но notepad++ показывает "хрень"

прошивка 1.08
? Как изменить Volume_1 на Disk1


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Вт июн 15, 2010 02:20 
Не в сети

Зарегистрирован: Пн янв 12, 2009 20:37
Сообщений: 1012
Откуда: Киев, Украина
В скрипт фан_плага добавить в конце копирование правленного smb.conf в память с заменой. Тогда настройки будут сохраняться и после ребута.


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Вт июн 15, 2010 09:16 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
Пример команды если можно, ну не силен я в Lunix


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Вт июн 15, 2010 17:11 
Не в сети

Зарегистрирован: Пн янв 12, 2009 20:37
Сообщений: 1012
Откуда: Киев, Украина
Код:
cp -f /mnt/HD_a2/smb.conf /etc/samba/smb.conf

В данном случае исправленный файл smb.conf должен лежать в корне Volume_1


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Ср июн 16, 2010 07:25 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
Спасибо за помощь!


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Чт июн 24, 2010 22:54 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
Продолжение следует:
С проблемой volume_1 более менее поборол, просто переименовываю в фанплюг папки на disk1 и disk2, приведенная команда выше результата не дает
но попытка в пути папки dcs 2102 указать "disk1\kamera1", снова утыкаюсь в ругательство, мол не допустимо. получается что все таки видит Volume_1??

Подскажите: как вариант подмонтировать папки disk1\kamera1 ,2,3,4 отдельными точками(с примером команды) с добавлением в фанплюг()


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 00:43 
Не в сети

Зарегистрирован: Пн янв 12, 2009 20:37
Сообщений: 1012
Откуда: Киев, Украина
Значит неправильно что-то сделали.
Постим сюда содержимое изначальное смб.конф и правленного, а также фанплаг и ффп.лог.


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 16:54 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
1.--------------------фанплюг
#!/bin/sh

# switch to safe working directory on ramdisk
cd /

# write a log, in case sth goes wrong
FFP_LOG=/mnt/HD_a2/ffp.log
#FFP_LOG=/dev/null
exec >>$FFP_LOG 2>&1

# real path to ffp
FFP_PATH=/mnt/HD_a4/ffp

# where to search for the install tarball
FFP_TARBALL=/mnt/HD_a2/fun_plug.tgz

# setup script (used for ffp on USB disk)
FFP_SETUP_SCRIPT=/mnt/HD_a2/.bootstrap/setup.sh

# rc file path
FFP_RC=/ffp/etc/rc


echo "**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****"
date


# check for setup script. an example use for this is to load USB
# kernel modules and mount a USB storage device. The script is
# sourced, that means you can change variables, e.g. FFP_PATH to point
# to the USB device.
if [ -x $FFP_SETUP_SCRIPT ]; then
echo "* Running $FFP_SETUP_SCRIPT ..."
. $FFP_SETUP_SCRIPT
fi

# create /ffp link
echo "ln -snf $FFP_PATH /ffp"
ln -snf $FFP_PATH /ffp

# install tarball
if [ -r $FFP_TARBALL ]; then
echo "* Installing $FFP_TARBALL ..."
mkdir -p $FFP_PATH && tar xzf $FFP_TARBALL -C $FFP_PATH && /ffp/bin/tar xzf $FFP_TARBALL -C $FFP_PATH
if [ $? -eq 0 ]; then
echo "* OK"
fi
rm $FFP_TARBALL
fi

# suid busybox
if [ -x /ffp/bin/busybox ]; then
chown root.root /ffp/bin/busybox
chmod 0755 /ffp/bin/busybox
chmod u+s /ffp/bin/busybox
fi

# run fun_plug.init, if present
if [ -x /ffp/etc/fun_plug.init ]; then
echo "* Running /ffp/etc/fun_plug.init ..."
/ffp/etc/fun_plug.init
fi

# run fun_plug.local, if present
if [ -x /ffp/etc/fun_plug.local ]; then
echo "* Running /ffp/etc/fun_plug.local ..."
/ffp/etc/fun_plug.local
fi

# run commands
if [ -x $FFP_RC ]; then
echo "* Running $FFP_RC ..."
$FFP_RC
echo "* OK"
else
echo "$FFP_RC: Not found or not executable"
fi

cp -f /mnt/HD_a2/smb.conf /etc/samba/smb.conf
cd /usr/share/ftp_server/
mv Volume_1 Disk1
mv Volume_2 Disk2

2ю----------------------------лог
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 09:04:00 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Installing /mnt/HD_a2/fun_plug.tgz ...
tar: WARNING: Converting hard link to symlink
tar: WARNING: Converting hard link to symlink
* OK
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
cp: /mnt/HD_a2/smb.conf: No such file or directory
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 09:13:05 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 09:26:57 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 09:37:34 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 10:28:37 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 10:41:07 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 10:56:06 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Wed Jun 16 11:01:56 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Sat Jun 19 15:56:23 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Sat Jun 19 18:32:28 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Sun Jun 20 17:24:26 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Tue Jun 22 17:16:49 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Tue Jun 22 17:19:42 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK
**** fun_plug script for DNS-323 (2008-08-11 tp@fonz.de) ****
Fri Jun 25 13:31:26 GMT 2010
ln -snf /mnt/HD_a4/ffp /ffp
* Running /ffp/etc/fun_plug.init ...
* Running /ffp/etc/rc ...
* /ffp/start/syslogd.sh inactive
* /ffp/start/SERVERS.sh inactive
* /ffp/start/portmap.sh inactive
* /ffp/start/unfsd.sh inactive
* /ffp/start/nfsd.sh inactive
* /ffp/start/ntpd.sh inactive
* /ffp/start/LOGIN.sh inactive
* /ffp/start/telnetd.sh ...
Starting /ffp/sbin/telnetd -l /ffp/bin/sh
* /ffp/start/sshd.sh inactive
* /ffp/start/rsyncd.sh inactive
* /ffp/start/mediatomb.sh inactive
* /ffp/start/kickwebs.sh inactive
* /ffp/start/lighttpd.sh inactive
* /ffp/start/inetd.sh inactive
* OK


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 17:10 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
1.
1.png
2.
2.png
3.
3.png
4.
5.png
5.

6.png

Как смог вставил картинки


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 17:21 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
исправленный smb.conf

[ global ]
interfaces = egiga0
unix charset = UTF8
workgroup = workgroup
netbios name = piere_carden
server string = Zvezda
hosts allow =
hosts deny =
security = SHARE
encrypt passwords = yes
max log size = 0
socket options = TCP_NODELAY SO_RCVBUF=65536 SO_SNDBUF=65536
max xmit = 65535
create mask = 0777
directory mask = 0777
force create mode = 0777
force directory mode = 0777
load printers = Yes
printcap name = /usr/local/LPRng/etc/printcap
min print space = 2000
max print jobs = 1000
printing = lprng
print command = /usr/local/LPRng/bin/lpr -P%p -r %s
lpq command = /usr/local/LPRng/bin/lpq -P%p
lprm command = /usr/local/LPRng/bin/lprm -P%p %j
lppause command = /usr/local/LPRng/sbin/lpc hold %p %j
lpresume command = /usr/local/LPRng/sbin/lpc release %p %j
queuepause command = /usr/local/LPRng/sbin/lpc -P%p stop
queueresume command = /usr/local/LPRng/sbin/lpc -P%p start
use sendfile =yes


[ web_page ]
comment = Enter Our Web Page Setting
path = /mnt/web_page
valid users =
read only = yes
guest ok = yes

[printers]
path = /mnt/HD_a4/.lpd
guest ok = Yes
printable = Yes
use client driver = Yes
browseable = No

[ Disk1 ]
comment =
path = /mnt/HD_a2
valid users =
read only = no
guest ok = yes
oplocks = no
map archive = no

[ disk2 ]
comment =
path = /mnt/HD_b2
valid users =
read only = no
guest ok = yes
oplocks = no
map archive = no


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 17:41 
Не в сети

Зарегистрирован: Пн янв 12, 2009 20:37
Сообщений: 1012
Откуда: Киев, Украина
Во-первых для каждого из выложенных текстов используйте теги [code ][/code ], так читать удобнее (пробел только перед закрывающей скобкой уберите).
Во-вторых после правки смб-файла лезть в веб-админку нежелательно.
В-третьих в правленном smb.conf меняем Disk1 на disk1 (название должно быть идентично, вплоть до регистра букв).
В-четвертых для вставки картинок пользуемся сервисом imageshack.us или ipicture.ru или подобными и пользуемся тегом [img ][/img ] (без пробелов).
В-пятых дайте сюда вывод команды
Код:
ls -lA /mnt/HD_a2


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 18:37 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
Код:
/ # ls -lA /mnt/HD_a2
drwx------    2 root     root         4096 Jun 16 10:48 .systemfile
-rwxrwxrwx    1 nobody   501       5125238 Jun 20 16:46 avz4.zip
-rwxrwxrwx    1 nobody   501       2179118 Jun 25 13:07 d2gsetup.exe
-rw-r--r--    1 root     root        56375 Jun 25 13:31 ffp.log
-rwxrwxrwx    1 alex     502          1885 Jun 16 10:53 fun_plug
-rwxrwxrwx    1 nobody   501       3300864 Jun 19 15:26 hamachi.msi
drwxrwxrwx    3 alex     502          4096 Jun 22 18:27 kamera1
drwxrwxrwx    2 alex     502          4096 Jun 16 11:03 kamera2
-rwxrwxrwx    1 alex     502       1329305 Jun 16 09:43 mc-4.1.40-pre9-arm926T.t
gz
-rwxrwxrwx    1 alex     502        486040 Jun 16 09:43 ncurses-5.6.tgz
-rwxrwxrwx    1 alex     502          1352 Jun 16 09:33 smb.conf
drwxrwxrwx    7 nobody   501          4096 Jun 22 18:25 video
-rwxrwxrwx    1 nobody   501       1492494 Jun 13 00:41 wrar393ru.exe
/ #


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 19:00 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
Итак :
Убрал
Код:
cd /usr/share/ftp_server/
mv Volume_1 Disk1
mv Volume_2 Disk2

Исправил Disk1 на disk1
перезагрузился - да появились папки disk1 и disk2,
но все равно в dcs 2102 при пути "disk1/kamera1/" пишет mntFailite

В dns 313 такого нет? :?:

Инфа по камере:
Camera Name DCS-2102
Time & Date Jan 4 01:21:32 2009
Firmware Version 1.04, 3227


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 19:31 
Не в сети

Зарегистрирован: Пн янв 12, 2009 20:37
Сообщений: 1012
Откуда: Киев, Украина
Завести пользователя с паролем для камер можно.


Вернуться наверх
 Профиль  
 
 Заголовок сообщения:
СообщениеДобавлено: Пт июн 25, 2010 19:36 
Не в сети

Зарегистрирован: Ср фев 10, 2010 23:28
Сообщений: 26
На dns
Да, можно

под ним и обругивает

user: alex
pass begemot2009
На камере заход под аккаунтом alex

Полазил через команду ls: в папке usr/ftp_server/share как раз и всплывают Volume_1 и 2


Последний раз редактировалось androidsu25 Пт июн 25, 2010 19:49, всего редактировалось 2 раз(а).

Вернуться наверх
 Профиль  
 
Показать сообщения за:  Сортировать по:  
Начать новую тему Ответить на тему  [ Сообщений: 22 ]  На страницу 1, 2  След.

Часовой пояс: UTC + 3 часа


Кто сейчас на форуме

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 2


Вы не можете начинать темы
Вы не можете отвечать на сообщения
Вы не можете редактировать свои сообщения
Вы не можете удалять свои сообщения
Вы не можете добавлять вложения

Найти:
Перейти:  
Создано на основе phpBB® Forum Software © phpBB Group
Русская поддержка phpBB