Trouble with files being saved as root.


 
Thread Tools Search this Thread
Operating Systems Linux Trouble with files being saved as root.
# 1  
Old 10-22-2013
Trouble with files being saved as root.

I have a customer who is trying to have files saved as owner root in an application home directory. I've tried setting the sticky bit and but am not having luck. They do not have full root or sudo access.

User = user123
Group = group123

Files are being saved as user123:group123 but they need to be saved as root:group123. Is this even possible without having to give them sudo access to run chown?

Thanks
Robert
# 2  
Old 10-22-2013
When a file is created, the owner ID of the file will be set to the effective user ID of the process that created the file. So, unless the process that is creating the files is running as root, the owner ID will not be root.
# 3  
Old 10-22-2013
Why do they need to be root? Perhaps that could be addressed from the other end, fixing the need for root-owned files.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Continued trouble matching fields in different files and selective field printing ([g]awk)

I apologize in advance, but I continue to have trouble searching for matches between two files and then printing portions of each to output in awk and would very much appreciate some help. I have data as follows: File1 PS012,002 PRQ 0 1 1 17 1 0 -1 3 2 1 2 -1 ... (7 Replies)
Discussion started by: jvoot
7 Replies

2. Solaris

Migration of system having UFS root FS with zones root to ZFS root FS

Hi All After downloading ZFS documentation from oracle site, I am able to successfully migrate UFS root FS without zones to ZFS root FS. But in case of UFS root file system with zones , I am successfully able to migrate global zone to zfs root file system but zone are still in UFS root file... (2 Replies)
Discussion started by: sb200
2 Replies

3. UNIX for Dummies Questions & Answers

Trouble with deprecated files

I apologize if I am "over-posting" in this forum; I know little about this stuff and I have several software programs that I must install. I have found this forum to be extremely helpful. Anyways, I am trying to install ZThreads on my computer (Mac OS X 10.7.3). When I run "make" it returns with: ... (1 Reply)
Discussion started by: Tyler_92
1 Replies

4. UNIX for Dummies Questions & Answers

Script Not getting Saved

Hi , Script File Is Not Getting Saved This Are The Steps I Am Following For Saving And Executing A Script 1). vi ( To Open Vi Editor ) 2). vi filename ( vi firstprog.ksh) #!bin\kash date 3) !wq :( Saving And Quit) When I Am Saving The Scrpit I Am Getting The Below... (1 Reply)
Discussion started by: anudeepkumar123
1 Replies

5. UNIX for Dummies Questions & Answers

where alias saved?

step 1 # alias alias cp='cp -i' alias l.='ls -d .* --color=tty' alias ll='ls -l --color=tty' alias ls='ls --color=tty' alias mv='mv -i' alias rm='rm -i' alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde' step 2 # cat ~/.bashrc # .bashrc (3 Replies)
Discussion started by: cqlouis
3 Replies

6. UNIX for Dummies Questions & Answers

Trouble pasting multiple files together!!

Hi, I would like to paste multiple files together into one large file. I have 23 of them and I would like to link them on a common variable without writing all the file names out (like in a simple join). Each has about 28,000 columns, but only 17 rows. So the final product would be a single file... (2 Replies)
Discussion started by: etownbetty
2 Replies

7. UNIX for Advanced & Expert Users

only root's crontab gets not saved

Hi, Something funny is happening over here: when a regular user edits his cron-file (crontab -e) saves and exits vi the correct new cron-file gets installed and saved to disk. But if root does the same, vi saves it but if I then check the cron-file it has the previous contents! I did strace (==... (1 Reply)
Discussion started by: flok
1 Replies

8. UNIX for Dummies Questions & Answers

How can I tranfer an OS/ Unix (from old HD to new HD / include all files saved )

-------------------------------------------------------------------------------- How can I tranfer an OS/ Unix (from old HD to new HD / include all files saved ) Could anyone help me out. :confused: Thanks (0 Replies)
Discussion started by: Vietnam
0 Replies

9. UNIX for Dummies Questions & Answers

Trouble renaming files

I am trying to add an temporary extension to the end of all files under a certain directory that contain a certain substring within their name. I've tried using a pipe by doing "ls -R -1|grep "*substring*"|mv -S a=.tmp . ." but realized that won't work because mv doesn't accept input from stdin... (5 Replies)
Discussion started by: VashTheStampede
5 Replies
Login or Register to Ask a Question