Wednesday, July 14, 2010
MP3 Direct cut works good in Ubuntu 9.04
Posted by PNA Prasanna at 3:58 AM 0 comments
Labels: Ubuntu 9.04
Saturday, February 27, 2010
Commands for installing VLC Player in Ubuntu 9.04, 9.10 and 10.04
Command line way
% sudo apt-get update % sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc
Posted by PNA Prasanna at 10:43 AM 0 comments
Labels: Ubuntu, Ubuntu 10.04
Friday, January 22, 2010
How to install Empathy in Ubuntu 9.04
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com FA3A1271
sudo gedit /etc/apt/sources.list
deb http://ppa.launchpad.net/telepathy/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/telepathy/ppa/ubuntu jaunty main
sudo apt-get update sudo apt-get install empathy
Reference: http://www.ubuntugeek.com/howto-setup-voice-chat-with-google-talk-user-using-empathy.html
Posted by PNA Prasanna at 11:41 PM 0 comments
Labels: Ubuntu 9.04
Friday, January 15, 2010
What is kernel compilation in Linux & How can do in RHEL5
# cd /tmp
# wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-x.y.z.tar.bz2
2.Extract the compressed file into the specified directory It is usually /usr/src/
# tar -xjvf linux-2.6.25.tar.bz2 -C /usr/src
# cd /usr/src
3.Install gcc package through yum in RHEL5
# yum install gcc
You can use anyone of these commands for compiling the kernel in your desirable style
- # make menuconfig - Text based color menus, radiolists & dialogs. This option also useful on remote server if you wanna compile kernel remotely.
- # make xconfig - X windows (Qt) based configuration tool, works best under KDE desktop
- # make gconfig - X windows (Gtk) based configuration tool, works best under Gnome Dekstop.
make menuconfig
4.Compile kernel
# make
#make modules
# make modules_install
# make install
- System.map-2.6.25
- config-2.6.25
- vmlinuz-2.6.25
# cd /boot
# mkinitrd -o initrd.img-2.6.25 2.6.25
7. Modify Grub configuration file - /boot/grub/grub.conf
root (hd0,0)
kernel /boot/vmlinuz root=/dev/hdb1 ro
initrd /boot/initrd.img-2.6.25
savedefault
boot
Posted by PNA Prasanna at 12:31 PM 0 comments
Labels: Linux Articles, RHEL5 Configuration
Ubuntu 10.04 is expected on the first quarter of 2010
1. Updated packages
Posted by PNA Prasanna at 8:08 AM 0 comments
Labels: Ubuntu 10.04
Wednesday, January 13, 2010
Installing VLC Player in RHEL5 - R&D
Installing VLC Player in RHEL5 is still a perpetual R&D for me. You can find packages once you get into the vlc player website. But that is not fruitful to install VLC into RHEL5, however you can download the packages that is for our personal and professional R&D.
Packages can be downloaded from the following link, however these have some dependencies.
http://www.videolan.org/vlc/download-redhat.html
So It is not the full solution to install the VLC Player in RHEL5. The problem persists, even if you go for Linux forums.
VLC developers has to provide a proper solution to fix this up.
Anyway try this following link out for your machine, it would be the good R&D in RHEL5.
http://dag.wieers.com/rpm/packages/vlc/
If not try the torrent link for downloadin VLC for Redhat Enterprise Linux.
http://www.picktorrent.com/torrents/28/vlc-player-of-red-hat/
Posted by PNA Prasanna at 2:56 PM 0 comments
Labels: RHEL5 R/D
FireStarter for Ubuntu Linux - a free professional firewall
$ sudo apt-get install firestarter
It is having the customizable user interface, you can minimize into tray if you need, you can leave it normal otherwise.
Key Features
- Suitable for use on desktops, servers and gateways
- Enables Internet connection sharing
- Allows you to define both inbound and outbound access policy
- Wizard for easily configuring your firewall
- Sets up DHCP for a local network
- Real time firewall events view
- View active network connections, including any traffic routed through the firewall
Normally, In professional flavour of Linux ie Redhat Enterprise Linux does not have this type of utility. You can achieve through commands that is used for fixing the firewall priority ie., High, Medium, No firewall.
But In Ubuntu you can fix it easily with simple mouse clicks. You can restrict the network through this utility. Blocking internal network packets as well as blocking external network packets.
You cannot access internet, if you block all packets. This is the good utility to maintain a good network in Ubuntu.
Firewall is the fitering mechanism in one or more network, that is used to handle the incoming and outgoing packets in general.
Posted by PNA Prasanna at 2:29 PM 0 comments
Labels: Ubuntu