Advertisement
Guest User

Untitled

a guest
Oct 27th, 2013
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. Start with an Ubuntu Server install. During install I like to select Openssh server, LAMP server, Print Server, and Samba File server. (Samba helps integrate into a Windows network even if you never share) Enter a root password for mysql when it asks. To install mysql alone without LAMP, there are many tutorials online.
  2.  
  3. After mysql is installed, run:
  4. mysql_secure_installation
  5.  
  6. Also 'sudo apt-get update', and 'sudo apt-get upgrade' your new server.
  7.  
  8. And now for Mate...
  9.  
  10. sudo add-apt-repository "deb http://packages.mate-desktop.org/repo/ubuntu saucy main"
  11. sudo apt-get update
  12. sudo apt-get --yes --quiet --allow-unauthenticated install mate-archive-keyring
  13. sudo apt-get update
  14. sudo apt-get install mate-core
  15. sudo apt-get install mate-desktop-environment
  16. sudo apt-get install system-config-printer-gnome system-config-printer-common
  17. sudo apt-get install gparted gnome-disk-utility firefox gksu git gedit gvfs-backends
  18.  
  19. I like nullmailer because it's so simple, and mailutils is very handy:
  20. sudo apt-get install nullmailer mailutils
  21.  
  22. sudo nano /etc/samba/smb.conf (just change the workgroup name)
  23.  
  24. To create desktop launchers run the command:
  25. mate-desktop-item-edit ~/Desktop/ --create-new
  26.  
  27. The above is installed into a virtual machine so I don’t install useful things like smartctl, but I do go on to install xrdp and compile/install bacula, etc. (or whatever is required) Plus the many other small things that need to be done to finish a production server.
  28.  
  29. Being a 2d gnome desktop, it works very well with xrdp and vncserver. And it seems (so far) that any program that worked on Unity can be installed here.
  30.  
  31. compdoc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement