Results 1 to 4 of 4

Thread: Standardize Ubuntu Installation Environment

  1. #1
    Join Date
    Feb 2014
    Beans
    2

    Standardize Ubuntu Installation Environment

    Hi,

    I'm really new to Ubuntu and any Linux OS platform. As I'm getting things set up on my "toy" computer I'm realizing I'd like to standardize the instillation of my work environment to all my computers once I'm happy. What's the best way to do this? I'm thinking a .sh file but have no experience writing one. Basically I'd like to have a simple file or small app I can run the will install all my programs and libraries using the commands I would normally type into my terminal.

    Just for more details, I'd like it to set up my dev environment (LAMP stack, PHPStorm, Ruby, etc) on a clean version of Ubunut 12.,04 LTS.

    If anyone has any links to tutorials or documentation that'd be huge help. Google has turned up a scarse ammount of info.

    Thanks!

  2. #2
    Join Date
    Jun 2010
    Location
    London, England
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Standardize Ubuntu Instillation Environment

    Here is an example:

    Code:
    sudo apt-get update && sudo apt-get upgrade
    Those two commands will run one after the other. Create a txt file. Write in it a similar string of commands according to your choice. Then simply copy and paste the commands from the text file into the terminal.

    You want a utility? It is called Ubuntu Software Centre. It will stack application installs and download and install them one after the other.

    Regards.
    Last edited by grahammechanical; February 25th, 2014 at 10:06 PM.
    It is a machine. It is more stupid than we are. It will not stop us from doing stupid things.
    Ubuntu user #33,200. Linux user #530,530


  3. #3
    Join Date
    May 2009
    Location
    Indiana
    Beans
    1,971
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Standardize Ubuntu Installation Environment

    If you can find a way to do all your customization via terminal commands, putting together a script that will do it all is easy.

    Here's another suggestion: Ubuntu Software Center has a Sync Between Computers feature (that uses the Ubuntu One cloud service for package tracking). Meanwhile, you could also use Ubuntu One to sync configuration files between machines. (I haven't personally tested this method fully. Truthfully, I've never wanted to exactly duplicate systems between machines because I generally want my better machines to do things my weaker machines are not practically capable of.)
    Jane, stop this crazy thing!

  4. #4
    Join Date
    Feb 2014
    Beans
    2

    Re: Standardize Ubuntu Installation Environment

    Thanks for the replies. I can all of what I want done accomplished in Terminal so I'll look more into putting together a script.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •