Adding, mounting NFS shares січня 14, 2009 Edit /etc/exports >> /home *(rw,sync,no_all_squash,no_root_squash) mount it : # sudo mount 192.168.40.51:/media /home/tinderbox/pentagram/ Докладніше
Reading corrupt CD/DVD січня 14, 2009 # readcd -nocorr -noerror -notrunc dev=/dev/dvd f=/mnt/Video/Video/musik/.pic/pic.iso retries=0 Докладніше
Mounting samba/windows shares січня 14, 2009 # mount.cifs //xmouse/Films /mnt/d -o user=olek pass=qwerty dom=domain.com noperm # mount.cifs //maxima/new /mnt/xmouse/ -o noperm # mount.cifs //rv014/Music /mnt/rv014 -o user=olek dom=domain.com noperm Докладніше
Linux find ... січня 14, 2009 for ddir in `find . -type d`; do svn --force unlock $ddir/*; done find . -type d -exec echo {} \; find . -type f -exec echo {} \; Докладніше