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.
What is giving you those error messages? When do you get them, and what are you attempting to do at the time? A specific example might help us to figure out why you're getting those...
Here is an example:
I logged on (graphical mode) for the first time with a new user and it said it did not have enough diskspace to creat "home/name-of-user" ...(the new user was going to be the third user besides root) Also when I logged on with the main account I use, it gave me some message about it
BUT - I am currently downloading a 600MB ISO image onto my desktop with no problem....
I am not too sure about this, since I only have a couple users on my box, but I believe you need to create a home directory for a user before logging in as that user. So, as root:
1. Add a new user (using useradd, userdrake or what-have-you), say, fred.
2. Add fred to any groups you need him to be in (probably you should at least have a group called fred also, which only fred is a member of)
3. Create a home directory for fred: mkdir /home/fred
4. Make sure fred owns and can use his own home directory: chown fred /home/fred, chgrp fred /home/fred
5. Log in as fred
The reason for this (and maybe also the reason for your error message) is that if /home/fred does not exist before fred logs in, it needs to be created, and since fred does not have permission to write to /home, it gives you an error.
I could be way off base on this though Like I said, I only have a couple of users. Try the above and see if it helps though.
normally home directoies will be created automaitcally at first log in (via a PAM module) so that shouldn't be the problem. in a terminal run "df -h" and show the entire output here, maybe you have installed a user quota or such like?
I'll be honest, I have no idea how (yet), but under my user I SU'ed and did the 'chusr' thing, double checked that the folder existed, logged off, logged back on using the user in question, and WHAMMO! It worked... Thanks again all!..
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.