Posts

Showing posts with the label Ubuntu

Nexus 4 Dual Boot - Android and Ubuntu

Note  :  Dual boot is not part of the regular Ubuntu release  After installation: A single device with the ability to switch between fully functional Android and Ubuntu images On Android: an Ubuntu Installer app to install Ubuntu, as well as to boot into Ubuntu On Android: the Super User app to grant permissions to the Ubuntu Installer app On Ubuntu: an Ubuntu Dual Boot app to boot into Android Ubuntu system updates are not yet supported from the Ubuntu side, but they can be done via the Android app Requirements To install dual-boot, you'll need: A Nexus 4 device  (other  supported Nexus devices  should in theory work but have not been tested at the time) Android 4.2 or higher  running on the device, either stock firmware or based on Cyanogen Mod or AOSP. Note that  Android 4.4 requires additional steps to get phone calls working on the Ubuntu side 2.7GB of free storage  on the device to install Ubuntu ADB tools  running on your desktop computer

How To Update Linux Kernel In Ubuntu - Manually

Image
You must download appropriate ubuntu kernel release from http://kernel.ubuntu.com/~kernel-ppa/mainline/   (in this case I am download 2.6.32 kernel version for update)   Download this 3 file types (it will depend on your processor architecture - my one is Intel 32bit - then i am downloaded i386 file types ) (your downloaded file must contain this names as file name) i.   linux-headers-??????????_all.deb ii.   linux-headers-??????????_i386.deb iii.  linux-image-????????????_i386.deb

Install MySQL In Ubuntu On VMware And Connect Through The Host Pc (windows or any host pc)

Image
This article explain how to install MySql 5.5 with Ubuntu 12.04 on VMware (VMware Workstation 8.0.1) and connect through the virtual pc to access the MySql databases in Host pc (Windows or what ever os on host pc).  1.Install MYSQL On Ubuntu 12.04 sudo apt-get install mysql-server   (make sure you are log in as root user,fast internet connection help to download package's correctly.if network connection slow,then download packages may be corrupted!) 2.Install MYSQL Workbench sudo apt-get install mysql-workbench  

Vmware ubuntu 12.04 - windows 7 networking

Virtual machine settings : ------------------------- Network adapter - Host Only IPv4 Settings - Method Automatic DHCP IPv6 Settings -  Method Automatic Host-PC --------- Select your network adapter  eg: Celcome3G BroadBand Right click - > properties -> goto Sharing-> select  Allow to other network  users to connect through this computer's internet  connection. Then select vmware network adapter VMNet1. Then Press OK.

Reboot VMware -Ubuntu

sudo reboot

VMWare Tool Installation for Ubuntu

#Mount the CD drom sudo mkdir /mnt/cdrom sudo mount /dev/cdrom /mnt/cdrom #Run this command to find the exact name of the VMware Tools bundle; the file name varies depending on your version of Fusion: ls /mnt/cdrom #Extract contents of cdrom to tmp directory tar -zxvf /mnt/cdrom/VMwareTools- .tar.gz -C /tmp/ Note: is the version discovered in the previous step which at the time of writing was  VMwareTools-8.3.7-341836.tar.gz #now move into the vmware tools directory in tmp directory. cd /tmp/vmware-tools-distrib/ #Run the installer with the -d switch to accept defaults. sudo ./vmware-install.pl -d

Enabling the root account in ubuntu

sudo -i To enable the Root account (i.e. set a password) use: sudo passwd root

How to install a software in Ubuntu

Image
There are many different kinds of Linux package files. Most of these are associated with the package managers of specific Linux distributions. Examples are Debian Package files ( .deb files), RPM Package Manager files ( .rpm files), Tarballs ( .tar files) and .run files. This section deals with installing these single files. It is not guaranteed that these files will be compatible with your system and you will not receive security updates if you install these files. For these reasons, if you wish to install a program, always use a native Ubuntu package of the application available through a package manager, if there is one available. Installing/uninstalling