Administration
User Management
R&S VENICE S
98
User Manual | 2906.2506.02 - 01
9.
Change the ownership of files that belonged to user rsapp, so they
belong to that user again:
find / -mount -user 1000 -exec chown -h rsapp {} \;
1000 is the UID that you query in step 4.
This only changes the files on the system disk (/). You can run this for
your storage too, if needed.
10. Change the group affiliation of files that belonged to group rsapp, so they
belong to that group again:
find / -mount -group 1000 -exec chgrp -h rsapp {} \;
1000 is the GID that you query in step 4.
Adding Samba Users
Perform the following steps:
1. Decide about the name and password for the new account and which
group the user should be in. It might be advisable to use the rsapp
group, so the user can read clips written by R&S VENICE. The default
GID of the rsapp group is 1000.
In this example we will use the name “username” and the GID “1000”.
2. Add the account:
useradd username -g 1000 -N -s /sbin/nologin
3. Set a password for that user:
smbpasswd -a username
You will be prompted for a password.
Due to the -mount option find will only change files on the system
disk. You can run this for your storage too, if needed.