Ye blog of Adam Wright
DIY, tutorials, stuff for geeks, all updated when I have the time to spare.
Tag Archives: ubuntu
Steam for Linux beta going open for all users
12/13/2012
Posted by on Looks like Steam will be opening the Linux beta to everyone next week!
How to install Google Chrome in Ubuntu 10.04
10/23/2012
Posted by on I recently made the switch from Firefox to Chrome, and decided to install it on all my machines. I had some problems getting it installed for Ubuntu 10.04 at first, but then I found this post that spelled it all out.
Here’s the steps in simple, copy/paste format:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update -y
sudo apt-get install -y google-chrome-stable
Or if you’d like one long line:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - && sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && sudo apt-get update -y && sudo apt-get install -y google-chrome-stable
That should work.
Again, thanks to UbuntuUpdates for original post: UbuntuUpdates – PPA: Google Chrome
Check them out for more PPA sources and install tutorials!
How to enable the middle mouse button in Ubuntu
06/28/2012
Posted by on After a recent fresh install of Ubuntu 10.04, I noticed that my Thinkpad T61’s middle mouse button under the TrackPoint (the red stick-mouse thingy in the middle of the keyboard) wasn’t working. Every mouse operation was working fine, except I couldn’t hold the middle mouse button and use the TrackPoint to scroll up/down/left/right. Luckily this is an easy fix.
- Install GPointing Device Settings from the Software Center (for me it was called “Pointing Devices”, so you’ll probably want to search for that first). Once installed, it will show up under “System > Preferences”.
- Enable “Use Wheel Emulation” and set it to button 2.
- You can then enable “Enable vertical scroll” and “Enable horizontal scroll” too if you like (I did).
NOTE: I’m not sure what “Middle Button Emulation” is, but I left it enabled on my machine.