LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   user template (https://www.linuxquestions.org/questions/linux-general-1/user-template-280226/)

bogus__13 01-20-2005 03:13 PM

user template
 
hello, fellow linux people.
I was wonder if there was a way to share the same configuration of a desktop with all user's.
(so all users have the same icons)
(to save time on configuring time):Pengy:

bogus__13 01-20-2005 03:15 PM

sorry!
I was wondering if this could be moved to "Linux General" ty

homey 01-20-2005 04:49 PM

Here's how I do it. First, I set up a user to have the desktop look and feel that I want.
Then I make a temple for all new users to have that desktop when they are created ...
Note: Remove any parts that you don't want new users to have in common, like thunderbird.

Code:

rm -rf /etc/skel
mkdir /etc/skel
rsync -av --exclude='.thunderbird' /home/fred/ /etc/skel

or

rm -rf /etc/skel
mkdir /etc/skel
cp -R /home/fred/\. /etc/skel
rm -rf /etc/skel/.thunderbird

When the new user first logs in , there may be a message about running as the other user. It also says that if you click on ignore that won't be an issue anymore. So, click on ignore and the message doesn't pop up anymore and the new user now has a desktop just like the first one. :)

bogus__13 01-20-2005 05:11 PM

Hey homey.
I tried the code you posted. Wow it worked well. I did get 4 errors that popped up, but when i clicked ignore they went away and have not returned.
TY for your help.:cool:

homey 01-20-2005 05:16 PM

You're welcome :)

XavierP 01-21-2005 01:25 AM

Moved to Linux-General. In future, if you wish for a thread to be moved, click the "Report this post to a moderator" link and put your request in there - with so many posts on LQ, asking inside a thread means we don't see your request.


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