* [Comm] ntfs: failed to set times on... @ 2013-11-18 5:20 Kharitonov A. Dmitry 2013-11-18 5:30 ` Hihin Ruslan 0 siblings, 1 reply; 4+ messages in thread From: Kharitonov A. Dmitry @ 2013-11-18 5:20 UTC (permalink / raw) To: community Как сделать чтоб при копировании на ntfs разделы от обычного пользователя не возникали ошибки такого вида: rsync: failed to set times on "/mnt/data/PCB/usbaspiso/firmware/USBasp9010/USBasp9010/firmware/.tpi_defs.h.ni70B4": Operation not permitted (1) ? ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Comm] ntfs: failed to set times on... 2013-11-18 5:20 [Comm] ntfs: failed to set times on Kharitonov A. Dmitry @ 2013-11-18 5:30 ` Hihin Ruslan 2013-11-18 14:19 ` Kharitonov A. Dmitry 0 siblings, 1 reply; 4+ messages in thread From: Hihin Ruslan @ 2013-11-18 5:30 UTC (permalink / raw) To: community [-- Attachment #1: Type: text/plain, Size: 680 bytes --] Здравствуйте Kharitonov A. Dmitry В сообщении от 18 ноября 2013 Kharitonov A. Dmitry написал(a): > Как сделать чтоб при копировании на ntfs разделы от обычного > пользователя не возникали ошибки такого вида: > rsync: failed to set times on > "/mnt/data/PCB/usbaspiso/firmware/USBasp9010/USBasp9010/firmwa >re/.tpi_defs.h.ni70B4": Operation not permitted (1) > ? У файла (каталога более высокого уровня) должны быть права, позволяющие выполнять эту опрацию. Так-же как и на локальных Linux системах. -- А ещё говорят так (fortune): My cup hath runneth'd over with love. ________________________________________________________________________ С уважением Хихин Руслан [-- Attachment #2: This is a digitally signed message part. --] [-- Type: application/pgp-signature, Size: 198 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Comm] ntfs: failed to set times on... 2013-11-18 5:30 ` Hihin Ruslan @ 2013-11-18 14:19 ` Kharitonov A. Dmitry 2013-11-18 16:16 ` Hihin Ruslan 0 siblings, 1 reply; 4+ messages in thread From: Kharitonov A. Dmitry @ 2013-11-18 14:19 UTC (permalink / raw) To: ruslandh, ALT Linux Community general discussions 18.11.2013 09:30, Hihin Ruslan пишет: > Здравствуйте Kharitonov A. Dmitry > В сообщении от 18 ноября 2013 Kharitonov A. Dmitry написал(a): >> Как сделать чтоб при копировании на ntfs разделы от обычного >> пользователя не возникали ошибки такого вида: >> rsync: failed to set times on >> "/mnt/data/PCB/usbaspiso/firmware/USBasp9010/USBasp9010/firmwa >> re/.tpi_defs.h.ni70B4": Operation not permitted (1) >> ? > У файла (каталога более высокого уровня) должны быть права, > позволяющие выполнять эту опрацию. Так-же как и на локальных > Linux системах. С правами всё в порядке. Это какие-то ограничения драйвера ntfs. При изменении времени существующего файла он ругается. [user@eee2 data 17:19:23]$ cd /mnt/data [user@eee2 data 17:45:05]$ mount | grep /mnt/data /dev/sda8 on /mnt/data type fuseblk (rw,nosuid,nodev,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096) [user@eee2 data 17:45:24]$ mkdir tmp [user@eee2 data 17:46:25]$ echo "test" >tmp/tmp [user@eee2 data 17:50:18]$ rsync -trP tmp/tmp{,1} sending incremental file list tmp 5 100% 0.00kB/s 0:00:00 (xfer#1, to-check=0/1) rsync: failed to set times on "/mnt/data/tmp/.tmp1.P8eRT3": Operation not permitted (1) sent 74 bytes received 31 bytes 210.00 bytes/sec total size is 5 speedup is 0.05 rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1055) [sender=3.0.9] [user@eee2 data 17:50:54]$ cp tmp/tmp{,1} cp: переписать «tmp/tmp1»? [user@eee2 data 17:51:05]$ cp tmp/tmp{,1} cp: переписать «tmp/tmp1»? y [user@eee2 data 17:52:12]$ ls -ld /mnt/data drwxrwxrwx 1 root root 4096 ноя 18 17:46 /mnt/data [user@eee2 data 17:57:22]$ ls -ld /mnt/data/tmp drwxrwxrwx 1 root root 232 ноя 18 17:50 /mnt/data/tmp [user@eee2 data 17:58:00]$ ls -l /mnt/data/tmp итого 1 -rwxrwxrwx 1 root root 5 ноя 18 17:50 tmp -rwxrwxrwx 1 root root 5 ноя 18 17:52 tmp1 Однако: [user@eee2 data 18:03:46]$ sudo chown -c user:user /mnt/data [sudo] password for user: changed ownership of '/mnt/data' from root:root to user:user [user@eee2 data 18:03:56]$ sudo chown -c user:user /mnt/data/tmp/ changed ownership of '/mnt/data/tmp/' from root:root to user:user [user@eee2 data 18:17:07]$ rsync -trP tmp/tmp{,1} sending incremental file list tmp 5 100% 0.00kB/s 0:00:00 (xfer#1, to-check=0/1) rsync: failed to set times on "/mnt/data/tmp/.tmp1.7RgXOl": Operation not permitted (1) sent 74 bytes received 31 bytes 210.00 bytes/sec total size is 5 speedup is 0.05 rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1055) [sender=3.0.9] [user@eee2 data 18:17:09]$ rsync -rP tmp/tmp{,1} sending incremental file list tmp 5 100% 0.00kB/s 0:00:00 (xfer#1, to-check=0/1) sent 74 bytes received 31 bytes 210.00 bytes/sec total size is 5 speedup is 0.05 При монтировании собственником всегда встаёт root:root Может это в udev.rules что-то подправить? ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Comm] ntfs: failed to set times on... 2013-11-18 14:19 ` Kharitonov A. Dmitry @ 2013-11-18 16:16 ` Hihin Ruslan 0 siblings, 0 replies; 4+ messages in thread From: Hihin Ruslan @ 2013-11-18 16:16 UTC (permalink / raw) To: community [-- Attachment #1: Type: text/plain, Size: 719 bytes --] Здравствуйте Kharitonov A. Dmitry В сообщении от 18 ноября 2013 Kharitonov A. Dmitry написал(a): > С правами всё в порядке. Это какие-то ограничения драйвера > ntfs. При изменении времени существующего файла он ругаетс Извините, невнимательно прочёл и перепутал ntfs с nfs. Смонтрите что прописано в /etc/fstab -- *** А ещё говорят так (fortune): Save yourself! Reboot in 5 seconds! ________________________________________________________________________ С уважением Хихин Руслан [-- Attachment #2: This is a digitally signed message part. --] [-- Type: application/pgp-signature, Size: 198 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-11-18 16:16 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2013-11-18 5:20 [Comm] ntfs: failed to set times on Kharitonov A. Dmitry 2013-11-18 5:30 ` Hihin Ruslan 2013-11-18 14:19 ` Kharitonov A. Dmitry 2013-11-18 16:16 ` Hihin Ruslan
ALT Linux Community general discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 community community/ http://lore.altlinux.org/community \ mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com public-inbox-index community Example config snippet for mirrors. Newsgroup available over NNTP: nntp://lore.altlinux.org/org.altlinux.lists.community AGPL code for this site: git clone https://public-inbox.org/public-inbox.git