Results 1 to 10 of 14
I'm using DSL (DamnSmallLinux) and I cant access any drives on the computer. (I'm a real noob at this.) So how do I access them?...
- 07-13-2005 #1Just Joined!
- Join Date
- Jul 2005
- Posts
- 6
DSL
I'm using DSL (DamnSmallLinux) and I cant access any drives on the computer. (I'm a real noob at this.) So how do I access them?
- 07-13-2005 #2
you need to mount them, for instance you want to access /dev/hda2 do
then you will be able to access that drive at /mnt. Change the above for different drives, and mountpointsCode:su - [rootpass if needed] mount /dev/hda2 /mnt
- 07-13-2005 #3Just Joined!
- Join Date
- Jul 2005
- Posts
- 6
I get a "mount: only root can do that" error when I try typing that. As you can tell my linux skills are very limited.
- 07-13-2005 #4
Run:
before you issue the mount -command.Code:sudo su
- 07-13-2005 #5Just Joined!
- Join Date
- Jul 2005
- Posts
- 6
Ok it seems to have happily mounted. So is there a good file browser, I've been trying to access them from the sidebar?
- 07-13-2005 #6
- 07-13-2005 #7Just Joined!
- Join Date
- Jul 2005
- Posts
- 6
I cant find teh drives in emelfm and the directory /mnt/ gives a "You do not have read access to that directory" error. By the way how do you copy and paste (I had to, gasp, type out the contents of the error message without Ctrl+c & Ctrl+v)?
- 07-13-2005 #8
You could try to unmount it an mount it again with "read-write" permissions:
If this does not work, try changing the permissions to the directory by using chmod after you have mounted:Code:# umount /dev/hda2 # mount -rw /dev/hda2 /mnt
It might help if we know what filesystem you use on the drive that you want to mount.Code:chmod 744 /mnt
Normally you can copy and paste in Linux by selecting a text with the mouse (don't press any buttons) and then to paste it you press the mouse-wheel -button or the 3d mouse button.
- 07-14-2005 #9Just Joined!
- Join Date
- Jul 2005
- Posts
- 6
Okey dokey:
-using the unmount command gives a "bash: unmount: command not foun" (yay! i can copy and paste!). This happens both in root and out of it.
-chmod: "chmod: /mnt: Read-only file system" But i still get the "You do not have read access on that directory" error when trying to access /mnt/ from emelfm
-Regarding filesystems: On this computer all the hard drives (3) are formatted to NTFS but i have a FAT or FAT32 (im not sure) USB flash drive attached and an external USB hard drive formatted to FAT32. I also want to get DSL working on my older computer which has a FAT32 hard drive.
I find it strange that it doesn't mount the drives automaticly. Why doesn't it do that?
- 07-14-2005 #10
The unmount command is
umountHow to know if you are a geek.
when you respond to "get a life!" with "what's the URL?"
- Birger
New users read The FAQ


Reply With Quote
