Select Page

Format File Systems

ext3: mke2fs -j /dev/hdb1 mkfs -t ext3 /dev/hda1 ext2: mke2fs /dev/hdb1 mkfs -t ext2 /dev/hda1 reiser: mkreiserfs /dev/hdb1

Copy files with a progress bar

rsync –progress -vaz <from dir> <to dir> -v      Turn on verbose mode -a     This turns on archive mode. Basically this causes rsync to recurse the directory copying all the files and directories and preserving things like case, permissions, and...