Jump to content


Tips and Tricks for Ubuntu after Installation

distro Ubuntu Linux Gizmos Freeware Tips and Tricks

  • You cannot start a new topic
  • You cannot reply to this topic
1 reply to this topic

#1 Man'n'Black-4xp

    The XP In The Ointment

  • 1,848 posts
  • Joined: November 28, 2010
  • 308 topics
  • Skin: Paradox
  • Local time: 05:33 AM
  • Zodiac:Aquarius
  • Gender:Male
  • Location:Midwest
  • OS:Windows XP
  • Country:
Offline
  • Time Online: 8d 23h 38m 54s

Posted 22 October 2011 - 04:25 AM

Tips and Tricks for Ubuntu after Installation

Updated 19. September 2011 - 6:32 by Jojoyee

Introduction
Posted Image
Ubuntu is a free operating system or a Linux distribution ("distro") which receives the highest hits on DistroWatch and has been selected by readers of DesktopLinux as the most popular distro. It also gets the highest number of votes in Poll Results on Gizmo's Freeware Forum.
If you have the Ubuntu system which comes with the default Gnome desktop environment installed in your PC, you might find these tips and tricks useful for working with the system.
Looking for a desktop interface with a start menu that looks closer to the Windows system? Then give Linux Mint a try and check out Tips and Tricks for Linux Mint after installation.
Note: The steps described in this article work with Ubuntu 11.04 (logged into Ubuntu Classic session), Ubuntu 10.10 and Ubuntu 10.04.

Tips and Tricks for Ubuntu - Quick Select Index
After clicking a link, use your browser's Back icon to return here.
Panel
  • Customize the Panel
  • Pin Programs to the Panel
  • Set Fully Transparent Panel
  • Enable Superbar
  • Change Font Type and Color of Panel Clock
Window
  • Move Window Control Buttons to the Right
  • Open Up a Window in Center
  • Roll Up and Down a Window
  • Customize the Theme
  • Set Aero Glass Effect
  • Enable Aero Snap (Ubuntu 10.10 & 10.04 only)
Desktop
  • Hide Drive Icons on the Desktop
  • Change Wallpapers Automatically
Keyboard Shortcuts
  • Add or Change Keyboard Shortcuts
  • Terminate Unresponsive Programs
  • Re-start System without Rebooting
File Manager
  • Set a Default View in File Manager
  • Create an Advanced File Manager
Sound
  • Set Sound Output
  • Disable or Change Login Sound
Add Fonts, Codecs and More Software
  • Install Extra Fonts
  • Enable Media Playback
  • Install Screenlets
  • Install Sun Java Packages
  • Add More Useful Software
Drive and Partition
  • Auto Mount Drives at System Startup
  • Manually Mount a USB Drive
  • Name or Label a Partition
Startup and Shutdown
  • Auto Start Up an Application
  • Synchronize System Time and Date
  • Change Default Boot Options
  • Remove Old Linux Kernel, Clean Up Boot Menu
  • Auto Shutdown the System
Customize the Panel
Ubuntu includes a top panel and a bottom panel by default. If you prefer to keep only one panel at the bottom just like the Windows Taskbar, then these are the steps to follow: These are basic changes. The panels are much more flexible than the Windows Taskbar in that many items in the panels can be easily added, removed or configured.
Posted Image The Main Menu shows the "Lock Screen", "Log Out" and "Shut Down" items if you remove the "Indicator Applet Session" item (which shows your username and the shutdown button to the right of the panel). These three items are hidden from the Main Menu when the Indicator Applet Session item is on the panel.
Posted Image If you need to restore the panels to the original state, enter the following commands into the Terminal and re-start the system: Posted Image At any point if your customized desktop settings caused a problem and you wish to reset all back to their defaults, then enter this command sudo rm -rf .gnome .gnome2 .gconf .gconfd .metacity in the Terminal, log out and log back in to the system.

Pin Programs to the Panel
Frequently used programs can be easily pinned to the panel.
  • Browse to the program from "Applications" or "Main Menu".
  • Drag and drop the program to an empty space in the panel, or right-click the program and select "Add this launcher to panel".
  • Right click the program icon, select "Move" and drop it to a new place in the panel.
  • Right click the program icon and select "Lock to Panel".
See also "Enable Superbar".

Set Fully Transparent Panel
When you set the panel to be transparent in the default Ambiance theme in Ubuntu, you will find that some panel items' backgrounds are not transparent, but you can make them transparent and consistent with others, following these steps:
  • Posted ImageGo to Applications (or Main Menu) > Accessories > Terminal.
  • Enter cp -R /usr/share/themes/Ambiance ~/.themes/
  • Enter gedit ~/.themes/Ambiance/gtk-2.0/apps/gnome-panel.rc (for Ubuntu 11.04 or 10.10) OR gedit ~/.themes/Ambiance/gtk-2.0/gtkrc (for Ubuntu 10.04), to open the file with gedit.
  • Search for this line bg_pixmap[NORMAL] = "img/panel.png" (for Ubuntu 11.04 or 10.10) OR bg_pixmap[NORMAL] = "panel_bg.png" (for Ubuntu 10.04)
  • Posted ImageComment out the line by placing a # at the beginning of the line, like this: # bg_pixmap[NORMAL] = ...
  • Save the file.
  • Go to System > Preferences > Appearance, switch to the other theme and then back to the Ambiance theme.
Posted Image If you'd to change to the New Wave theme, then enter cp -R /usr/share/themes/"New Wave" ~/.themes/ in step 2, enter gedit ~/.themes/"New Wave"/gtk-2.0/gtkrc in step 3, search for and comment out this line bg_pixmap[NORMAL] = "Images/Panel/PanelBarLong.png" in steps 4 and 5 respectively.

Change Font Type and Color of Panel Clock
The font type and color of the panel clock follow the windows text in a theme by default. In particular, if the font color is black and shown on a dark background through a transparent panel, you can't read the clock clearly, but you can tweak it by changing the font color. And you can define the font type for your panel clock as well.
The code in Step 1 below sets the font color to white and applies DS-Digital font (See Posted Image below), bold and size 16.
  • Posted ImageOpen up the text editor Gedit and paste the following code:
    style "my-panel-clock"
    {
    fg[NORMAL] = "#FFFFFF"
    font_name = "DS-Digital Bold 16"
    }
    widget "*.clock-applet-button.*" style "my-panel-clock"
  • Save the file as .gtkrc-2.0 (including the dot in front of the filename) inside your home directory /home/your_user_name.
  • Log out and log back in (OR enter killall gnome-panel into the Terminal) to see the change.
Posted Image The DS-Digital font can be downloaded here. After downloading, unzip the file and install the font into the system for use. See Install Extra FontsChange Font Type and Color of Panel Clock
The font type and color of the panel clock follow the windows text in a theme by default. In particular, if the font color is black and shown on a dark background through a transparent panel, you can't read the clock clearly, but you can tweak it by changing the font color. And you can define the font type for your panel clock as well.
The code in Step 1 below sets the font color to white and applies DS-Digital font (See Posted Image below), bold and size 16.
  • Posted ImageOpen up the text editor Gedit and paste the following code:
    style "my-panel-clock"
    {
    fg[NORMAL] = "#FFFFFF"
    font_name = "DS-Digital Bold 16"
    }
    widget "*.clock-applet-button.*" style "my-panel-clock"
  • Save the file as .gtkrc-2.0 (including the dot in front of the filename) inside your home directory /home/your_user_name.
  • Log out and log back in (OR enter killall gnome-panel into the Terminal) to see the change.
Posted Image The DS-Digital font can be downloaded here. After downloading, unzip the file and install the font into the system for use. See Install Extra Fonts.
Posted Image The filename leading by a dot represents it's a hidden file and visible by toggling the key Ctrl-H in the Nautilus file browser.

Move Window Control Buttons to the Right
If your Ubuntu system sets the Minimize, Maximize and Close buttons to the left in a window and you prefer to change them to the right, then follow these simple steps:
  • Posted ImagePress Alt+F2 to bring up "Run Application" window.
  • Type gconf-editor into the box, click "Run" to bring up Configuration Editor.
  • Browse to apps > metacity > general, look for "button_layout" on the right panel.
  • Change the value in the "button_layout" from close,minimize,maximize: to menu:minimize,maximize,close and press the Enter key.
Posted ImageGo to System > Preferences > CompizConfig Settings Manager
  • Select "Windows Management" from the left panel.
  • Click "Place Windows".
  • Change Placement Mode from "Smart" to "Centered", click "Back" and "Close".
    Ideally, the window manager in Ubuntu should restore the last known position of an application window, but it does not do that unless an application remembers its own window position. (See reported bugs)

Roll Up and Down a Window
When you double-click the title bar of a window, the default setting is to maximize a window. Since there's already a maximize button you can use for this, I always like to change the default setting to rolling up (or 'shading') a window when I double-click on its title bar.Posted Image
  • Go to System > Preferences > Windows
  • In "Titlebar Action", select "Roll up" (or "Shade" where applicable), from the drop-down list.
Now you can roll up a window when you double-click its title bar, and roll it down by double-clicking the title bar again. Simple as that.

Customize the Theme
Themes in Ubuntu can be customized to match the applications or suit your needs. I once tried the "New Wave" theme and the menu (File, Edit, View, etc) was hardly visible on the dark background in OpenOffice, but customizing the "New Wave" theme with "Ambiance" Controls solved the problem. These are easy steps to customize a theme, for example, allowing the "New Wave" theme to mix with the "Ambiance" Controls.
  • Posted ImageGo To System > Preferences > Appearance.
  • Under the "Theme" tab, click the "Customize" button while the "New Wave" theme is selected.
  • Under the "Controls" tab, click any other control item such as "Ambiance" and click the "Close" button.
  • Now it becomes your Custom theme and you can save it as a new theme, such as "New Wave with Ambiance Controls".
Set Aero Glass Effect
In Ubuntu you can set nearly the same aero glass effect to window borders with alpha transparency as available in Windows 7.
  • Posted ImagePress Alt+F2 to bring up "Run Application" window.
  • Type gconf-editor into the box, click "Run" to bring up Configuration Editor.
  • Browse to apps > gwd, look for "metacity_theme_active_opacity" on the right panel.
  • Change the value in "metacity_theme_active_opacity" from 1 to 0.75 (or smaller such as 0.5 for more transparency).
  • Then go to System > Preferences > CompizConfig Settings Manager
  • Select "Effects" from the left panel.
  • Tick "Blur Windows" and click the "Close" button. (Note: default values in Blur Windows can be applied.)
Posted Image If the aero glass effect doesn't work, check if you have updated your display driver. Go to System > Administration > Additional Drivers, activate the recommended graphics driver and restart the system.

Enable Aero Snap (Ubuntu 10.10 & 10.04 only)
In Windows 7, you can click and drag a window to the left or right edge of the desktop and it will fill half of the screen, or snap a window to the top edge of the desktop and it will be maximized.
In Ubuntu 11.04, you can click and drag a window to the left, right or top edge of the desktop to achieve the same result, but in Ubuntu 10.10 or 10.04, you need some tweaking as follows.
  • In addition to CompizConfig Settings Manager, install WmCtrl if not added.
    • Go to Applications (or Main Menu) > Accessories > Terminal.
    • Enter sudo apt-get install wmctrl
    • Enter password when prompted.
  • Go To System > Preferences > CompizConfig Settings Manager.
  • Select "General" from the left panel and click "Commands".
  • In Command line 0, 1 and 2, paste the following codes:
    • Command line 0, paste WIDTH=`xdpyinfo | grep 'dimensions:' | cut -f 2 -d ':' | cut -f 1 -d 'x'` && HALF=$(($WIDTH/2)) && wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,0,0,$HALF,-1
    • Command line 1, paste WIDTH=`xdpyinfo | grep 'dimensions:' | cut -f 2 -d ':' | cut -f 1 -d 'x'` && HALF=$(($WIDTH/2)) && wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,$HALF,0,$HALF,-1
    • Command line 2, paste wmctrl -r :ACTIVE: -b add,maximized_vert,maximized_horz
  • In the same window, click "Edge Bindings" tab.
  • Change Run Command 0, 1 and 2 from "None" to "Left", "Right" and "Top" respectively.
  • Click "Back" button and select "General Options", change "Edge Trigger Delay" to about 500.
Posted ImageGo to Applications (or Main Menu) > Ubuntu Software Center, enter wally into the Search box and click "Install". (See Posted Image below.)
  • Press Alt-F2, enter wally and click the "Run" button.
  • Right-click the Wally icon on the panel, select Settings.
  • Click "Folders" in the left column, then add /usr/share/backgrounds to the Folder box and tick "Include subfolders".
  • Click "Settings" in the left column, then tick "Play automatically on application starts".
  • Set the application to auto start, using this tip Auto Start Up an Application (as Wally's option to "Start automatically when system starts" being disabled).
    Your wallpaper on the desktop will automatically change following these basic settings when you log back in the system (or right click the Wally icon on the panel and select "Play").
Posted Image If you like to get the latest version of Wally which has an option to disable splash screen and auto quit, go to developer's site to download. After which, right click the .deb file and select "Open with Ubuntu Software Center" to install, then follow Step 2 above.

Add or Change Keyboard Shortcuts
Keyboard shortcuts are preset in the system, but you can add new ones or change them easily. For instance, change the default shortcut Ctrl+Alt+T (Run a Terminal) to Win+R (press R while holding down the Windows key, also known as Super key) by the following steps: Posted Image To disable a shortcut, press Backspace when it shows "New shortcut..." after the step 3 above.
Posted Image Shortcuts begin with XF86 refer to special keys available to some multimedia keyboards.
Posted Image Keyboard shortcuts can also be set by changing keybinding values with Configuration Editor. Press Alt+F2 and enter gconf-editor, then navigate to apps > gnome_settings_daemon > keybindings, or apps > metacity > global_keybindings and window_keybindings.

Terminate Unresponsive Programs
Xkill is part of the X11 utilities pre-installed in Ubuntu and a tool for terminating misbehaving X clients or unresponsive programs. You can easily add a shortcut key to launch xkill with the steps below.
  • Posted ImageGo to System > Preferences > Keyboard Shortcuts.
  • Click the Add button to create a custom shortcut.
  • Enter xkill to both the Name and Command boxes and click the Apply button.
  • Click on Disabled at the xkill row in the Keyboard Shortcuts window (Disabled is then changed to New shortcut...).
  • Press a new key combination, e.g. Ctrl+Alt+X (New shortcut... is then changed to Ctrl+Alt+X).
  • Click the Close button.
Xkill is ready for use. Press the above key combination to turn the cursor to an X-sign, move the X-sign and drop it into a program interface to terminate the unresponsive program, or cancel the X-sign with a right-click.

Posted ImageGo to "Places" and open a folder.
  • At the top of the File Browser, click "Edit" and "Preference".
  • Under Default View, change "Icon View" to "List View", to see more details in columns.
  • Tick "Show hidden and backup files" if that's your choice.
    Other various settings, such as single or double click to open items, icon captions, list columns, preview files and media handling can be done in the same window as well.

Create an Advanced File Manager
In the Ubuntu file system, you can use Nautilus file manager to browse most files but can only write files in your home folder /home/your_name and its sub-folders such as Desktop and Documents. If you have to rename a folder or write files outside of your home folder using the file manager, you won't be able to but you can create an advanced file manager for this purpose. Now you can go to Applications (or Main Menu) > Accessories and see that the Advanced Nautilus is ready for use. But be careful since you can use it to delete or change any files on your system.

Set Sound Output
When I first installed Ubuntu onto a PC with an integrated audio device and tried to play a media file on a player, it had no sound. I tried these simple steps in setting Sound Preferences and then it had sound. It works for me for the audio device I have.
  • Go to System > Preferences > Sound to bring up the Sound Preferences window.
  • Under the Hardware tab, change Profile to Analog Stereo Duplex from the drop-down menu.
  • Under the Output tab, change Connector to Analog Output (LFE)/Amplifier from the drop-down menu.
As the items available from the drop-down menus might differ depending on the hardware devices detected by the system, you might want to try other items in the menus to see if they work for your devices. It might also help to check out the steps in Sound Troubleshooting from the Ubuntu Documentation.
Playing a media file in a proprietary format on a player might also have no sound if the required codecs are not installed. In this case, see Enable Media Playback in this article.

Disable or Change Login Sound
Each time when you login to Ubuntu, it plays a login sound. If you don't like to listen to it each time you login, you can easily disable it, or you can even change it to your favorite sound.
To disable the login sound:
  • Go to System > Preferences > Startup Applications.
  • Under the "Startup Programs" tab, untick "GNOME Login Sound"
  • Click Close
To change the login sound, tick the above "GNOME Login Sound" if it's unticked, then follow these steps:
  • Press Alt+F2 to bring up "Run Application" window.
  • Paste gksu nautilus /usr/share/sounds/ubuntu/stereo into the box, click "Run" to open Nautilus in the right folder.
  • Rename the original file desktop-login.ogg to another such as desktop-login-original.ogg for backup
  • Copy your sound file in ogg format to the above folder and name the file as desktop-login.ogg
  • Log out and log back in to listen to the new login sound.
Posted ImageGo to Applications (or Main Menu) > Accessories > Terminal.
  • Paste sudo apt-get install ttf-mscorefonts-installer into the Terminal (by pressing Ctrl-Shift-V in the Terminal after copying the highlighted code).
  • Go to System > Preferences > Appearance > Fonts.
  • Click each of them, pick a font and size to configure for window title and so on.
Posted Image How about installing more TrueType fonts? With your font files, you can manually add them into the system following the steps below:
  • Press Alt+F2 to bring up "Run Application" window.
  • Paste gksu nautilus /usr/share/fonts/truetype into the box, click "Run" to open Nautilus in the right folder.
  • Create a new sub-folder and copy your files ending with .ttf into the sub-folder.
  • Enter sudo fc-cache -f -v in the Terminal to rebuild the font information.
Posted Image Besides this, you can run an application such as Font-Manager to view, install, remove fonts and so on.
Posted Image If you like the Tahoma font which is not included in the mscorefonts package, you might want to copy the two files tahoma.ttf and tahomabd.ttf from /Windows/Fonts and install them.

[/url]Enable Media Playback
Ubuntu only includes completely free software by default and does not configure proprietary media formats such as mp3 and mp4 'out of the box'. The required codecs however can be easily installed for the default player to playback these files following a few simple steps below.
  • Double click an mp3 file in a folder.
  • Click "Search" button when the the default player shows up with a "Search for suitable plugin?" window.
  • Click the "Install" and "Confirm" buttons to download and install the restricted software.
  • Restart the player after the package files are installed.
You might need to do the same for other restricted media formats such as mp4 too.

Download the screenlet "WaterMark System Information" to a folder.
  • Go to Applications (or Main Menu) > Accessories > Screenlets.
  • Click Install, select Install Screenlet and click OK.
  • Browse to the folder, select the file downloaded and click "Open" to install the screenlet into the Screenlets Manager.
  • Select the screenlet "WaterMark" and click "Launch/Add". (Tips: you can add more than one WaterMark screenlet and set it to display other system information.)
    More screenlets are available for installation from
screenlets.org.

[/url]Install Sun Java Packages
Ubuntu may use OpenJDK by default, but I note that some web services such as ezyZip.com might need the Sun Java Runtime Environment (JRE) to be installed in the system for running the services properly. If you would like to get the proprietary Sun Java packages for your system, you can download and install them from the Canonical Partner Repository with the steps below:
Add More Useful Software
Ubuntu Software Center lets you search and get free software. If an application you need is not included in the Center, you can go to System > Administration > Synaptic Package Manager, type in an application name to search and install a software package from the repositories.
Alternatively, you can get the latest freeware applications by clicking the Install this now button from the GetDeb Repository after the getdeb package is installed with the instructions given.
See also our Best Free Software for Linux.

Auto Mount Drives at System Startup
Ubuntu is capable of reading and writing files stored on Windows formatted partitions, but partitions must be 'mounted' before they can be accessed each time you start up the system. With these steps, you can auto mount the drives or partitions without the need to manually mount them for access.
  • Posted ImageInstall Storage Device Manager if it has not been added.
    • Go to Applications (or Main Menu) > Ubuntu Software Center.
    • Enter pysdm in the Search Box.
    • Select Storage Device Manager, click the "Install" button.
  • Go to System > Administration > Storage Device Manager.
  • Extend the list of sda and select the sda you want to auto mount, click 'OK' to configure.
  • Click the "Assistant" button.
  • Uncheck "Mount file system in read only mode" and keep "The file system is mounted at boot time" checked.
  • Click the "Mount", "Apply" then "Close" button, and restart the system.
In case you wish to remove the auto-mount of a certain drive or partition, you can similarly use Storage Device Manager to do the setting.
Posted Image If you need to identify disk partitions by label, paste ls /dev/disk/by-label -g in Terminal, or to view partition sizes and file systems, enter sudo fdisk -l. Disk Utility mentioned in "Name or Label a Partition" also gives you a glance of device numbers, partition types, sizes and labels.

Manually Mount a USB Drive
A USB storage device plugged into the system usually mounts automatically, but if for some reasons it doesn't automount, it's possible to manually mount it with these steps.
  • Go to Applications (or Main Menu) > Accessories > Terminal.
  • Enter sudo mkdir /media/usb to create a mount point called usb.
  • Enter sudo fdisk -l to look for the USB drive already plugged in, let's say the drive you want to mount is /dev/sdb1.
  • Enter sudo mount -t vfat /dev/sdb1 /media/usb -o uid=1000,gid=100,utf8,dmask=027,fmask=137 to mount a USB drive formatted with FAT16 or FAT32 system. OR:
    Enter sudo mount -t ntfs-3g /dev/sdb1 /media/usb to mount a USB drive formatted with NTFS system.
To unmount it, just enter sudo umount /media/usb in the Terminal.

Posted ImageGo to System > Administration > Disk Utility
  • Select the item Hard Disk.
  • In the Volumes section, click a partition you want to label.
  • Click "Edit Filesystem Label" (See Posted Image below)
  • In the Label box, enter a name, e.g. Data-Disk, and click Apply.
    The file manager should now show the partition label, such as Data-Disk, instead of xx GB Filesystem.
Posted Image If the option for "Edit Filesystem Label" is not shown, click "Unmount Volume" before hand. In case you can't unmount a volume, try Storage Device Manager to unmount it. See Auto Mount Drives at System Startup.
Posted Image This tip is for naming a partition using Disk Utility, use other advanced features such as format, edit or delete partition with caution as they can delete data on your disk.

[/url]Auto Start Up an Application
In Windows, you can place a program shortcut in a startup folder for running a program automatically when the system starts. In Ubuntu, you can do the same in this way: The above program will then be listed in additional startup programs. Check if the program runs automatically by logging out and back to the system.

Synchronize System Time and Date
Ubuntu allows you to manually set your system time and date, but you can also activate the Network Time Protocol (NTP) support in the system to automatically sync them with the Internet time servers as follows.
  • Posted ImageGo to System > Preferences > Time & Date.
  • Click the lock icon to change settings.
  • Select your time zone from the list.
  • If the configuration type is "manual", change it to auto synchronize with the Internet server. (In Ubuntu 11.04, the default is set to auto.)
  • Click "Install NTP support" when prompted with a dialog box. (Applicable to Ubuntu 10.10 & 10.04)
  • Tick the time server(s) nearer to you. (Applicable to Ubuntu 10.10 & 10.04)
  • Click the Close button.
When you next boot up the system with the Internet connection, your system clock will then be synced with the Internet time servers.

Posted ImageGo to Applications (or Main Menu) > Accessories > Terminal.
  • Enter sudo apt-get install startupmanager (OR copy the highlighted code and, in the Terminal, press Ctrl-Shift-V to paste it).
  • Enter password used upon installation of Ubuntu.
  • Go to System > Administration > StartUp-Manager
  • Enter the same password to perform pre-configuration tasks, which include searching bootloaders to operating systems.
  • Select the default operating system from the pull-down menu, click "Close" to perform post-configuration tasks.
    With StartUp-Manager, you can also do others such as manage Usplash themes, adjust bootloader menu resolution or set timeout in seconds. Avoid changing timeout to 0 seconds if you need to select a system to boot up from a multi-boot menu.

[/url]Remove Old Linux Kernel, Clean Up Boot Menu
Each time when Ubuntu updates to a new Linux kernel, the old one is left behind and the boot menu gets longer. If your new Linux kernel works well, it's safe to remove the old one and clean up the boot menu. Do take these steps carefully as incorrect removal of the items can make your system unbootable.
  • Go to Applications (or Main Menu) > Accessories > Terminal.
  • Enter uname -r to print the Linux kernel version you're running (e.g. 2.6.32-22-generic).
  • Go to System > Administration > Synaptic Package Manager.
  • Click Status from the left panel and select Installed.
  • Enter the main version number (e.g. 2.6.32) in the Search box.
  • Right-click the items with smaller sub version number (e.g. 2.6.32-21) for older Linux kernel and select Mark for Complete Removal. The files for the older version to remove may include linux-headers-2.6.32-21, linux-headers-2.6.32-21-generic and linux-image-2.6.32-21-generic.
  • Click Apply from the top panel.
  • Click Apply again from the pop-up window to confirm removal of the marked packages. The boot menu will be cleaned up automatically after the removal is confirmed.
Posted Image Try also Grub Customizer which can be used to hide items from the boot menu. Just install the program by entering the following in the Terminal, then run the program, untick the items you want to hide and click 'Save'.
Auto Shutdown the System
A simple command can be entered in the Terminal to schedule a time for the system to shut down.
  • Go to Applications (or Main Menu) > Accessories > Terminal.
  • Enter sudo shutdown -h +m (replace m with the number of minutes, e.g. +60).
    OR: enter sudo shutdown -h hh:mm (replace hh:mm with the time on the 24hr clock, e.g. 23:15).
  • Enter password and minimize the Terminal window.
The system will then shut down within the minutes or at the time specified. To cancel a scheduled time, enter sudo shutdown -c in the Terminal.
Posted Image Alternatively, you might want to download and install GShutdown, which is a GUI program for scheduling a time to shutdown the system.
Note
<a name="ccsm">CompizConfig Settings Manager (ccsm), if not added yet, can be installed this way:
  • Click "Applications" (or "Main Menu"), select "Ubuntu Software Center".
  • Type ccsm into the Search box.
  • Select "Advanced Desktop Effects Settings (ccsm)" and click the "Install" button.
  • Enter the password used upon installation of Ubuntu.
Related Links
Posted Image

#2 rokytnji Re: Tips and Tricks for Ubuntu after Installation

    Linux Friganeer

  • 2,322 posts
  • Joined: February 27, 2008
  • 101 topics
  • Age: 58
  • Skin: IPBoard wide
  • Local time: 05:33 AM
  • Zodiac:Aquarius
  • Gender:Male
  • Location:Pecos, Texas
  • Interests:Motorcycles,Vodka,
    Mead,Cossacks,Runs,Linux.
    Own a small Bike shop. Have 6 running Harley Davidsons for personal use. Have a 1980 XLS that'll boot&scoot.
  • OS:other
  • Country:
Offline
  • Time Online: 4d 20h 52m 2s

Posted 22 October 2011 - 09:21 AM

Quote



Ok for Gnome 2. Gnome 3 is a different matter. Ubuntu dropped Gnome 2 since 11 came out.

http://www.howtoforg...-oneiric-ocelot

when Ubuntu 12.04LTS comes out, they are going to extend the support life cycle on it compared to older Ubuntu Desktop LTS versions to match the server LTS release versions.

http://www.h-online....rt-1365034.html





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users


This topic has been visited by 8 user(s)