<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.linuxquestions.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Thasuresh</id>
	<title>LQWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.linuxquestions.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Thasuresh"/>
	<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/wiki/Special:Contributions/Thasuresh"/>
	<updated>2026-04-15T11:58:24Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55291</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55291"/>
		<updated>2011-01-15T06:42:33Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= Fun with Eject Command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
 $ [[eject]] -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
# If you have a toddler and has discovered the cdrom button&lt;br /&gt;
# If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
 $ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the [http://man-wiki.net/index.php/1:eject eject's man page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Forget the 'cd' command ! =&lt;br /&gt;
Using the ''autocd'' setting you can change into any [[directory]] without the use of &amp;lt;tt&amp;gt;cd&amp;lt;/tt&amp;gt; [[command]]. To set it, type&lt;br /&gt;
 $ shopt -s autocd&lt;br /&gt;
Here is how changing directories works now:&lt;br /&gt;
 thasu@tha-admin-da ~ $ /var/log/cups/&lt;br /&gt;
&lt;br /&gt;
To reside the above option as a permanent one, edit the .bashrc [[file]]&lt;br /&gt;
and add this line &amp;quot;shopt -s autocd&amp;quot; into it.&lt;br /&gt;
&lt;br /&gt;
Enjoy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= lshw-The Hardware Lister =&lt;br /&gt;
&lt;br /&gt;
lshw (Hardware Lister) is a small tool to provide detailed information on the [[hardware]] [[configuration]] of the machine. It can report exact memory configuration, firmware version, mainboard configuration, [[CPU]] version and speed, cache configuration, bus speed, etc.&lt;br /&gt;
&lt;br /&gt;
In Ubuntu 10.10, It works without extra package.&lt;br /&gt;
&lt;br /&gt;
 $ sudo lshw&lt;br /&gt;
&lt;br /&gt;
If you use [[Yum]] (Red Hat, Fedora, CentOS, etc), run the following&lt;br /&gt;
command in [[terminal]]:&lt;br /&gt;
&lt;br /&gt;
 $ yum install lshw&lt;br /&gt;
&lt;br /&gt;
 $ lshw&lt;br /&gt;
&lt;br /&gt;
Shorter Output:&lt;br /&gt;
&lt;br /&gt;
If you just quickly want to quickly find the chipset version of a&lt;br /&gt;
piece of hardware is, you can run the following to provide a very&lt;br /&gt;
short output that should give you what you need:&lt;br /&gt;
&lt;br /&gt;
 $ sudo lshw -short&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Linux Terminal Short Cuts =&lt;br /&gt;
&lt;br /&gt;
Get lightning fast and clever at the command line&lt;br /&gt;
&lt;br /&gt;
You can use keyboard shortcuts and other command line tricks to make&lt;br /&gt;
entering commands easier and faster. You might already know about the&lt;br /&gt;
‘tab’ key which completes partial commands and even file and directory&lt;br /&gt;
names.&lt;br /&gt;
&lt;br /&gt;
Here are some other keyboard shortcuts you can use within terminal:&lt;br /&gt;
&lt;br /&gt;
  Ctrl-a    Move to the start of the line.&lt;br /&gt;
  Ctrl-e    Move to the end of the line.&lt;br /&gt;
  Alt-] x   Moves the cursor forward to the next occurrence of x.&lt;br /&gt;
  Alt-Ctrl-] x     Moves the cursor backwards to the previous occurrence of x.&lt;br /&gt;
  Ctrl-u    Delete from the cursor to the beginning of the line.&lt;br /&gt;
  Ctrl-k    Delete from the cursor to the end of the line.&lt;br /&gt;
  Ctrl-y    Pastes text from the clipboard.&lt;br /&gt;
  Ctrl-l    Clear the screen leaving the current line at the top of the screen.&lt;br /&gt;
  Ctrl-x Ctrl-u    Undo the last changes. Ctrl-_&lt;br /&gt;
  Alt-r     Undo all changes to the line.&lt;br /&gt;
  Alt-      Ctrl-eExpand command line.&lt;br /&gt;
  Ctrl-r    Incremental reverse search of history.&lt;br /&gt;
  Alt-p    Non-incremental reverse search of history.&lt;br /&gt;
  !!         Execute last command in history&lt;br /&gt;
  !abc     Execute last command in history beginning with abc&lt;br /&gt;
  !n        Execute nth command in history&lt;br /&gt;
  ^abc^xyz         Replace first occurrence of abc with xyz in last command and execute it&lt;br /&gt;
  Ctrl-t which swaps the last 2 characters before the cursor.&lt;br /&gt;
  Alt-d  delete a word forward from cursor&lt;br /&gt;
  Ctrl-w   delete a word backword from cursor&lt;br /&gt;
&lt;br /&gt;
  Cheers. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Difference between “cal” and “calendar” command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Many of us know abt “cal” command. It displays the current month calendar.&lt;br /&gt;
&lt;br /&gt;
But ‘calendar’ displays the history of events for current day and next day. ;)&lt;br /&gt;
&lt;br /&gt;
Ex for “cal” :&lt;br /&gt;
&lt;br /&gt;
  $ cal&lt;br /&gt;
 January 2011&lt;br /&gt;
 Su Mo Tu We Th Fr Sa&lt;br /&gt;
 1&lt;br /&gt;
 2 3 4 5 6 7 8&lt;br /&gt;
 9 10 11 12 13 14 15&lt;br /&gt;
 16 17 18 19 20 21 22&lt;br /&gt;
 23 24 25 26 27 28 29&lt;br /&gt;
 30 31&lt;br /&gt;
&lt;br /&gt;
Ex for “calendar ” :&lt;br /&gt;
&lt;br /&gt;
  $ calendar&lt;br /&gt;
 Jan 13     Horatio Alger born, 1834&lt;br /&gt;
 Jan 13     Sophie Tucker born, 1884&lt;br /&gt;
 Jan 13     Wilhelm Wien born, 1864, Nobel prize for blackbody radiation laws&lt;br /&gt;
 Jan 13     National Liberation Day in Togo&lt;br /&gt;
 .&lt;br /&gt;
 .&lt;br /&gt;
 . &lt;br /&gt;
 Jan 14 Albert Schweitzer born, 1875&lt;br /&gt;
 Jan 14 Julian Calendar New Year’s Day&lt;br /&gt;
 .&lt;br /&gt;
 .&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55027</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55027"/>
		<updated>2010-12-17T17:11:22Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= Fun with Eject Command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
 $ [[eject]] -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
# If you have a toddler and has discovered the cdrom button&lt;br /&gt;
# If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
 $ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the [http://man-wiki.net/index.php/1:eject eject's man page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Forget the 'cd' command ! =&lt;br /&gt;
Using the ''autocd'' setting you can change into any [[directory]] without the use of &amp;lt;tt&amp;gt;cd&amp;lt;/tt&amp;gt; [[command]]. To set it, type&lt;br /&gt;
 $ shopt -s autocd&lt;br /&gt;
Here is how changing directories works now:&lt;br /&gt;
 thasu@tha-admin-da ~ $ /var/log/cups/&lt;br /&gt;
&lt;br /&gt;
To reside the above option as a permanent one, edit the .bashrc [[file]]&lt;br /&gt;
and add this line &amp;quot;shopt -s autocd&amp;quot; into it.&lt;br /&gt;
&lt;br /&gt;
Enjoy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= lshw-The Hardware Lister =&lt;br /&gt;
&lt;br /&gt;
lshw (Hardware Lister) is a small tool to provide detailed information on the [[hardware]] [[configuration]] of the machine. It can report exact memory configuration, firmware version, mainboard configuration, [[CPU]] version and speed, cache configuration, bus speed, etc.&lt;br /&gt;
&lt;br /&gt;
In Ubuntu 10.10, It works without extra package.&lt;br /&gt;
&lt;br /&gt;
 $ sudo lshw&lt;br /&gt;
&lt;br /&gt;
If you use [[Yum]] (Red Hat, Fedora, CentOS, etc), run the following&lt;br /&gt;
command in [[terminal]]:&lt;br /&gt;
&lt;br /&gt;
 $ yum install lshw&lt;br /&gt;
&lt;br /&gt;
 $ lshw&lt;br /&gt;
&lt;br /&gt;
Shorter Output:&lt;br /&gt;
&lt;br /&gt;
If you just quickly want to quickly find the chipset version of a&lt;br /&gt;
piece of hardware is, you can run the following to provide a very&lt;br /&gt;
short output that should give you what you need:&lt;br /&gt;
&lt;br /&gt;
 $ sudo lshw -short&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Linux Terminal Short Cuts =&lt;br /&gt;
&lt;br /&gt;
Get lightning fast and clever at the command line&lt;br /&gt;
&lt;br /&gt;
You can use keyboard shortcuts and other command line tricks to make&lt;br /&gt;
entering commands easier and faster. You might already know about the&lt;br /&gt;
‘tab’ key which completes partial commands and even file and directory&lt;br /&gt;
names.&lt;br /&gt;
&lt;br /&gt;
Here are some other keyboard shortcuts you can use within terminal:&lt;br /&gt;
&lt;br /&gt;
  Ctrl-a    Move to the start of the line.&lt;br /&gt;
  Ctrl-e    Move to the end of the line.&lt;br /&gt;
  Alt-] x   Moves the cursor forward to the next occurrence of x.&lt;br /&gt;
  Alt-Ctrl-] x     Moves the cursor backwards to the previous occurrence of x.&lt;br /&gt;
  Ctrl-u    Delete from the cursor to the beginning of the line.&lt;br /&gt;
  Ctrl-k    Delete from the cursor to the end of the line.&lt;br /&gt;
  Ctrl-y    Pastes text from the clipboard.&lt;br /&gt;
  Ctrl-l    Clear the screen leaving the current line at the top of the screen.&lt;br /&gt;
  Ctrl-x Ctrl-u    Undo the last changes. Ctrl-_&lt;br /&gt;
  Alt-r     Undo all changes to the line.&lt;br /&gt;
  Alt-      Ctrl-eExpand command line.&lt;br /&gt;
  Ctrl-r    Incremental reverse search of history.&lt;br /&gt;
  Alt-p    Non-incremental reverse search of history.&lt;br /&gt;
  !!         Execute last command in history&lt;br /&gt;
  !abc     Execute last command in history beginning with abc&lt;br /&gt;
  !n        Execute nth command in history&lt;br /&gt;
  ^abc^xyz         Replace first occurrence of abc with xyz in last command and execute it&lt;br /&gt;
  Ctrl-t which swaps the last 2 characters before the cursor.&lt;br /&gt;
  Alt-d  delete a word forward from cursor&lt;br /&gt;
  Ctrl-w   delete a word backword from cursor&lt;br /&gt;
&lt;br /&gt;
  Cheers. :)&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55017</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55017"/>
		<updated>2010-12-16T10:01:47Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /*The Hardware Lister */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= Fun with Eject Command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
 $ [[eject]] -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
# If you have a toddler and has discovered the cdrom button&lt;br /&gt;
# If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
 $ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the [http://man-wiki.net/index.php/1:eject eject's man page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Forget the 'cd' command ! =&lt;br /&gt;
Using the ''autocd'' setting you can change into any [[directory]] without the use of &amp;lt;tt&amp;gt;cd&amp;lt;/tt&amp;gt; [[command]]. To set it, type&lt;br /&gt;
 $ shopt -s autocd&lt;br /&gt;
Here is how changing directories works now:&lt;br /&gt;
 thasu@tha-admin-da ~ $ /var/log/cups/&lt;br /&gt;
&lt;br /&gt;
To reside the above option as a permanent one, edit the .bashrc [[file]]&lt;br /&gt;
and add this line &amp;quot;shopt -s autocd&amp;quot; into it.&lt;br /&gt;
&lt;br /&gt;
Enjoy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= lshw-The Hardware Lister =&lt;br /&gt;
&lt;br /&gt;
lshw (Hardware Lister) is a small tool to provide detailed information on the hardware configuration of the machine. It can report exact memory configuration, firmware version, mainboard configuration, CPU version and speed, cache configuration, bus speed, etc.&lt;br /&gt;
&lt;br /&gt;
In Ubuntu 10.10, It's work without extra package.&lt;br /&gt;
&lt;br /&gt;
 $ sudo lshw&lt;br /&gt;
&lt;br /&gt;
If you use Yum (Red Hat, Fedora, CentOS, etc), run the following&lt;br /&gt;
command in terminal:&lt;br /&gt;
&lt;br /&gt;
 $ yum install lshw&lt;br /&gt;
&lt;br /&gt;
 $ lshw&lt;br /&gt;
&lt;br /&gt;
Shorter Output:&lt;br /&gt;
&lt;br /&gt;
If you just quickly want to quickly find the chipset version of a&lt;br /&gt;
piece of hardware is, you can run the following to provide a very&lt;br /&gt;
short output that should give you what you need:&lt;br /&gt;
&lt;br /&gt;
 $ sudo lshw -short&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55007</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55007"/>
		<updated>2010-12-15T17:40:21Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /* Forget the 'cd' command ! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= Fun with Eject Command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
 $ [[eject]] -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
# If you have a toddler and has discovered the cdrom button&lt;br /&gt;
# If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
 $ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the [http://man-wiki.net/index.php/1:eject eject's man page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Forget the 'cd' command ! =&lt;br /&gt;
&lt;br /&gt;
$ shopt -s autocd&lt;br /&gt;
&lt;br /&gt;
It's a Auto Directory changing command. We can change into any&lt;br /&gt;
directory without the use of 'cd' command.So we can utilize the time&lt;br /&gt;
of typing &amp;quot;cd&amp;quot; command.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
thasu@tha-admin-da ~ $ /var/log/cups/&lt;br /&gt;
&lt;br /&gt;
To reside the above option as a permanent one, edit the .bashrc file&lt;br /&gt;
and add this line &amp;quot;shopt -s autocd&amp;quot; into it.&lt;br /&gt;
&lt;br /&gt;
Enjoy&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55006</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55006"/>
		<updated>2010-12-15T17:39:55Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /* Forget the 'cd' command ! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= Fun with Eject Command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
 $ [[eject]] -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
# If you have a toddler and has discovered the cdrom button&lt;br /&gt;
# If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
 $ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the [http://man-wiki.net/index.php/1:eject eject's man page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Forget the 'cd' command ! =&lt;br /&gt;
&lt;br /&gt;
$ shopt -s autocd&lt;br /&gt;
&lt;br /&gt;
It's a Auto Directory changing command. We can change into any&lt;br /&gt;
directory without the use of 'cd' command.So we can utilize the time&lt;br /&gt;
of typing &amp;quot;cd&amp;quot; command.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
thasu@tha-admin-da ~ $ /var/log/cups/&lt;br /&gt;
cd /var/log/cups/&lt;br /&gt;
thasu@tha-admin-da /var/log/cups $&lt;br /&gt;
&lt;br /&gt;
To reside the above option as a permanent one, edit the .bashrc file&lt;br /&gt;
and add this line &amp;quot;shopt -s autocd&amp;quot; into it.&lt;br /&gt;
&lt;br /&gt;
Enjoy&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55005</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=55005"/>
		<updated>2010-12-15T17:39:22Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: Forget the 'cd' command&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= Fun with Eject Command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
 $ [[eject]] -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
# If you have a toddler and has discovered the cdrom button&lt;br /&gt;
# If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
 $ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the [http://man-wiki.net/index.php/1:eject eject's man page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Forget the 'cd' command ! =&lt;br /&gt;
&lt;br /&gt;
$ shopt -s autocd&lt;br /&gt;
&lt;br /&gt;
It's a Auto Directory changing command. We can change into any&lt;br /&gt;
directory without the use of 'cd' command.So we can utilize the time&lt;br /&gt;
of typing &amp;quot;cd&amp;quot; command.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
thasu@tha-admin-da ~ $ shopt -s autocd&lt;br /&gt;
thasu@tha-admin-da ~ $ Desktop/&lt;br /&gt;
cd Desktop/&lt;br /&gt;
thasu@tha-admin-da ~/Desktop $ cd&lt;br /&gt;
thasu@tha-admin-da ~ $ /var/log/cups/&lt;br /&gt;
cd /var/log/cups/&lt;br /&gt;
thasu@tha-admin-da /var/log/cups $&lt;br /&gt;
&lt;br /&gt;
To reside the above option as a permanent one, edit the .bashrc file&lt;br /&gt;
and add this line &amp;quot;shopt -s autocd&amp;quot; into it.&lt;br /&gt;
&lt;br /&gt;
Enjoy&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54962</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54962"/>
		<updated>2010-12-10T15:06:30Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /* Fun with Eject Command */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= Fun with Eject Command =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
&lt;br /&gt;
$ eject -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
1: If you have a toddler and has discovered the cdrom button&lt;br /&gt;
&lt;br /&gt;
2: If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
&lt;br /&gt;
$ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the “eject” man page.&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54961</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54961"/>
		<updated>2010-12-10T15:02:05Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /* Fun with Eject Command */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= [[Fun with Eject Command]] =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
&lt;br /&gt;
$ eject -i 1&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
1: If you have a toddler and has discovered the cdrom button&lt;br /&gt;
&lt;br /&gt;
2: If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
&lt;br /&gt;
$ eject -i 0&lt;br /&gt;
&lt;br /&gt;
For more info see the “eject” man page.&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54960</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54960"/>
		<updated>2010-12-10T14:45:32Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /* Fun with Eject Command */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= [[Fun with Eject Command]] =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
&lt;br /&gt;
[[$ eject]] [[-i]] [[1]]&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
1: If you have a toddler and has discovered the cdrom button&lt;br /&gt;
&lt;br /&gt;
2: If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
&lt;br /&gt;
[[$ eject]] [[-i]] [[0]]&lt;br /&gt;
&lt;br /&gt;
For more info see the “eject” man page.&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54959</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54959"/>
		<updated>2010-12-10T14:43:49Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /* Fun with Eject Command */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= [[Fun with Eject Command]] =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
&lt;br /&gt;
[[$ eject]] [[-i]] [[1]]&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
1: If you have a toddler and has discovered the cdrom button&lt;br /&gt;
&lt;br /&gt;
2: If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
&lt;br /&gt;
[[$ eject]] [[-i]] [[0]]&lt;br /&gt;
&lt;br /&gt;
For more info see the “eject” man page.&lt;br /&gt;
&lt;br /&gt;
;)&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54958</id>
		<title>Ubuntu tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Ubuntu_tips_%26_tricks&amp;diff=54958"/>
		<updated>2010-12-10T14:40:29Z</updated>

		<summary type="html">&lt;p&gt;Thasuresh: /* Lock the hardware eject button of the cdrom */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ubuntu is a [[Debian]]-based [[distribution]]. A number of Ubuntu flavors are available in addition to the gnome-based default.  These include: kubuntu (kde-based), xubuntu (XFCE4-based), edubuntu (aimed at classroom use), and a number of others.&lt;br /&gt;
&lt;br /&gt;
=The unofficial Ubuntu Guide=&lt;br /&gt;
&lt;br /&gt;
[http://ubuntuguide.org http://ubuntuguide.org]&lt;br /&gt;
&lt;br /&gt;
There is a wealth of information here for the use, administration, and maintenance of Ubuntu.&lt;br /&gt;
&lt;br /&gt;
= [[Installing software]] =&lt;br /&gt;
To install software, use the [http://en.wikipedia.org/wiki/GUI Gui] [http://en.wikipedia.org/wiki/Synaptic_Package_Manager Synaptic] or the [[cli]] apt-get. Example:&lt;br /&gt;
 [[apt-get]] [[install]] [[firefox]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tips]]&lt;br /&gt;
&lt;br /&gt;
= [[Fun with Eject Command]] =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lock the hardware eject button of the cdrom&lt;br /&gt;
&lt;br /&gt;
[[$ eject]] [[-i]] [[1]]&lt;br /&gt;
&lt;br /&gt;
This command will lock the hardware eject button of your cdrom drive. Some uses are:&lt;br /&gt;
&lt;br /&gt;
1: If you have a toddler and has discovered the cdrom button&lt;br /&gt;
&lt;br /&gt;
2: If you are carrying a laptop in a bag or case and don’t want it to eject if the button is inadvertently pressed.&lt;br /&gt;
&lt;br /&gt;
To unlock the button use:&lt;br /&gt;
&lt;br /&gt;
[[$ eject]] [[-i]] [[0]]&lt;br /&gt;
&lt;br /&gt;
For more info see the “eject” man page.&lt;br /&gt;
&lt;br /&gt;
;-)&lt;/div&gt;</summary>
		<author><name>Thasuresh</name></author>
	</entry>
</feed>