Synchronise user accounts over multiple systems
In my office I have 10 computers and all of them run Ubuntu. I have 20 employees each with their own login. Is it possible to set things up so that every employee can log in on any of the computers and access their own desktop (passwords, Gmail login, etc)?
For example, one day User1 is using computer1 and has their own desktop with icons and favorites etc. The next day computer1 is busy so User1 logs in on computer2 and will there find everything the same as it was yesterday on computer1.
Is that possible?
login multiple-users
add a comment |
In my office I have 10 computers and all of them run Ubuntu. I have 20 employees each with their own login. Is it possible to set things up so that every employee can log in on any of the computers and access their own desktop (passwords, Gmail login, etc)?
For example, one day User1 is using computer1 and has their own desktop with icons and favorites etc. The next day computer1 is busy so User1 logs in on computer2 and will there find everything the same as it was yesterday on computer1.
Is that possible?
login multiple-users
add a comment |
In my office I have 10 computers and all of them run Ubuntu. I have 20 employees each with their own login. Is it possible to set things up so that every employee can log in on any of the computers and access their own desktop (passwords, Gmail login, etc)?
For example, one day User1 is using computer1 and has their own desktop with icons and favorites etc. The next day computer1 is busy so User1 logs in on computer2 and will there find everything the same as it was yesterday on computer1.
Is that possible?
login multiple-users
In my office I have 10 computers and all of them run Ubuntu. I have 20 employees each with their own login. Is it possible to set things up so that every employee can log in on any of the computers and access their own desktop (passwords, Gmail login, etc)?
For example, one day User1 is using computer1 and has their own desktop with icons and favorites etc. The next day computer1 is busy so User1 logs in on computer2 and will there find everything the same as it was yesterday on computer1.
Is that possible?
login multiple-users
login multiple-users
edited Jan 22 at 3:51
Starbuck
344117
344117
asked Jan 15 at 21:17
Lucia SavováLucia Savová
161
161
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
OpenLDAP could be used to have the same login credentials for multiple users across multiple boxes. Then do what @Rinzwind suggested and mount /home from a NAS.
I always forget about LDAP :P +1
– Rinzwind
Jan 21 at 18:12
add a comment |
Yes, but with a lot of trouble. It would be a lot easier to just assign a system to a user.
A possible manual method would be to get a NAS and add it to your network.
Set up all systems to have all users (so all can log in onto any desktop). Set /home/ up to point to the NAS so anyone that logs into the system sees that as their /home/. Can be done by editing ~.config/user-dirs.dirs
. Has a benefit that files stay at the office (ie. on the NAS).
There is a tool called puppet but that might be overkill for what you want. It lets you service computers in your network (you have added benefit that you can update your system from that system). Puppet lets you set up your system as the puppetmaster (ie. a host) where you can sync files with the puppets (ie. clients).
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1110066%2fsynchronise-user-accounts-over-multiple-systems%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
OpenLDAP could be used to have the same login credentials for multiple users across multiple boxes. Then do what @Rinzwind suggested and mount /home from a NAS.
I always forget about LDAP :P +1
– Rinzwind
Jan 21 at 18:12
add a comment |
OpenLDAP could be used to have the same login credentials for multiple users across multiple boxes. Then do what @Rinzwind suggested and mount /home from a NAS.
I always forget about LDAP :P +1
– Rinzwind
Jan 21 at 18:12
add a comment |
OpenLDAP could be used to have the same login credentials for multiple users across multiple boxes. Then do what @Rinzwind suggested and mount /home from a NAS.
OpenLDAP could be used to have the same login credentials for multiple users across multiple boxes. Then do what @Rinzwind suggested and mount /home from a NAS.
answered Jan 16 at 4:13
the7ermthe7erm
665
665
I always forget about LDAP :P +1
– Rinzwind
Jan 21 at 18:12
add a comment |
I always forget about LDAP :P +1
– Rinzwind
Jan 21 at 18:12
I always forget about LDAP :P +1
– Rinzwind
Jan 21 at 18:12
I always forget about LDAP :P +1
– Rinzwind
Jan 21 at 18:12
add a comment |
Yes, but with a lot of trouble. It would be a lot easier to just assign a system to a user.
A possible manual method would be to get a NAS and add it to your network.
Set up all systems to have all users (so all can log in onto any desktop). Set /home/ up to point to the NAS so anyone that logs into the system sees that as their /home/. Can be done by editing ~.config/user-dirs.dirs
. Has a benefit that files stay at the office (ie. on the NAS).
There is a tool called puppet but that might be overkill for what you want. It lets you service computers in your network (you have added benefit that you can update your system from that system). Puppet lets you set up your system as the puppetmaster (ie. a host) where you can sync files with the puppets (ie. clients).
add a comment |
Yes, but with a lot of trouble. It would be a lot easier to just assign a system to a user.
A possible manual method would be to get a NAS and add it to your network.
Set up all systems to have all users (so all can log in onto any desktop). Set /home/ up to point to the NAS so anyone that logs into the system sees that as their /home/. Can be done by editing ~.config/user-dirs.dirs
. Has a benefit that files stay at the office (ie. on the NAS).
There is a tool called puppet but that might be overkill for what you want. It lets you service computers in your network (you have added benefit that you can update your system from that system). Puppet lets you set up your system as the puppetmaster (ie. a host) where you can sync files with the puppets (ie. clients).
add a comment |
Yes, but with a lot of trouble. It would be a lot easier to just assign a system to a user.
A possible manual method would be to get a NAS and add it to your network.
Set up all systems to have all users (so all can log in onto any desktop). Set /home/ up to point to the NAS so anyone that logs into the system sees that as their /home/. Can be done by editing ~.config/user-dirs.dirs
. Has a benefit that files stay at the office (ie. on the NAS).
There is a tool called puppet but that might be overkill for what you want. It lets you service computers in your network (you have added benefit that you can update your system from that system). Puppet lets you set up your system as the puppetmaster (ie. a host) where you can sync files with the puppets (ie. clients).
Yes, but with a lot of trouble. It would be a lot easier to just assign a system to a user.
A possible manual method would be to get a NAS and add it to your network.
Set up all systems to have all users (so all can log in onto any desktop). Set /home/ up to point to the NAS so anyone that logs into the system sees that as their /home/. Can be done by editing ~.config/user-dirs.dirs
. Has a benefit that files stay at the office (ie. on the NAS).
There is a tool called puppet but that might be overkill for what you want. It lets you service computers in your network (you have added benefit that you can update your system from that system). Puppet lets you set up your system as the puppetmaster (ie. a host) where you can sync files with the puppets (ie. clients).
answered Jan 15 at 22:06
RinzwindRinzwind
206k28393526
206k28393526
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1110066%2fsynchronise-user-accounts-over-multiple-systems%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown