• From the Gnome Menu, select System > Administration > Login Window.
    Ubuntu AutoLogin
  • For security reasons, you’ll be asked to type your password.
    Ubuntu AutoLogon like Windows XP and Vista
  • Once you’ve entered your password, click OK.
  • In the dialog window that appears, go to the Security tab.
  • Check ‘Enable Automatic Login’
  • In the box below, select/type in the username
  • Click close to save the changes

Recently, I installed Ubuntu 8.10 on my notebook which contains RTL8187B WLAN card. unlike previous versions of Ubuntu which don’t detect such card, 8.10 detected the card, and WLAN worked very well. But I noticed that the range of the WLAN is very short, and after very few meters from the router, there is no traffic. After some long search, here is the solution that worked with me:

1- gksu gedit /etc/rc.local

2- Add the following line to rc.local before exit 0

iwconfig wlan0 rate 5.5M fixed

3- Reboot

Of course there are some other solutions based on ndiswrapper or the modified RTL8187B driver, but I found the above solution powerful and easy and no big change happened in the system.




acetone_screen.jpgLinux
only: AcetoneISO2, a free, open-source application for Linux systems,
gives you complete control over your disk images and CD/DVD mounting
without having to touch the command line once. The previously mentioned
app has moved into a refined 2.0 version, adding a few new functions
(CD audio backup, DVD to AVI conversion, and more) and making
everything a bit simpler to use, with real time progress bars for all
features and no surprise terminal prompts. Packages are available for
most major Linux distributions at the download page, and the source is
provided for all others. AcetoneISO2 is a free download for Linux
systems only. Thanks, Mike H!

Installing Core Microsoft fonts:

sudo apt-get install msttcorefonts

To make them work in X-windows, you may also want to install x-ttcidfont-conf if it’s not already installed:

sudo apt-get install x-ttcidfont-conf

Another way to install fonts based on existing fonts folders inside Windows:

Gain root privileges:

sudo bash

Make a directory to store the fonts:

mkdir /usr/share/fonts/truetype/msfonts

Find the fonts on your windows partition, for me this was /media/sda1/Windows/Fonts

copy the fonts over:

cp /media/sda1/Windows/Fonts/*.ttf /usr/share/fonts/truetype/msfonts

Re-create the font cache:

fc-cache -f -v

EasyTag

EasyTAG is a utility for viewing and editing tags for MP3, MP2, MP4/AAC, FLAC, Ogg Vorbis, MusePack, Monkey’s Audio and WavPack files. Its simple and nice GTK+ interface makes tagging easier under GNU/Linux or Windows. The program exists for the both versions of the GTK library 1.2 and 2.4. The GTK 1.2 version wouldn’t change a lot (may be some bugs fixes), as all new developments will be concentrated on the new GTK 2.4 version.

Link:
http://easytag.sourceforge.net/

[Solution]
sudo apt-get install gnome-vfs-obexftp

Ubuntu release schedule

  1. Play youtube videos directly in Totem Movie Player (Hardy):
    Open Movie Player, go to Edit > Plugins and enable “Youtube
    Browser”, then in the right panel select “Youtube” and then just search
    for a video. And of course, it works full-screen too ;) And you can install the Totem Movie Player H.264 plugin for youtube for better quality, from here.

  2. Another tip: i recently find out that by holding the mouse over
    audio files (i’m not sure for other versions, but it definitely works
    on Hardy) you can listen to that file… like a preview.
  3. One thing that annoyed me when i installed Ubuntu first was
    the way to big icons, so if that’s the case for you too, here’s what
    you can do: open nautilus and go to edit > preferences: icons view:
    default zoom level: 75%.
  4. To customize most of the colors of your ubuntu: sudo apt-get install gnome-color-chooser which you can then find under System > Preferences.
  5. Another nice little piece of software is alltray: sudo apt-get install alltray

    It lets you open a program in system tray even if that software does
    not support it. To do so: hit alt+f2 and type: alltray
    <name_of_software_to_open> and the same goes for shortcuts.

  6. Some system information: sudo apt-get install sysinfo
  7. To download youtube videos and convert them to .avi: sudo apt-get install youtube-dl ffmpeg

    and then: youtube-dl -o example.flv "http://www.youtube.com/watch?v=cdaAWFoWr2c"

    and to convert to avi: ffmpeg -i example.flv example.avi

    (of course change the name of the video as you please and the youtube link to the video you want to download).

  8. Many of us use gtk-recordmydesktop which saves the screen
    recordings in ogg or ogv format but we may want it in avi format, so to
    do that: sudo apt-get install mencoder

    and: mencoder -idx example.ogg -ovc lavc -nosound -o example.avi (this is if the ogg file has no sound).

  9. To make a playlist of the audio files in a folder: ls -R > playlist.m3u
  10. To kill a process by it’s name: sudo killall <prog_name> for instance: sudo killall firefox

    or you can kill by pid (program id): sudo kill <pid>

    and to see the pid: pidof <program name>, for instance: pidof firefox

    (or you can try listing the currently running processes with: ps -e

  11. To refresh the gnome panel: sudo killall gnome-panel
  12. To find out the version of installed software: apt-cache policy <packet_name>
  13. To find out the UUID of your partitions: ls /dev/disk/by-uuid/ -alh

[Source: icehot.wordpress.com]

gNewSense is one of the few distributions certified by the Free Software Foundation as being a truly free Linux distribution. gNewSense 2.0 is essentially Ubuntu 8.04 LTS but with a few modifications to make it more free by removing some binary-only components. New in gNewSense 2.0 is also new artwork, switching the default web browser from Mozilla Firefox to Epiphany, Blag’s deblob script in the kernel, and non-free GLX being removed from X.Org/Mesa. Here are a few screenshots from this latest release.

Screenshots

If u need to edit PDF files on ubuntu linux system, u have many options.

  • U can use flpsed as described in this blog entry. (But u will face several problems).
  • U can use pdftk. (But it failed to load my PDF file !!!!)
  • U can use pdfedit, which is a tool that u be installed on ubuntu and edit the PDF files.

Using the last one, I could export the PDF into images, then add such images into OpenOffice document, then add what I want.

[Note: The above method will not help in editing PDF contents. To edit PDF contents, u will use pdfedit tool]