I’ve been using Google’s Music locker / streaming service for awhile now. You get to upload 20,000 tracks and getting them on is a breeze with Google’s Music Manager. I’m running Fedora 16 now and here’s I got Google Music Manager running on it. 1. Get into your home downloads directory. # cd ~/Downloads 2. [...]
Here’s a quick way to find out more about your hard disk. You can get the serial number, part number, firmware level, size and much more. Just see the sample below. hdparm -I [device] hdparm -I /dev/sda [danesh@pandora Movies]$ sudo hdparm -I /dev/sda /dev/sda: ATA device, with non-removable media Model Number: WDC WD2500JS-75NCB3 Serial Number: [...]
1. Let’s work from your Downloads folder. cd ~/Downloads 2. Download the Ubuntu Fonts package from Ubuntu. wget http://font.ubuntu.com/download/ubuntu-font-family-0.80.zip 3. Extra the downloaded zip file. unzip ubuntu-font-family-0.80.zip 4. Rename the extracted directory. (Not a must) mv ubuntu-font-family-0.80 ubuntu-font-family 5. Copy the extracted directory to the system shared fonts directory. su -c ‘cp -rv ubuntu-font-family /usr/share/fonts/’ [...]
Change into you home directory. cd ~ Download the official Adobe repository package rpm. This rpm will create the repository file for us. sudo wget http://linuxdownload.adobe.com/linux/x86_64/adobe-release-x86_64-1.0-1.noarch.rpm Install the rpm file. sudo rpm -ivh adobe-release-x86_64-1.0-1.noarch.rpm Import the repository GPG key. sudo rpm –import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux Update you local yum repositories. sudo yum update Install the 64 bit [...]
Fedora 16 just came out and here’s how to get Google Chrome on it. Start by creating a repository file for Google called google.repo and place it in /etc/yum.repos.d/ . sudo vim /etc/yum.repos.d/google.repo Add the lines below into the repository file. google.repo [google-chrome] name=google-chrome – 64-bit baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64 enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub Update yum, sudo yum update [...]