Install Texmaker with spell checker

0

Category: , ,

To install Texmaker with spell checker follow the following steps:

  1. Go to Ubuntu software centre
  2. Find and install texmaker
  3. Download appropriate dictionary from http://wiki.services.openoffice.org/wiki/Dictionaries
  4. unzip the file
  5. copy the content to /usr/share/texmaker/ (e.g., sudo cp ./Downloads/en_GB/* /usr/share/texmaker/ )
  6. restart texmaker

sound to headphone on ubuntu

0

Category:

edit

gksudo gedit /etc/modprobe.d/alsa-base.conf

insert at the bottom
options snd-hda-intel model=hp-dv5 enable_msi=1

Reboot and test.

Other models to test are:
thinkpad
ideapad
hp_laptop
dell-vostro
olpc-xo-1_5

Adjust alsamixer

pgfplot on ubuntu

0

Category:

$ apt-file search pgfplots.sty

Install mono and monodevelop on ubuntu 10.04

1

Category: ,

Ubuntu 10.04 comes with mono. You can check the mono version using

mono -V

To install MonoDevelop follow the following steps-

  1. Click on "System", "Administration", "Software Sources".
  2. Click on the "Other Software" tab.
  3. Click on "Add...", and enter the line:
    deb http://badgerports.org lucid main
    Screenshot from Software Sources
  4. Click on "Add Source"
  5. Click on "Authentication", then on "Import Key File"
  6. Download this GPG key file, ID 0E1FAD0C, and select it in the "Import Key File" window
  7. Click on "Close", then "Reload" when the pop-up appears. You're all set!
From now on, whenever you try to install or update Mono-related packages on your system, you will be given the badgerports version for preference. You don't need to do anything more than update your system as usual to get started!

Then, go to System -> Administration ->Synaptic Package Manager. Find monodevelop from there. Mark for install and press apply.

Install VirtualBox on Ubuntu 10.04

0

Category: ,

The Virtualbox (non-free) repository is available for Ubuntu 10.4 Lucid Lynx (kind of late I'd say). You can add it using the 
following command: 
 
sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian lucid non-free"
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
 
 
Then install it: 
 
sudo apt-get update && sudo apt-get install virtualbox-3.2 

How to install latex in ubuntu 10.04 LTS

0

Category: ,

type

sudo apt-get install texlive-full 

This will install full latex distribution.  Install taxmaker from System->administration->synaptic package manager.



 

Ruby on Rails on ubuntu 10.04

0

Category: ,

Use following commands

sudo su
apt-get install build-essential

sudo apt-get install build-essential rails
apt-get install ruby rdoc libopenssl-ruby

Download rubygems-1.3.7.tgz from web and extract that. Then



cd rubygems-1.3.7
ruby setup.rb
ln -s /usr/bin/gem1.8 /usr/local/bin/gem
gem install rails


Then
Install the sqlite3 connector:


sudo apt-get install libsqlite3-dev
sudo gem install sqlite3-ruby


Then follow the link to create your first application using ruby on rails.