change permissons and owner for /tmp (swapfs)


 
Thread Tools Search this Thread
Operating Systems Solaris change permissons and owner for /tmp (swapfs)
# 1  
Old 10-01-2008
change permissons and owner for /tmp (swapfs)

Hi all,
i've an Solaris 10 installation. The owner and permissions for /tmp is:
Code:
# ls -l /tmp
# rwxr-xr-x root root /tmp

They should be (i've looked at a clean installation):
Code:
# rwxrwxrwt root sys /tmp

I've tried to change the permissons after booting from cd and mounting the root filesystem to /a. But after the reboot the new permissons are lost... Anyone knows how to solve this?

tia,
DN2
# 2  
Old 10-01-2008
I just brought a box up into single user mode (boot -s from ok prompt). The permissions on /tmp were what you wanted. So I did a
umount /tmp
chgro uucp /tmp
init 0
and came back up into single user mode. Now /tmp had a group of uucp. It seems to inherit the settings from the mount point and you must have fumbled somehow. That boot from cd should have worked. What did you do to after changing /a/tmp?
# 3  
Old 10-01-2008
after changing /a/tmp i did a "init 6" and bootet from the disk where i've changed the permissions... from my understanding the changes realy should have worked... but they didn't. any ideas are welcome Smilie.
# 4  
Old 10-01-2008
umount /a prior to the init 6
# 5  
Old 10-01-2008
i'll test it tomorrow... thnx.
# 6  
Old 10-03-2008
Why did not you try chmod 777 /tmp and then chmod +t /tmp ?
# 7  
Old 10-03-2008
Quote:
Originally Posted by incredible
Why did not you try chmod 777 /tmp and then chmod +t /tmp ?
if you read my first post, i've tried this... but the permissons are changed back after reboot!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Issue with rsync: failed to set times on "/tmp/.": Not owner (1)

Hi, Here is my source host and folder details. $ hostname source-host $ id uid=600000208(src-user) gid=64688(src-user) groups=64688(src-user) $ ls -ltrd /web/Trn_File/data/ drwxrwxrwx 3 src-user src-user 4096 Feb 7 15:27 /web/Trn_File/data/ $ ls -ltrd /web/Trn_File/data/* drwxrwxrwx 8... (1 Reply)
Discussion started by: mohtashims
1 Replies

2. Cybersecurity

Change file owner

What i did: - logged in with acc1 and created a new user acc2 commands used: useradd and passwd. - Then i logged in acc2. but all the files are owned by acc1. Issue: I try to change the owner of the files using chown command . But it gives me a error message. All i want to do is... (13 Replies)
Discussion started by: TotallyConfused
13 Replies

3. Shell Programming and Scripting

How to change the owner of soft link

How to change the owner ship of the soft link lrwxrwxrwx 1 root root 4 Jun 29 16:27 soft_test -> test I need to change the above owner ship to httpd:httpd Whats the shell command i need to use for it :) (2 Replies)
Discussion started by: kalpeer
2 Replies

4. Shell Programming and Scripting

automatically change owner and group

We have a program that when a new account is created using the webpage it creates a new directory on the linux filesystem for the account. The problem is the process that creates the directory is as root user, as I want ftpuser to be able to login I have to manually login and chown -R the... (1 Reply)
Discussion started by: borderblaster
1 Replies

5. Shell Programming and Scripting

Change owner.

i want to find what are the files having owner as 'palani' my entire filesystem ( sub directories ) and needs to change the owner ( chown ) to 'raju'. Can anyone help on this to write a shell script. Thanks in advance. (3 Replies)
Discussion started by: senthil_is
3 Replies

6. Shell Programming and Scripting

change owner

Dear All, i have a file and i want to change the owner of that file from another user. for example $ ls -l pkc.txt -rw-r--r-- 1 tdmscrdr dba 717 Nov 2 17:10 pkc.txt the owner of pkc.txt file is tdmscrdr and group is dba i want to change the owner of this file from... (7 Replies)
Discussion started by: panknil
7 Replies

7. UNIX for Dummies Questions & Answers

I am the owner,yet not allowed the change the ownership

sm860 IS the owner of the files below,but yet sm860 cannot change the ownership to bpt3a1.Please let me know why ? See below for details --- sm860@unixs741_DEV:/usr/gdp/home/ftp/bpt3a1/incoming/ahdb/T5/pcasav/daily $ ls -l pcasav* -rw-r--r-- 1 sm860 gdpintegrators 821 Sep 21 16:15... (8 Replies)
Discussion started by: MSHETTY
8 Replies

8. UNIX for Dummies Questions & Answers

change owner of a file

im running into changing the ownership of a file. I am trying to change the ownership to "system", but it doesn't want to work. I sudo chown system /preferences.plist Password: chown: system: Invalid argument is there a way to read the ownership of a file, something like read chown... (3 Replies)
Discussion started by: CBarraford
3 Replies

9. UNIX for Dummies Questions & Answers

How to change the owner of the file?

How to change the owner of the file? Can I change the owner of file/ files? I am user and not admin.(not logged as root) (1 Reply)
Discussion started by: redlotus72
1 Replies

10. UNIX for Dummies Questions & Answers

Change owner

How to change the owner of group? -rw-r--r-- 1 lead lead Now I need to change LEAD to SUBLEAD.. how do I do this. I am using this command. $chown -R sublead test.lck I get this message chown: test.lck: Not owner I am logged in a LEAD.. All your help in regards are greatly... (16 Replies)
Discussion started by: venkyA
16 Replies
Login or Register to Ask a Question