aquaballoon

Samsung Chromebook ChrUbuntu install on SD card

May 21st, 2013
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.71 KB | None | 0 0
  1. http://www.amirkurtovic.com/blog/installing-chrubuntu-on-the-samsung-arm-chromebook-a-step-by-step-photo-guide/
  2. http://virtuallyhyper.com/2013/03/install-chrubuntu-12-04-on-samsung-chromebook/
  3. http://virtuallyhyper.com/2013/03/update-chrubuntu-12-04-to-13-04-on-the-samsung-chromebook/
  4.  
  5. 1. Put Chromebook in Developer mode
  6. Power off the Chrome Book
  7. Hold the ESC and REFRESH keys as you press the Power button to get into recovery mode.
  8. Press CTRL+D to go into developer mode.
  9.  
  10. 2. Install Chrubuntu 12.04 on External SD-Card
  11. ESC + REFRESH + Power button (*Recovery Mode)
  12. Crtl + D  (*Developer Mode)
  13. Spacebar
  14. Crtl + D (*Setting and networking, no login)
  15. CTRL+ALT+FORWARD (*Command Prompt)
  16. $ Log in: chronos
  17. $ sudo bash
  18. $ chromeos-firmwareupdate --mode=todev (*Firmware updater)
  19. $ exit (*to the chronos user command prompt)
  20. $ wget http://goo.gl/i817v; sudo bash i817v (* to setup the partition)
  21.  
  22. 3. Login to Ubuntu
  23. CTRL+U
  24.  
  25. 4. Fix the trackpad
  26. xinput set-prop "Cypress APA Trackpad (cyapa)" "Synaptics Finger" 15 20 256
  27. xinput set-prop "Cypress APA Trackpad (cyapa)" "Synaptics Two-Finger Scrolling" 1 1
  28.  
  29. or,
  30. mkdir ~/backup
  31. sudo mv /usr/share/X11/xorg.conf.d/* ~/backup/
  32. cd /usr/share/X11/xorg.conf.d/
  33. sudo wget http://craigerrington.com/chrome/x_alarm_chrubuntu.zip
  34. sudo unzip x_alarm_chrubuntu.zip
  35. sudo rm x_alarm_chrubuntu.zip
  36. sudo sed -i 's/gb/us/g' 10-keyboard.conf
  37.  
  38. 5. Fix the Sound
  39. "You will also notice that the sound doesn’t work. To fix it, we can follow the instructions laid out in this site. Basically fire up ‘alsamixer‘ and unmute (by pressing ‘m’) the following fields:"
  40.  
  41. Left Speaker Mixer Left DAC1
  42. Left Speaker Mixer Right DAC1
  43. Right Speaker Mixer Left DAC1
  44. Right Speaker Mixer Right DAC1
  45. Left Headhone Mixer Left DAC1
  46. Left Headhone Mixer Right DAC1
  47. Right Headhone Mixer Left DAC1
  48. Right Headhone Mixer Right DAC1
  49. Right Speaker Mixer Right DAC1
  50.  
  51. 6. Install Chromium
  52. /etc/apt/source.list
  53.  
  54. deb http://ports.ubuntu.com/ubuntu-ports/ precise universe
  55. deb-src http://ports.ubuntu.com/ubuntu-ports/ precise universe
  56. deb http://ports.ubuntu.com/ubuntu-ports/ precise-updates universe
  57. deb-src http://ports.ubuntu.com/ubuntu-ports/ precise-updates universe
  58.  
  59. sudo apt-get update
  60. sudo apt-get install chromium
  61.  
  62. 7. Enable Flash
  63. CTRL+ALT+T (*Open Terminal)
  64.  
  65. sudo cp /opt/google/chrome/pepper/libpepflashplayer.so /media/removable/External\ Drive\ 1/home/user/.
  66.  
  67. reboot
  68.  
  69. sudo cp libpepflashplayer.so /usr/lib/chromium-browser/plugins/.
  70.  
  71. /etc/chromium-browser/default
  72. CHROMIUM_FLAGS="--ppapi-flash-path=/usr/lib/chromium-browser/plugins/libpepflashplayer.so --ppapi-flash-version=11.6.602.171 --ppapi-flash-args=enable_hw_video_decode=0,enable_stagevideo_auto=0,enable_trace_to_console=0"
Advertisement
Add Comment
Please, Sign In to add comment