Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

May 202011
 

Create a new ext3 file system using LVM

Answer:

To create a new ext3 partition using the Logical Volume Manager (LVM) is just easy with a few commands:

# lvcreate -L 100G -n /dev/vg0/vp0 (Assume volume group is vg0) 
# mkfs -t ext3 -m 1 -v /dev/vg0/vp0

Then you can mount the /dev/vg0/vp0 as usual.

May 182011
 

Add Personal Package Archives (PPA) to the current repository in Ubuntu

Answer:

add-apt-repository is a helper script which adds an external APT repository to either /etc/apt/sources.list or a file in /etc/apt/sources.list.d/. It can also import the keys needed.

To get this tool, just a single command:

# sudo apt-get install python-software-properties

That is it.

May 102011
 

Disable a service in Ubuntu using upstart

Answer:

In newer version of Ubuntu such as 10.04, some services are managed by upstart and you cannot disable them by using the old method.

For example, to disable the OpenSSH server, you need to edit the file /etc/init/ssh.conf, comment out the following lines:

# start on filesystem
# stop on runlevel [!2345]

Then this service will not start when you reboot your machine next time. All the upstart configurations files are under this folder and feel free to try it out.