Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Basically, I have it set up to where I have all my partitions available in /mnt/ But when I try and save on them with my user account, it says that its read only, and I cant. So I would like to know how I can make it so I have the power to save on these with a user account. Thanks
...are you on a network? can't you get rewt access? even if only for a while? Now that I think of it, when you are rewt you can change the permissions...
Now this is odd, I used to have access to my D: and H: drives, that were located in my /mnt file. The files to access those drives are still there, but the data within them is not. All I have done since the last time I gain access to them is restart and used up2date
OK, I've added hdb1 to mount to the /mnt/Music Folder and hdb5 to mount to the /mnt/Music2 folder. Now how do I get those to stay mounted so when I reboot, they still are mounted. And how do I get it so I can write to them using my user account?
about the first question: write entries in the fstab. you have to know the type of file system though. if they by any chance ntfs, you can't write to them at all.
you need entries for /dev/hdb1 and /dev/hdb5 if you want them mounted automatically.
So instead of the Music line, you'll have something like
/dev/hdb1 /Music vfat quiet,iocharset=utf8,umask=0 0 0
You'll have to figure out the right iocharset. I think utf8 is fine but if you want to access it from windows, you might want a different iocharset. Just look around in the forum. There are a bunch of people who've posted their fstabs. You can probably steal the right entries from them.
you need to specify the codepage for iso8859. Try
/dev/hdb1 /mnt/Music vfat quiet,iocharset=iso8859-1,codepage=850,umask=0 0 0
correspondingly for the other partition.
After you edit the fstab just do as root
mount -a
this should mount everything in the fstab.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.