Notes on using Terminals or Shells To get a basic directory/folder and file listing, the command is "ls". To change directory/folder, the command is "cd". To get to the root, the command is "cd /". To mount a new hard drive each time for read-write access: 1. Open Root Terminal, password "v1t6m1n". 2. Change to the "mnt" folder. 2. Type "mkdir newdrive". 3. Type "mount -t vfat /dev/hdb1 /mnt/newdrive". Read-write access is default. To change it once mounted, unmount first with "umount" command. Mountings need to be set after each login, unless the drive is auto-mounted. To mount it as read-only, use "mount -t -r vfat /dev/hdb1 /mnt/newdrive". To auto-mount a new hard drive: 1. ### Mount points can be made anywhere but they're supposed to be in the "mnt" folder off from "filesystem" (the highest level). To get help with a command, type "man " followed by the command name. To quit from the "man" pages, press "q". To quit from the terminal shell, the command is "exit". -----------------------------------------------------------------------------------------------