Hello! Just installed , and I have a slight problem:
My partition, listed as quot;HDA1,quot; is in fact the very same partition as quot;C:\quot; in my Windows. So my question is:
Where did my FAT32, EXT3, and quot;Swapquot; partitions go?
Here is how I split my HD:
-Resized the Primary (Windows) partition to 135 GB (from 149), and left it as what it was originally listed as in the partition tool, namely, quot;media/hda1quot; (lt;-...or something like that...)
-Made a new, 8 GB EXT3 partition (for my Linux). It was a Primary partition, at the beginning of my HD, and listed as simply quot;\quot;
-Next, I made a FAT32 Partition, which was Logical, at the End of my HD, and under the directory quot;\windowsquot;
-Finally, I made the remaining space on my HD into a Swap Area, which was also Logical
Where did I go wrong, and how do I fix it?
Thank you in advance!
Hi Spleinmuncher -
That all sounds perfectly good to me! Run the command 'df -h' in the Terminal and paste the output here.
cheers
Ben
Regrettably, my internet on seems to be dead as well (I would rather figure this one out first though...) so Copy+Pasting might be somewhat difficult for me. Let me try though!
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hda2 8270100 3632356 4217648 47% /
varrun 777980 100 777880 1% /var/run
varlock 777980 0 777980 0% /var/lock
procbususb 777980 116 777864 1% /proc/bus/usb
udev 777980 116 777864 1% /dev
devshm 777980 0 777980 0% /dev/shm
lrm 777980 33788 744192 5% /lib/modules/2.6.20-15-generic/volatile
/dev/hda1 141604904 125171780 16433124 89% /media/hda1
/dev/hda5 5234968 4 5234964 1% /windows
tmpfs 777980 33788 744192 5% /lib/modules/2.6.20-16-generic/volatile
There are the results...
I hate to be pushy, but I need to do some important work on this computer tonight, so any help would be greatly, greatly appreciated.
A link to a website with useful information would also be very helpful. Thank you.
You already can quot;seequot; your NTFS partition. No problem.
Your not supposed to quot;seequot; your swap partition. It is used only by the system. There's nothing to quot;see.quot;
The EXT3 partition is your root partition, mounted as /. You can use your file manager to browse up your file system. Or open a terminal and type quot;cd /quot; without the quotes, and then type quot;lsquot; without quotes to see the contents. You will not see it in the same place that you see your NTFS partition.
So, really, the only problem I'm seeing is that you haven't set your system up to look at your FAT32 partition. Here is what I would do. In a terminal, type quot;sudo mkdir /mnt/win_dquot; (without the quotes... it will ask for your user password). Now, edit /etc/fstab as root quot;gtksudo gedit /etc/fstabquot; (no quotes) and add the following line:
Code:
/dev/hda5 /mnt/win_d vfat defaults 0 0
and save. Reboot. You should see the Fat32 drive.
I see
I have one little problem though: When I go into the Terminal and do what you said, it gives me this:
alex@alex-desktop:~$ sudo mkdir /mnt/win_d
mkdir: cannot create directory `/mnt/win_d': File exists
alex@alex-desktop:~$ gtksudo gedit /etc/fstab
bash: gtksudo: command not found
alex@alex-desktop:~$
alex@alex-desktop:~$
?
gksudo gedit lt;filenamegt;
-merlin
Originally Posted by HotShotDJYou already can quot;seequot; your NTFS partition. No problem.
Your not supposed to quot;seequot; your swap partition. It is used only by the system. There's nothing to quot;see.quot;
The EXT3 partition is your root partition, mounted as /. You can use your file manager to browse up your file system. Or open a terminal and type quot;cd /quot; without the quotes, and then type quot;lsquot; without quotes to see the contents. You will not see it in the same place that you see your NTFS partition.
So, really, the only problem I'm seeing is that you haven't set your system up to look at your FAT32 partition. Here is what I would do. In a terminal, type quot;sudo mkdir /mnt/win_dquot; (without the quotes... it will ask for your user password). Now, edit /etc/fstab as root quot;gtksudo gedit /etc/fstabquot; (no quotes) and add the following line:
Code:
/dev/hda5 /mnt/win_d vfat defaults 0 0
and save. Reboot. You should see the Fat32 drive.
To save you trouble, I'll go ahead and say that you should edit fstab to say quot;/dev/hda5 /media/win_d vfat defaults 0 0quot; instead, so that you have both the ntfs and your vfat partitions inside your /media folder.
Since I don't have any windows partitions, I can't say for sure... but what on earth would his NTFS partition (or any other fixed hard drive partition) be doing in /media? That SHOULD be used for removable media only -- or have they mucked around with the file system hierarchy while I wasn't looking??? |