Quote:
Originally Posted by Tom_ZeCat Does Linux have the equivalent of a DOS prompt where you can type something like:
format d:/FS: [whatever file system you want] |
You can open a command prompt by switching to vt1 (control+alt+f1), you come back to your X graphical session usually by doing control+atl+f7, though that's entirely configurable and can change from system by system. Usually, 6 vt's are spawned, from f1, to f6.
You can also just open a terminal emulator from your desktop. In the menu you should see something like gnome-terminal, terminal, xterm, konsole, or so, depending you the desktop you are using and the available software.
Administrative stuff can usually only be done by login as the user "root". But ubuntu -once more- likes to do things in a diffferent way to confuse the user. And it doesn't allow loging in as root. So, you have to use the command "sudo" to do tasks as if you were root.
So, if you want to format your other disk, you first need to open a terminal window (or change to a vt and login with your user name).
After that, do this on the command line:
This will help you identify the names of the different drives and partitions. Identify the name of your second drive, and then the name of the fat32 partition inside it.
Then, you would use this command to format it:
Code:
sudo mkfs.ext3 /dev/hdb1
That line would format the first partition in hdb. Change it by the correct partition in your case. If you are in doubt, don't randomly do anything because you can format the wrong partition (and we all know that's not a good thing).
If you need help, post here the output of the fdisk command, and we will help you.
There might be also a graphical way to do this in ubuntu, I don't really know. I always prefer to use generical tools because I don't like to learn the same thing again and again in different ways depending on the distro.