I recently installed Ubuntu Linux and want to be able to access the other hard drive partitions on the internal drives.
Here's how they were set up from a Windows point of view:
Master Hard Drive
C:/ - 40 GB NTFS
unpartitioned 5 GB space
Slave Hard Drive
D:/ - 20 GB NTFS
E:/ - 10 GB NTFS
~50 GB space for Ubuntu
so I'm guessing that these three points would exist at
/dev/hda1
/dev/hdb1
/dev/hdb2
respectively.
I've searched around for information on mounting a hard drive, but all of them seem to assume you have root privileges: all the commands begin with "mount" whereas I must use "sudo mount"
If I run a command such as
The folder /mnt/windows suddenly can not be accessed with my account. When the drive is not mounted, I can open the directory fine without error, but when mounted, it gets permissions set that only root can only read from it, and everyone else can't even do that.
I've tried sudo chmod commands to try to change the permissions but I always get access denied errors.
After mounting it, if I do "sudo dir /mnt/windows", it lists the files and directories within correctly, showing what would have been on my "C:" drive on Windows.
So, it seems that root is able to mount it for itself, and access it through the terminal, but I can't seem to make it available to my user account.
Anybody have any idea what's wrong?
-------------
Cuvou.com | The NEW Kirsle.net
Here's how they were set up from a Windows point of view:
Master Hard Drive
C:/ - 40 GB NTFS
unpartitioned 5 GB space
Slave Hard Drive
D:/ - 20 GB NTFS
E:/ - 10 GB NTFS
~50 GB space for Ubuntu
so I'm guessing that these three points would exist at
/dev/hda1
/dev/hdb1
/dev/hdb2
respectively.
I've searched around for information on mounting a hard drive, but all of them seem to assume you have root privileges: all the commands begin with "mount" whereas I must use "sudo mount"
If I run a command such as
Code:
sudo mount -t ntfs /dev/hda1 /mnt/windows
The folder /mnt/windows suddenly can not be accessed with my account. When the drive is not mounted, I can open the directory fine without error, but when mounted, it gets permissions set that only root can only read from it, and everyone else can't even do that.
I've tried sudo chmod commands to try to change the permissions but I always get access denied errors.
After mounting it, if I do "sudo dir /mnt/windows", it lists the files and directories within correctly, showing what would have been on my "C:" drive on Windows.
So, it seems that root is able to mount it for itself, and access it through the terminal, but I can't seem to make it available to my user account.
Anybody have any idea what's wrong?
-------------
Cuvou.com | The NEW Kirsle.net