[ mucorino @ 08.02.2011. 17:45 ] @
Imam negde neku grešku ali neuspevam da je izvalim.Dešava mi se da kada nešto stavljam na /home root se puni.Iako je /home posebna particija. Šta je tu bitno.... Code: # /etc/fstab: static file system information. # # noatime turns off atimes for increased performance (atimes normally aren't # needed; notail increases performance of ReiserFS (at the expense of storage # efficiency). It's safe to drop the noatime options if you want and to # switch between notail / tail freely. # # The root filesystem should have a pass number of either 0 or 1. # All other filesystems should have a pass number of 0 or greater than 1. # # See the manpage fstab(5) for more information. # # <fs> <mountpoint> <type> <opts> <dump/pass> # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts. /dev/sda1 /boot ext4 noauto,noatime 1 2 /dev/sda3 / ext4 noatime 0 1 /dev/sda2 none swap sw 0 0 /dev/sda5 /home ext4 noauto 0 0 /dev/sda6 /montirano/paketi-podaci ext4 defaults 0 0 /dev/sdb1 /montirano/magacin ext4 defaults 0 0 /dev/sdc1 /montirano/bekap ext4 defaults /dev/cdrom /mnt/cdrom auto noauto,ro 0 0 #/dev/fd0 /mnt/floppy auto noauto 0 0 # glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for # POSIX shared memory (shm_open, shm_unlink). # (tmpfs is a dynamically expandable/shrinkable ramdisk, and will # use almost no memory if not populated with files) shm /dev/shm tmpfs nodev,nosuid,noexec 0 0 Dakle iz /montirano/paketi/podaci/xxxxx hoću da kopiram neke filmove u /home i samo se root puni. Code: mount /dev/sda3 on / type ext4 (rw,noatime,commit=0) proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) udev on /dev type tmpfs (rw,nosuid,relatime,size=10240k,mode=755) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620) /dev/sda6 on /montirano/paketi-podaci type ext4 (rw,commit=0) /dev/sdb1 on /montirano/magacin type ext4 (rw,commit=0) /dev/sdc1 on /montirano/bekap type ext4 (rw,commit=0) shm on /dev/shm type tmpfs (rw,noexec,nosuid,nodev) usbfs on /proc/bus/usb type usbfs (rw,noexec,nosuid,devmode=0664,devgid=85) /dev/sde1 on /media/8c9c063c-8e41-4e23-92a9-105f636e754f type ext3 (rw,nosuid,nodev,uhelper=udisks) |