Advertisement
Guest User

Untitled

a guest
Jun 9th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. Ubuntu Server 14.04 and Mate
  2.  
  3. Start with a fresh Ubuntu Server install. During install select Openssh server and Samba File server. (Samba helps integrate into a Windows network even if you never share)
  4.  
  5. Then run:
  6. sudo apt-get update
  7. sudo apt-get dist-upgrade
  8. reboot
  9.  
  10. *********************************
  11. If seeing the error:
  12. no talloc stackframe at ../source3/param/loadparm.c:4864, leaking memory
  13.  
  14. Fix:
  15.  
  16. sudo pam-auth-update
  17. ...and uncheck "SMB password synchronization"
  18.  
  19. ********************************
  20. Optional:
  21. Consistent Network Device Naming. To prevent renaming of Ethernet cards:
  22.  
  23. sudo nano /etc/default/grub
  24.  
  25. change:
  26. GRUB_CMDLINE_LINUX_DEFAULT="biosdevname=0"
  27.  
  28. save and then:
  29. sudo update-grub
  30.  
  31. reboot
  32. ********************************
  33.  
  34. And now for Mate:
  35.  
  36. sudo apt-add-repository -y ppa:ubuntu-mate-dev/ppa
  37. sudo apt-add-repository -y ppa:ubuntu-mate-dev/trusty-mate
  38.  
  39. sudo apt-get update
  40.  
  41. minimal:
  42. sudo apt-get install --no-install-recommends mate-desktop-environment-core
  43. sudo apt-get install mate-themes firefox gksu ttf-ubuntu-font-family ttf-lyx ntp
  44. sudo apt-get install system-config-samba software-center file-roller
  45. sudo apt-get install gparted gnome-disk-utility git gedit synaptic
  46. sudo apt-get install msttcorefonts
  47.  
  48. Options:
  49. sudo apt-get install backintime-common backintime-gnome
  50. sudo apt-get install nullmailer mailutils smartmontools smart-notifier
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement