Posts filed under 'Linux'

20 Things to do after installing Ubuntu


Generally, in any operating system when you first install it fresh, you don’t get all the goodies.  You have to install and download various applications and install them to make it suitable for your personal taste and requirement.  Same is the case with Ubuntu as well.  Unlike Windows, you have email client (Evolution) and an office suite (OpenOffice.org) by default loaded when you first install it.  (Microsoft wants you to buy them separately and install it.  But that’s a different debatable topic.)
In fact you are better off with default Ubuntu installation without a need for further customization and installation.  However if you are like me, you want even more, more and more…
So I have prepared a list of applications and plugins I need to install after I fresh install Ubuntu.
Tip: If you don’t want to install every application you loaded on Ubuntu everytime you upgrade or reinstall Ubuntu, create a SEPARATE partition for HOME.  Having a separate home partition makes your life lot easier going forward, believe me.
I have prepared the below list based on my personal choice and requirement, your taste and requirements might vary.  But the below mentioned applications are Best in Class for Ubuntu loving people.  And you may at least want to try them once.  Here is a step by step list for my Ubuntu customization:
Go to Applications -> Add/Remove Programs.  From the drop down on right, select All available applications.  Now select the following applications’ checkbox from the list:
  1. Advanced CCSM: To enable eyecandy effects such as shown below and much more than that.  You will forget Vista I am sure once you use it.  You may even get different wallpapers on different desktops.  How to get different wallpapers on each workspace.  Check out this post.
  2. Avant Windows Navigator (AWN): This will give you a dock same as in Mac.  See the image with bottom deck of icons on desktop.
  3. Gstreamer Extra Plugins: Gstreamer plugins are required for media playback and all.  Because I am sure you would definitely have some mp3 and all.  This is for providing the system rquired codecs.
  4. Ubuntu Restricted Extras: These extras will provide you many plugins and add-ons required for Mozilla Firefox and other applications to run smoothly.  Extras include Java, Flash player, Browser media plugins and lot of other things.  Check description for complete list while installing.
  5. MS Core fonts: You won’t find Times New Roman and other Microsoft propreitary fonts in Ubuntu.  So this plugin will install those fonts on your Ubuntu machine.
  6. Mozilla Thunderbird: If you are a great fan of Thunderbird email client, then install this application for your email client. Else you can use  Evolution -the default email client in Ubuntu.
  7. Lightning: If you installed Thunderbird, then you will definitely need to install Lightning which adds a calendar to Thunderbird.  (Thunderbird by itself lacks Calendar functionality.)
  8. Firefox Add-on: I am sure you need to install lots of Firefox add-ons.  Here are the 50 Firefox add-ons you should DEFINITELY use.
  9. gtkRecordMyDesktop: This one is good if you want to create a quick tutorial of some application or something else running on your machine.  This application catures everything you are doing on your screen.  It’s a good application for bloggers like me.
  10. Scribus: Scribus is good for those who want to create Newsletter, Magazine and similar looking material.  It is a Desktop Publishing tool which has got a cool set of features.
  11. Samba: If you have more than one computer in your house, you would definitely wanna make a Home network or at least wanna share files between the two.  Samba enables you to do that easily.
  12. Yahoo! Zimbra Desktop: Zimbra is a new one in the list of applications to be installed on Ubuntu.  It is another email client which has got cool features and makes you able to read your Yahoo and other emails with ease. Zimbra has got everything you will need from a Desktop email client.  For complete features, read this post.
  13. Miro: Miro is a video player which can play any video file and best of all you can save Youtube videos. To install the latest Miro, follow the instructions mentioned on Miro webpage.
    Quick tip:
    Add “deb http://ftp.osuosl.org/pub/pculture.org/miro/linux/repositories/ubuntu hardy/” (without quotes) to the Third Party repositories.  Reload and install miro by searching in Synaptic.
  14. Wine: Wine enables you to run most of the Windows applications on Ubuntu.  Install it as mentioned on WineHQ site.

    Quick Tip:

    Open Terminal-> Copy and paste “wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -” to add key.
    Copy and paste “sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/hardy.list -O /etc/apt/sources.list.d/winehq.list”
    Type “sudo apt-get update”.
    Type “sudo aptitude install Wine”
  15. Google Earth: You don’t need any detail for it.  Go and install Google earth as mentioned in this post.
  16. Skype: Download the latest Skype and install by double-clicking on it.  Follow the prompts on screen.
  17. Gizmo Project: If you don’t like Skype, you might want to try Gizmo which is another application for internet based calls.
  18. Linux Back-port Modules: This is for those having issues with Wi-fi LED light not lighting while Wi-fi is in use.  Just search for Linux Back-port Modules and install it through Synaptic.  After you restart your system, wi-fi LED will lit.
  19. Songbird: Songbird is a open source alternative for iTunes and Windows Media Player with very cool features and customization possibilities.  Install Songbird 0.7 as mentioned in my other post.
  20. Go to System ->Preferences ->Appearance ->Visual Effects and select Extra.  That will activate your Video card driver.  In my case it is NVIDIA.  The changes will take place after you restart.
  21. Finally restart your machine just to make sure everything is working properly.  BTW, if you happen to install any Linux kernel update, you will have to restart anyways.  If you want you might want to remove the older kernels to save some space and some clutter from the booting menu.

    scr:http://www.knowliz.com/2008/09/20-things-to-do-after-installing-ubuntu.html

2 comments November 17, 2008

look windows partition through linux .

By default, Linux can only see his own partition(s).
But what if you need some data stored on a partition readable by Windows (wich uses an NTFS or FAT filesystem)?

Of course Linux allow you to read the content of both FAT and NTFS partitions, but you have to mount them: I’ll show you how.

mount a filesystem means that you virtually place the whole partition on a directory under the root directory /, and you specify what the system is allowed to do with it: you can mount a filesystem as read-only, or as writable.

The command is mount, and the syntax is the following:

mount -t filesystem_type device directory [options]

Let’s explain: this command mounts the filesystem found on device (which is formatted with filesystem_type) on directory (properly called mount point) with the specified [options].
Devices are usually listed under /dev; hard disk partitions are identified from the letters hd, followed by the disk order in letters (A for the first disc, B for the second, and so on) and then the number that identifies the number of the partition on the phisycal drive (1, 2, 3…).

Usually, the only options you will need to care about are -ro for read-only and -w for read-write.

Let’s make a practical example.
Say that you want to mount the partition in which is installed Windows XP, that is on /hda2 (then, /dev/hda2 under Linux) and you want to show its content, as read-only, in /mnt/windows. The command for that will be the following:

mount -t ntfs /dev/hda2 /mnt/windows -ro

Now, you can go to /mnt/windows, and you will see your so-called C: disc here. Quite simple, isn’t it?

So, now we know how to manually mount partitions.

How to mount partitions automatically at the system boot?

The key is on this file: /etc/fstab. This file contains informations about partitions and storage devices on your computer. During the boot, Linux reads its instructions and mount filesystems accordingly.
In this file, every row contains informations about a partition. The structure of a row is:

<device> <mount point> <type> <options> <dump> <check>

Let’s explain:
Device is your device (/dev/hda2 accordingly to the previous example), mount point is the directory where you will see your data, type is the filesystem (e.g. “ntfs” for windows), options have to be comma-separated (I will return on them in a moment), dump and check refers, respectively, to “do you want a backup of this” and “do you want the system to check this disc”. Both these values can be 0 or 1, respectively for True or False. If you’re mounting a Windows partition, leave 0 for both.
Options: they are almost the same allowed for mount command. When mounting a Windows unit, the only really useful options are: ro (or rw, respectively for Read-only and Read-write), and user (or nouser: default is nouser, and if you don’t change this to user, the system will not mount your device unless you are logged in as root).

Going on with the example, a row in /etc/fstab that will automatically mount the Windows XP partition found on /dev/hda2 in /mnt/windows as read-only, would look as the following:

/dev/hda2 /mnt/windows ntfs ro,user 0 0

Now, every time you boot, you will able to read contents from C: into /mnt/windows!

If you wish, you can read a more extensive documentation on fstab.

1 comment June 19, 2008

Linux OS fits into Pen drive !

imageDamn Small Linux, DSL is a free download that fits inside less than 50MB, so it’s easily booted from a CD, a USB drive, or an ancient PC with only 8MB of memory.

Important changes that occurred are:

  • New drag-and-drop capabilities in the file manager
  • Improved Wi-Fi support (through ndiswrapper, madwifi, and other modules)
  • New GUI interfaces for changing system preferences, managing printers and other tasks
  • Kernel upgrade to 2.4.31, which means better power management and device support

Damn Small Linux now includes

XMMS (MP3, CD Music, and MPEG), FTP client, Dillo web browser, Netrik web browser, FireFox, spreadsheet, Sylpheed email, spellcheck (US English), a word-processor (Ted), three editors (Beaver, Vim, and Nano [Pico clone]), graphics editing and viewing (Xpaint, and xzgv), Xpdf (PDF Viewer), emelFM (file manager), Naim (AIM, ICQ, IRC), VNCviwer, Rdesktop, SSH/SCP server and client, DHCP client, PPP, PPPoE (ADSL), a web server, calculator, generic and GhostScript printer support, NFS, Fluxbox and JWM window managers, games, system monitoring apps, a host of command line tools, USB support, and pcmcia support, some wireless support.

Download Damn Small Linux here by choosing the download mirror.

source : http://www.renjusblog.com/2007/10/linux-os-less-than-50mb-for-pen-drives.html

Add comment June 10, 2008

Linux useful commands

Its been month i have logged into ubuntu … and the sad news is i forgot many commands … moreover i love to do lots of stuffs in console rather than choosing GUI … Whenever i forget some command , the best option for me search in google … But today i found something interesting , where i can stick some useful commands in my brain …or even you can stick to your wall too !!

fwunixrefshot.png

Click the image above to download a full PDF. Print it out, stick it on your wall, and pass it on. It’s licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported license, so feel free do distribute and modify it, even for commercial use!

3 comments May 18, 2008

Hack boot screen

Some distros have sexy boot screens, some have basic, boring ones. Here’s what I get from a default installation of ubuntu…

What a yawn! But there’s an easy way to spice them up. Add either or both of the grub-splashimages

o add a new splash image, edit /boot/grub/menu.lst and add the line

splashimage /boot/grub/splashimages/FILENAME.xpm.gz

DIY Splashing

If you find the above selection a bit dull, its a doddle to create your own.

The images used by the grub bootloader must be in X PixMap (.xpm) format and may or may not be compressed with gzip (.gz). What’s more, they have to be sized 640×480 pixels and have no more than 14 colours(!?). Fortunately, if you have ImageMagick installed, this command will do the whole conversion for you…

convert infile.jpg -resize 640x480 -colors 14 -depth 8 outfile.xpm.gz

(Note that you can use pretty much any graphic with convert. You’re not restricted to JPGs.)

Not every image converts nicely. That 14-colour format can turn great images grainy — or worse — so here’s a quick batch file to convert a bunch of randomly named JPGs into .xpm.gz format. To use it, create a new folder, copy in the files you want to try, save the following as xpm_convert.sh, and make it executable by typing chmod +x xpm_convert.sh in a console window.

#!/bin/bash
FILE_NO=”1″
for i in *.jpg
do
echo Converting $i
convert $i -resize 640×480 -colors 14 -depth 8 $FILE_NO.xpm.gz
FILE_NO=`expr $FILE_NO + 1`
done


Running the program with ./xpm_convert.sh will create a bunch of consecutively numbered .xpm.gz files, which should be copied to /boot/grub. Why use numbers instead of names? Because it makes it easier to test the new files.

When you reboot, hit “c” when the boot menu appears. This will take you to the a grub command line. Now type splashimage /boot/grub/1.xpm.gz to try out the first of your new images. Then try splashimage /boot/grub/2.xpm.gz to test the second one, and so forth. There’s no need to do a full reboot and change menu.lst every time!

A couple of other notes:
* The above doesn’t seem to work unless your menu.lst already contains a working splashimage.
* You can use auto-complete on the grub command line, so instead of typing the whole command you can type sp <tab> /bo <tab> g <tab> etc.

1 comment April 4, 2008

New features for Hardy Heron

The roadmap for hardy heron has a pretty big list of features, most of them, although very important, are technical and a bit uninteresting. Some of them should have been in Gutsy but couldn’t meet the schedule. Hardy Heron is going to be a Long Term Support release, so there’s also going to be a lot of fixes for existing features. So without further ado, the features which I’m anticipating the most are.Install on an existing filesystem without overwriting /home
When I moved from feisty to gutsy, I decided to do a fresh install. One of the things I had to do was back up my home folder, and when I finished installing gutsy I just copied it back onto my computer. This new feature will allow people to install the new version of Ubuntu without it overwriting their home folder.I’m sure this will come in very handy for people who like trying out different distro’s.

Hardy Hardware Detection
This is more of a bug fix than a new feature. Gutsy already has excellent hardware support and the plan for hardy is even better and more robust detection of hardware. Sounds good to me.

GDM Face Browser
One of the changes I made to my gutsy is the GDM. I replaced the old one with something that allows me to just click on a picture of my username and login. This will hopefully be the default for hardy.

Auto Detection of Monitor Frequency
While I was testing gutsy beta I had to manually configure xorg.conf to get it to the right resolution. It wasn’t fun. This should be a thing of the past with hardy as it will automatically detect everything for you. Huzzah!

Apt Authentication Reliability
Have you ever had an update fail for no reason? Well it actually fails because of ‘transient network failures’. The aim is to make hardy more robust against these errors.

Redesign Restricted-Manager Code
They want to expand the role of the restricted manager and change it so that other distro’s can share the joy.

Handling Full Disks

I’ve never had this problem with Ubuntu, but if your disk gets full, things can get quite ugly. They plan to add a notification and disk clean-up tool when your running low on space.

Desktop Effects
Make compiz fusion more robust and easier to use.

New Theme
Hardy Heron will be getting a shiny new theme, I hope they move away from the brown theme and choose something lighter and more fresh.

Easy File Sharing
To allow people to easily share files over a network. Not more I can say about this.

Dual/Multi Monitor Support
Currently you have to manually tweak Ubuntu if you want to use more than one monitor. They want to fix this for hardy.

Integrate Prefetch into Ubuntu
I noticed a slightly increased start up time in gutsy compared to feisty. Hardy will use file prefetch and other optimisations to speed up boot time.

Automatix-Ubuntu Team Collaboration
Automatix was extremely helpful for me in feisty. Although I don’t use it in gutsy, its good that they are collaborating with the automatix team.

Single Click Install
Installing software is already pretty straightforward in Ubuntu. They want to make it even easier to install third party applications. I’m not complaining.

Apparmor Integration
This is already a part of gutsy, the plan is to increase integration to make Ubuntu even safer.

Firewall
Make it easier for users to configure their firewall.

Third Party Apt
Now when you install third party apps, you have to manually add the software repository to the sources.list. This spec makes it easy for users to install third party software and have it update automatically.

Revamped Logout Screen
They want to streamline the options you have when you click that big red button, to make things less confusing.

Better Integrated Wine
Better Wine will make it easier for Windows users to convert, thus helping to solve bug #1.

Xorg 7.3
This is one of the features that missed the gutsy deadline. This should make manual configuration of xorg.conf obsolete. Another much anticipated feature is Bullet Proof X, which will go into a graphical safe mode if anything goes wrong with X.

Slick Boot
To improve the boot and shutdown process and also make the things look nicer.

1 comment February 11, 2008

Laptop Hard drive being damaged : Ubuntu

I have read many blogs regarding laptop hard disk being damaged , especially with power management on laptops and unnecessary disk activities. one of them i came across about firefox makes unnecessary hit to hard disk. and i hope this will not happen in windows.

ok lets demo this..

$sudo dmesg -c

opening a new tab and going to a website (two times)

$dmesg | grep firefox

result :

[ 1900.468000] firefox-bin(6521): dirtied inode 18829523 (sessionstore-1.js) on dm-2
[ 1900.468000] firefox-bin(6521): dirtied inode 18829540 (?) on dm-2
[ 1901.580000] firefox-bin(6521): dirtied inode 19927160 (_CACHE_001_) on dm-2
[ 1901.580000] firefox-bin(6521): dirtied inode 19927160 (_CACHE_001_) on dm-2
[ 1901.896000] firefox-bin(6521): dirtied inode 19927160 (_CACHE_001_) on dm-2
[ 1910.504000] firefox-bin(6521): dirtied inode 18829540 (sessionstore-1.js) on dm-2
[ 1911.568000] firefox-bin(6521): dirtied inode 18826308 (history.dat) on dm-2
[ 1911.568000] firefox-bin(6521): dirtied inode 18826308 (history.dat) on dm-2
[ 1911.568000] firefox-bin(6521): dirtied inode 18826308 (history.dat) on dm-2
[ 1920.212000] firefox-bin(6521): dirtied inode 18829523 (prefs-1.js) on dm-2
[ 1920.216000] firefox-bin(6521): dirtied inode 18827110 (?) on dm-2
[ 1923.632000] firefox-bin(6521): dirtied inode 18827110 (localstore-1.rdf) on dm-2
[ 1923.636000] firefox-bin(6521): dirtied inode 18829504 (?) on dm-2
[ 1933.100000] firefox-bin(6521): dirtied inode 18829504 (sessionstore-1.js) on dm-2
[ 1933.852000] firefox-bin(6521): dirtied inode 19927161 (_CACHE_002_) on dm-2
[ 1933.852000] firefox-bin(6521): dirtied inode 19927161 (_CACHE_002_) on dm-2
[ 1933.896000] firefox-bin(6521): dirtied inode 19927165 (_CACHE_003_) on dm-2
[ 1933.896000] firefox-bin(6521): dirtied inode 19927165 (_CACHE_003_) on dm-2
[ 1934.308000] firefox-bin(6521): READ block 404671336 on dm-2
[ 1934.332000] firefox-bin(6521): READ block 404671432 on dm-2
[ 1934.332000] firefox-bin(6521): READ block 404671880 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671368 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671376 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671384 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671392 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671400 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671408 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671416 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671424 on dm-2
[ 1934.340000] firefox-bin(6521): READ block 404671440 on dm-2
[ 1934.344000] firefox-bin(6521): READ block 404671680 on dm-2
Each time firefox goes to a new website firefox accesses the disk. IMHO cache/cookies/history/session-stuff all needs to be stored in ram instead of on the disk and should only be stored to the disk once in a while (10 minutes?) and when firefox closes.

firefox might cause unnecessary disk activity. It is important for laptop users to reduce unnecessary disk-activity because the harddrive head might be parked or the drive might be spun down.

This might be one of the contributors to the famous Load_Cycle_Count bug :
https://bugs.launchpad.net/ubuntu/+source/acpi-support/+bug/17216
https://bugs.launchpad.net/ubuntu/+source/acpi-support/+bug/59695

Aggressive power management will cause your laptop’s harddrive head to park quickly. Too much unnecessary disk activity and usefull disk activity such as ext3 journalling (which is safer for your data) will unpark your harddrive head quickly. This combination of aggressive power management and disk activity is causing too rapidly increasing Load_Cycle_Counts for some people.

READ THIS FIRST :
http://ubuntuforums.org/showpost.php…4&postcount=25
http://ubuntudemon.wordpress.com/200…er-management/
http://www.advogato.org/person/mjg59/diary/82.html
http://ubuntuforums.org/showpost.php…&postcount=381
http://ubuntuforums.org/showpost.php…&postcount=426

And i hope ubuntu team will look after these bugs….

Add comment November 29, 2007


Categories

AD

November 2009
M T W T F S S
« Nov    
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Archives

1

Blog Stats

Talk To Me

Text