$ su -c "curl http://repos.fedorapeople.org/repos/spot/chromium-stable/fedora-chromium-stable.repo -o /etc/yum.repos.d/fedora-chromium-stable.repo && yum install chromium"
NFS Fedora 17
Server:
# vi /etc/exports
/tools 10.0.0.1/24(rw,sync,no_root_squash)
# systemctl enable nfs-server.service
# systemctl start nfs-server.service
Guest:
# mount -t nfs server.local:/tools /var/nfs/tools/
Ubuntu 12.04 and Spotify
http://www.spotify.com/us/download/previews/
# 1. Add this line to your list of repositories by
# editing your /etc/apt/sources.list
deb http://repository.spotify.com stable non-free
# 2. If you want to verify the downloaded packages,
# you will need to add our public key
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys 4E9CFF4E
# 3. Run apt-get update
sudo apt-get update
# 4. Install spotify!
sudo apt-get install spotify-client
Fedora 17 IBM IM 1.5.2
$ sudo yum install gtk2.i686 libXtst.i686 dejavu-sans-fonts
Fedora 17 & dropbox
$ sudo su -
# setsebool -P allow_execstack 1
# exit
$ cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
$ ~/.dropbox-dist/dropboxd
Ubuntu 12.04 Macbook Pro touchpad
Add this to desktop startup as a script.
synclient FingerLow=10; synclient FingerHigh=20
ubuntu changing dash to bash
$ sudo update-alternatives --install /bin/sh sh /bin/bash 100
update-alternatives: using /bin/bash to provide /bin/sh (sh) in auto mode.
$ sudo update-alternatives --install /bin/sh sh /bin/dash 200
update-alternatives: using /bin/dash to provide /bin/sh (sh) in auto mode.
$ sudo update-alternatives --config sh
There are 2 choices for the alternative sh (providing /bin/sh).
Selection Path Priority Status
------------------------------------------------------------
* 0 /bin/dash 2 auto mode
1 /bin/bash 1 manual mode
2 /bin/dash 2 manual mode
Press enter to keep the current choice[*], or type selection number: 1
update-alternatives: using /bin/bash to provide /bin/sh (sh) in manual mode.