Advertisement
fuser-invent

My Own "Trusty" Crouton

Aug 7th, 2014
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. sudo sh -e ~/Downloads/crouton -r trusty -t xfce,keyboard,extension,xiwi
  2.  
  3. -----
  4.  
  5. Install these in Linux
  6.  
  7. sudo apt-get update && sudo apt-get upgrade
  8. sudo apt-get install software-center
  9. sudo apt-get install openjdk-7-jre
  10. sudo apt-get install ubuntu-restricted-extras
  11. sudo apt-get install vlc browser-plugin-vlc
  12. sudo apt-get install gtk2-engines-pixbuf
  13. sudo apt-get install nano
  14. sudo apt-get update
  15.  
  16. -----
  17.  
  18. Touchpad Fix
  19.  
  20. sudo add-apt-repository ppa:hugegreenbug/cmt
  21. sudo apt-get update
  22. sudo apt-get install -y libevdevc
  23. sudo apt-get install -y libgestures
  24. sudo apt-get install -y xf86-input-cmt
  25. sudo mv /usr/share/X11/xorg.conf.d/50-synaptics.conf /usr/share/X11/xorg.conf.d/50-synaptics.conf.old
  26. sudo cp /usr/share/xf86-input-cmt/50-touchpad-cmt-peppy.conf /usr/share/X11/xorg.conf.d/
  27. sudo reboot
  28.  
  29. -----
  30.  
  31. Remove these in Linux
  32.  
  33. sudo apt-get remove xscreensaver
  34.  
  35. -----
  36.  
  37. App Icon Pack
  38.  
  39. sudo add-apt-repository ppa:numix/ppa
  40. sudo apt-get update
  41. sudo apt-get install numix-icon-theme-circle
  42.  
  43. -----
  44.  
  45. Install Google Chrome
  46.  
  47. $ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
  48. $ sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
  49.  
  50. $ sudo apt-get update
  51. $ sudo apt-get install google-chrome-stable
  52.  
  53. -----
  54.  
  55. Install from Software Center
  56.  
  57. - VLC Media Player
  58. - Roboto Font
  59. - LibreOffice
  60. - GTK Theme Config
  61.  
  62. -----
  63.  
  64. Fixes
  65.  
  66. - Go to Keyboard in the System Settings. Go to Shortcuts. Click on Add button. Type xcfe4-terminal and then select CTRL+ALT+T to add the shortcut. For screen shot function add "xfce4-screenshooter -f" to CTRL+ALT+=
  67.  
  68. - Add 'brightness down' and 'brightness up' shortcuts and bind them to the brightness keys
  69.  
  70. - For volume key shortcuts
  71. amixer set Master 5%+
  72. amixer set Master 5%-
  73. amixer set Master toggle
  74.  
  75. -----
  76.  
  77. Set Up Printing
  78.  
  79. sudo apt-get install cups system-config-printer-gnome
  80. sudo adduser <username> lpadmin
  81. cd /etc
  82. sudo nano rc.local
  83.  
  84. - add the line "/usr/sbin/cupsd" before "exit 0". Hit CTRL+x and then Y and Enter to save it.
  85. - Log out and then back in to Crouton
  86. - Go to Applications Menu -> Settings -> Printers
  87. - Click the Add button. Choose Network Printer -> Windows Printer via SAMBA.
  88. - In smb:// field type "WORKGROUP/192.168.1.10/SamsungPrinter"
  89. - For work Samsung printer, I downloaded the PPD file and installed the drivers manually
  90.  
  91. (WORKGROUP is the name of your Workgroup, then the static IP address of your computer and then the linux friendly name of your printer.)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement