Showing posts with label ./tutorial. Show all posts
Showing posts with label ./tutorial. Show all posts

Wednesday, October 16, 2013

Installing/Upgrade Gnome 3.8 on Ubuntu 12.04

First open ur terminal
  1. sudo add-apt-repository ppa:gnome3-team/gnome3
  2. sudo add-apt-repository ppa:ricotz/testing
  3. sudo add-apt-repository ppa:ricotz/staging
  4. sudo apt-get update && sudo apt-get upgrade
  5. sudo apt-get install gdm gnome-shell gnome-tweak-tool
  6. Reboot and type gnome-shell --version and WHOOPSSS u have gnome 3.8 on ur ubuntu 12.04 ;)
Read more

Sunday, August 25, 2013

Installing Skype on Debian Wheezy

   For 32bit:
  • wget -O skype-install.deb http://www.skype.com/go/getskype-linux-deb
  • dpkg -i skype-install.deb
Wait untill finish, and type sudo apt-get install -f

For 64bit:
  • Enable MultiArch --> dpkg --add-architecture i386
  • sudo apt-get update
  • wget -O skype-install.deb http://www.skype.com/go/getskype-linux-deb
  • dpkg -i skype-install.deb
Wait untill finish, and type sudo apt-get install -f
Read more

Wednesday, July 24, 2013

LS++ [ LS colors installation ]

Options:
Not known parameters will be passed through to ls, so to show hidden files, -a or -A might be added. See ls(1) for more information.

View:
--pf permissions, file 
--psf permissions, size, file 
--tpf time, permissions, file 
--tpsf time, permissions, size, file (default) 
--ptsf permissions, time, size, file

Installation:
  • cpan Term::ExtendedColor
  • git clone git://github.com/trapd00r/ls--.git
  •  cd ls--
  • perl Makefile.PL
  •  make && su -c 'make install'
  • cp ls++.conf $HOME/.ls++.conf


     
Read more

Friday, July 19, 2013

Installing Virtualbox on Ubuntu 10.04 Lucid Lynx using PPA

First step -> Add virtualbox repository 

  • sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian lucid non-free"
Second -> Download and Add Virtualbox gpg key
  • wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - 
Third -> Updating your Ubuntu and installing dkms and Virtualbox
  • sudo apt-get update && sudo apt-get install dkms virtualbox-3.2



Read more

Wednesday, July 17, 2013

Install Artwiz fonts in Ubuntu

  • Downoads artwix fonts pack here
Untar with:
  • tar xvfz artwiz-latin1-1.1.tgz
  • sudo mv artwiz-latin1 /usr/share/fonts/X11/misc
Then execute the following commands:
  • sudo rm /etc/fonts/conf.d/70-no-bitmaps.conf
  • sudo cp /etc/fonts/conf.avail/70-yes-bitmaps.conf /etc/fonts/conf.d
  • sudo fc-cache -f -v
  • sudo dpkg-reconfigure fontconfig
  • sudo dpkg-reconfigure fontconfig-config
Read more

Installing Naver Line on Linux

First you have to installing

  1. Wine
  2. Winetricks
For Debian base:
  • sudo apt-get install wine winetricks
  • winetricks vcrun2008
For Debian/Ubuntu old:
  • sudo apt-get install wine
  • wget http://winetricks.org/winetricks
  • sudo mv winetricks /usr/local/bin/
  • sudo chmod +x /usr/local/bin/winetricks
  • winetricks vcrun2008

For Arch base:
  • sudo pacman -S wine winetricks
  • winetricks vcrun2008
Download Naver Line for PC (Windows)
  • wget http://dl.desktop.line.naver.jp/naver/LINE/win/LineInst.exe
And install Line from Wine
  • wine LineInst.exe


Read more

Tuesday, July 16, 2013

Installing Jumanji browser on Ubuntu

Dependencies:

  • libwebkit-dev
  • libwebkitgtk-dev
  • libsoup2.4-dev
  • libunique-dev
  • libglib2.0-dev

Installation:
  • git clone git://pwmt.org/jumanji.git
  • make
  • sudo make install

Wait until compiling finished ;)


For more information:
Read more