Kök dizin: Linux altında disk bölümlerinin ifade ediliş biçimi desem olur sanırım. Windows altındaki C:\ yada D:\ gibi.
/opt dizini: Varsayılan kurulumun parçası olmayan yazılım ve eklemeler için ayrılmış dizin.
/root dizini: root, yani sistem yöneticisi kullanıcısının ev dizini.
/dev dizini: Özel yada sürücü dosyalarının dizini. Klasör içerisinde aygıtlar için ayrılmış dizinler mevcut. CD-ROM için /dev/cdrom veya disket sürücü (floppy) için /dev/fd0 gibi. Klavye, portlar, ses kartı vb. aygıtların her birinin /dev altında bir dizini bulunur.
mv: move'un kısaltması. Bir yada birden fazla klasör yada dosyanın bir yerden başka bir yere taşınmasını sağlar. Kullanımı için aşağıdaki örnekleri buldum:
mv myfile mynewfilename # renames 'myfile' to 'mynewfilename'.
mv myfile ~/myfile # moves 'myfile' from the current directory to user's home directory.
mv myfile subdir/myfile # moves 'myfile' to 'subdir/myfile' relative to the current directory.
mv myfile subdir # same as the previous command, filename is implied to be the same.
mv myfile subdir/myfile2 # moves 'myfile' to 'subdir' named 'myfile2'.
mv be.03 /mnt/bkup/bes # copies 'be.03' to the mounted volume 'bkup' the 'bes' directory,
# then 'be.03' is removed.
mv afile another /home/yourdir/yourfile mydir
# moves multiple files to directory 'mydir'.
mv -v Jun* bkup/06 # displays each filename as it is moved to the subdirectory 'bkup/06'.
mv /var/log/*z ~/logs # takes longer than expected if '/var' is on a different file system,
# as it frequently is, since files will be copied & deleted.
mv --help # shows a concise help about the syntax of the command.
man mv # displays complete manual for mv.
Benden bu kadar çıktı :)