If this is your first visit, be sure to
check out the FAQ. You will have to register
before you can post. To start viewing messages,
select the forum that you want to visit from the selection below.
Please do not use the CODE tag when pasting content that contains formatting (colored, bold, underline, italic, etc).
The CODE tag displays all content as plain text, including the formatting tags, making it difficult to read.
Right, so you have a directory for yourself in sda1 - the last entry - and it belongs to you.
However, as soon as you cd into it and you list all of what is in there you will notice that every single directory and file bar the last one belong to hppav - which means you don't have any access.
Change that by going into /media/docudrive/tj1520 (assuming that is your sda1) and typing:
Code:
sudo chown -R tj1520:tj1520 *
and
Code:
sudo chown -R tj1520:tj1520 .*
Now you should be able to mount sda1 at boot time by uncommenting it in the fstab.
HTH
Once your problem is solved please mark the topic of the first post as SOLVED so others know and can benefit from your experience! / FAQ
That was just what I needed to fix this quandry. I suspected (as I looked at the output of ls) that it was an ownership issue. You advice saved me hours of trying to figure out how to chown correctly.
I hope that someday I may have learned something about this fine operating system enough to be of assistance to you in return!
It is fantastic, isn't it, the control afforded to the user/root is spectacular. With regard to rights and the like I suggest you travel around the command line with cd and have a look at a few directories with ls -la. Note the annotation as in
The first d stands for directory - the next three letters are for the users (read, write, execute), the next three for the group (in this case group members may only read and execute but not write) and finally come others (and they have the same rights as those in the group in this case).
Have fun and enjoy - I need all the help I can get, so stick around and it'll be you helping me sooner rather than later
Once your problem is solved please mark the topic of the first post as SOLVED so others know and can benefit from your experience! / FAQ
For those who may stumble upon this thread later, or may be following it now . . .
You won't get much done with your newly restored /home directory unless you assign your previous user admin rights.
In my case, that's what was missing. So, no package management, no sudo on the command line etc.
So my advice is: After you fix your dilema, reboot, go into failsafe mode, drop to root:
adduser <username> admin
Continue you boot; go into user management and make sure you give yourself rights to everything else you want:
IE: cdrom, sambashare, etc 8)
Comment