LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 08-20-2006, 06:57 PM   #1
Jim Yadon
LQ Newbie
 
Registered: Aug 2006
Location: In a state of disarray.
Distribution: FC2
Posts: 3

Rep: Reputation: 0
dark side convert with permissions troubles...


Hi.

I am very new to Linux but not new to PC's. I've been working with PC's since... well let's just say I could boot my Apple IIe without much trouble. All these years though, I never took the time to learn about Linux. I was just too comfortable with my MS stuff to look away. So please bare with me as I shake off the mud and get used to this system.

Anway, I cannot seem to get a handle on the whole permissions scheme (at least I think this is a permissions problem) in Fedora Core 2. I can install it, set up a user and get Firefox/Thunderbird & various other things set up. I even have my wife's user account set up. however, I recently updated the kernel and various packages and when it was complete, all of the permissions that were working just fine for user access to things like wallpaper, themes & various files that were created prior to the update are now no longer accesable by users. I can only write or execute via root. when I view the permissions in the properties for any of the offending files, it says that my user is the owner but I cannot change the permission because my user is not the owner!!! does this make sense? Is this indicative of another issue I am not aware of?

Please help a Linux rookie out.
Thanks.
J
 
Old 08-21-2006, 06:39 AM   #2
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Could you post some specific examples?
Go into a directory---eg /home/username---and type "ls -l"
Here is an example:
-rwxr-xr-x 1 mherring mherring 10941 Aug 14 19:24 135_invite.odt
This says that the owner (mherring) has full privileges. The owner and root should be able the change the privilges (chmod), but noone else.
If you are logged in as the owner of a file (or directory), and you cannot do a chmod, then something is very wrong.
 
Old 08-21-2006, 11:17 AM   #3
tnandy
Member
 
Registered: Oct 2003
Location: Tennessee
Distribution: Devuan 3.0 (Beowulf)
Posts: 217

Rep: Reputation: 18
Edit /etc/fstab and add umask=000 to the offending partition's fourth column in that file. See if that helps.
 
Old 08-21-2006, 06:48 PM   #4
Jim Yadon
LQ Newbie
 
Registered: Aug 2006
Location: In a state of disarray.
Distribution: FC2
Posts: 3

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by pixellany
Could you post some specific examples?
Go into a directory---eg /home/username---and type "ls -l"
Here is an example:
-rwxr-xr-x 1 mherring mherring 10941 Aug 14 19:24 135_invite.odt
This says that the owner (mherring) has full privileges. The owner and root should be able the change the privilges (chmod), but noone else.
If you are logged in as the owner of a file (or directory), and you cannot do a chmod, then something is very wrong.
I did as you suggested and the result was
Code:
drwx------  31 myuser myuser 4096 Aug 21 19:23 myuser
According to the documentation that I have in front of me the drwx------ means that my user should be able to read [i]w[/w]rite & execute while everyone else cannot do any of the above. I think the d is a desktop designation but I am unsure. As I said, I'm still learning this. I did notice after I finished updating the tertiary libraries (for gnome, etc.) that most of the issues went away with the exception of still having a no write emblem associated with the computer, home and trash icons. I assume that this is an indicator that I am not able to write to these locations. Here's a screen shot of my results when I look at the Home folder properties. (I am not eligible to post a link yet.)
wwwDOTtheswampDOTorg/screens/jim/Screenshot.png

you can see at the bottom where it states I am not the owner of the file.
 
Old 08-21-2006, 06:50 PM   #5
Jim Yadon
LQ Newbie
 
Registered: Aug 2006
Location: In a state of disarray.
Distribution: FC2
Posts: 3

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by tnandy
Edit /etc/fstab and add umask=000 to the offending partition's fourth column in that file. See if that helps.
Just what exactly will that or does that do? Please forgive my hesitance, I sign nothing before reading it and do my best not to modify code unless I understand what I am doing.
 
Old 08-21-2006, 08:12 PM   #6
osor
HCL Maintainer
 
Registered: Jan 2006
Distribution: (H)LFS, Gentoo
Posts: 2,450

Rep: Reputation: 78
Quote:
Originally Posted by Jim Yadon
I did as you suggested and the result was
Code:
drwx------  31 myuser myuser 4096 Aug 21 19:23 myuser
According to the documentation that I have in front of me the drwx------ means that my user should be able to read [i]w[/w]rite & execute while everyone else cannot do any of the above. I think the d is a desktop designation but I am unsure.
d means directory. If it is not a directory, something is wrong.
Quote:
Originally Posted by Jim Yadon
As I said, I'm still learning this. I did notice after I finished updating the tertiary libraries (for gnome, etc.) that most of the issues went away with the exception of still having a no write emblem associated with the computer, home and trash icons. I assume that this is an indicator that I am not able to write to these locations. Here's a screen shot of my results when I look at the Home folder properties. (I am not eligible to post a link yet.)
wwwDOTtheswampDOTorg/screens/jim/Screenshot.png

you can see at the bottom where it states I am not the owner of the file.
It seems that somehow (maybe a careless typo during aforementioned upgrades?) the user-database has become corrupted. You see, at the low level, filesystem drivers assign permissions to UID (user-id) or GID (group-id) values (each of which is between 0 and 65535). In order to translate UID and GID values from numbers to names, the system maintains a database, usually in /etc/passwd and /etc/group (it also contains other information such as a comment field, the user's home directory, and the user's shell). One common problem used to be untarring tarballs (in a tar archive, the user's identity is kept only as a UID and GID. Since different numbers usually mean different users on different machines, a careless untar would make an unexpected outcome) but has been cleaned up for awhile. Something similar probably happened during your upgrade.

To examine the situation more closely, you can look at the output of `cat /etc/passwd' and `cat /etc/group' to the numerical user/group owner of some files (shown by the output of `ls -n'). Compare the actual results with the expected outcome, and see if we can narrow down the problem any more.


PS
for more info consult the following:
man 5 passwd
man group
man umask
man ls
man 5 fstab
man 8 mount

PPS
If you post your passwd or group files, make sure the second field is either empty or has an `x' for each entry (so you are not making your passwords publically available for the whole world to decrypt).
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: The Dark Side of the Plugin LXer Syndicated Linux News 0 07-07-2006 08:03 PM
Wanting to go 100% dark side, but..... Slith(++1) Linux - Software 4 12-21-2005 09:28 PM
Debating going to the dark side... RySk8er30 Linux - General 15 03-10-2005 07:01 PM
MPG to VCD - Wizard of Floyd / Dark Side of the Rainbow the_jaymz Linux - Software 1 03-06-2005 10:38 AM
Help me leave the dark side... Sagar_Indurkhya Slackware 4 09-16-2004 03:50 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:01 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration