What is the best way to deploy Linux desktops?
-
I am going to have to deploy 30 Linux desktops, I was actually thinking on just using Clonezilla SE and deploying the image that way. Just wanted to check with the community if this would be the most appropiate way.
-
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
-
I like the Ansible approach because you can then use Ansible in the future to manage them as well.
-
What distro is this going to be?
-
@coliver said in What is the best way to deploy Linux desktops?:
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
I am planning on using ansible for configuration management, didn't know I could deploy to fisical hardware with it.
-
@Romo said in What is the best way to deploy Linux desktops?:
@coliver said in What is the best way to deploy Linux desktops?:
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
I am planning on using ansible for configuration management, didn't know I could deploy to fisical hardware with it.
Well you don't. You deploy a stock base image of the OS. But you just do a normal deployment or a minorly modified one with the Ansible setup in it. Then Ansible does the rest.
-
@scottalanmiller said in What is the best way to deploy Linux desktops?:
@Romo said in What is the best way to deploy Linux desktops?:
@coliver said in What is the best way to deploy Linux desktops?:
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
I am planning on using ansible for configuration management, didn't know I could deploy to fisical hardware with it.
Well you don't. You deploy a stock base image of the OS. But you just do a normal deployment or a minorly modified one with the Ansible setup in it. Then Ansible does the rest.
It's a really cool system and is super powerful. Someone (@stacksofplates maybe?) has this in production.
-
@scottalanmiller said in What is the best way to deploy Linux desktops?:
@Romo said in What is the best way to deploy Linux desktops?:
@coliver said in What is the best way to deploy Linux desktops?:
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
I am planning on using ansible for configuration management, didn't know I could deploy to fisical hardware with it.
Well you don't. You deploy a stock base image of the OS. But you just do a normal deployment or a minorly modified one with the Ansible setup in it. Then Ansible does the rest.
Well that is my question, what is the best way to deploy the image to the hardware
-
@Romo said in What is the best way to deploy Linux desktops?:
@scottalanmiller said in What is the best way to deploy Linux desktops?:
@Romo said in What is the best way to deploy Linux desktops?:
@coliver said in What is the best way to deploy Linux desktops?:
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
I am planning on using ansible for configuration management, didn't know I could deploy to fisical hardware with it.
Well you don't. You deploy a stock base image of the OS. But you just do a normal deployment or a minorly modified one with the Ansible setup in it. Then Ansible does the rest.
Well that is my question, what is the best way to deploy the image to the hardware
For that part, just Clonezilla or FOG.
-
@scottalanmiller said in What is the best way to deploy Linux desktops?:
What distro is this going to be?
Its going to be Ubuntu Mate
-
$5000 a year for Ansible and a 100 device minimum?
What is this madness?
-
@Breffni-Potter said in What is the best way to deploy Linux desktops?:
$5000 a year for Ansible and a 100 device minimum?
What is this madness?
That is Ansible Tower
-
@coliver said in What is the best way to deploy Linux desktops?:
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
Can I use Kickstart with Debian base distros?
-
@Romo said in What is the best way to deploy Linux desktops?:
@Breffni-Potter said in What is the best way to deploy Linux desktops?:
$5000 a year for Ansible and a 100 device minimum?
What is this madness?
That is Ansible Tower
I only found Ansible Tower on page 2 of Google. They've got really bad SEO.
Where can I find Ansible as an item?
-
@Breffni-Potter said in What is the best way to deploy Linux desktops?:
$5000 a year for Ansible and a 100 device minimum?
What is this madness?
Ansible is free. Tower is expensive.
-
@Breffni-Potter said in What is the best way to deploy Linux desktops?:
@Romo said in What is the best way to deploy Linux desktops?:
@Breffni-Potter said in What is the best way to deploy Linux desktops?:
$5000 a year for Ansible and a 100 device minimum?
What is this madness?
That is Ansible Tower
I only found Ansible Tower on page 2 of Google. They've got really bad SEO.
Where can I find Ansible as an item?
Google "Ansible" and it is the first hit:
-
https://www.ansible.com/get-started
Don't go on to the Tower steps, just stop with the Ansible ones.
-
-
https://docs.ansible.com/ They separate both in the docs.
-
@Romo said in What is the best way to deploy Linux desktops?:
@coliver said in What is the best way to deploy Linux desktops?:
Ansible or kickstart files could go a long way to automating the process. So if you ever have to deploy more its just dropping it into the environment without touching it again.
Can I use Kickstart with Debian base distros?
Debian has preseed and I've never used it. Kickstarts are great because you can do a lot with your post install. It's essentially a big shell script. So you can update, configure users, make config backups, etc.