Linux.com

Feature: Linux

Ten tips for new Ubuntu users

By Joe 'Zonker' Brockmeier on June 21, 2006 (8:00:00 AM)

Share    Print    Comments   

Ubuntu has become the most popular Linux distribution for new Linux users. It's easy to install, easy to use, and usually "just works." But moving to a different operating system can be confusing, no matter how well-designed it is. Here's a list of tips that might save you some time while you're getting used to Ubuntu.

1. Getting multimedia to work

The default Ubuntu install contains free software only, which means that it doesn't support some popular multimedia formats straight out of the box. This is inconvenient, but the Ubuntu folks have good reasons for not shipping with support for MP3, DVDs, and so forth -- including that software could cause them some legal headaches, or incur some serious fees.

Fortunately, as a user, you don't need to worry about fees (though some of the packages may not be legal due to patent restrictions or restrictions on circumventing copy protection, depending on where you live). The Ubuntu wiki has a page on restricted formats that explains how to get the packages you need. However, if you run Ubuntu on AMD64 or PowerPC hardware, you'll still be out in the cold for some of the packages, since some multimedia formats depend on proprietary software that's not available for those hardware platforms.

2. Changing the defaults

Ubuntu comes with a number of defaults that may or may not be to your liking. For example, the default editor is set to Nano, which isn't optimal if you're used to Vim.

The easy way to change this is to use the update-alternatives program, which maintains the symbolic links under /etc/alternatives that determine the default programs for FTP, system editor, rsh, Telnet, window manager, and so forth. Look under the /etc/alternatives directory to see what programs are managed.

To change the default editor, run sudo update-alternatives --config editor. You'll see a dialog like this:

There are 3 alternatives which provide `editor'.

  Selection    Alternative
  -----------------------------------------------
        1        /usr/bin/vim
	2        /bin/ed
  *+    3        /bin/nano

Press enter to keep the default[*], or type selection number:

Just type 1 to switch to Vim. Note that on my system, I don't have Emacs or many other editors installed; if I did, the utility would offer the other editors as choices.

3. How to install packages

Most of the application software you'll want to add to your system will be available through the Ubuntu repositories using Synaptic, Adept, or another package management tool. What if you want to install something like Opera that is available as a package for Ubuntu, but isn't in the repositories?

In that case, download the application's Debian package (.deb) and right-click on the file. At the top of the context menu, you should see an option to open the package with the GDebi package installer. GDebi will provide a description of the package, what files are included, and other details about the package. The package installer also has a Install Package button; just click that and it will install the package. Note that the package installer also checks to verify whether it can install the package -- if it has dependencies that can't be satisfied, GDebi will give an error and refuse to install it.

If you prefer to install packages at the command line, just use sudo dpkg -i packagename.deb.

4. Sudo and gksudo

If you've used Linux for any amount of time, you might be used to running programs as root directly whenever you need to install packages, modify your system's configuration, and so on. Ubuntu employs a different model, however. The Ubuntu installer doesn't set up a root user -- a root account still exists, but it's set with a random password. Users are meant to do administration tasks using sudo and gksudo.

You probably already know how to use sudo -- just run sudo commandname . But what about running GUI apps that you want to run as root (or another user)? Simple -- use gksudo instead of sudo. For instance, if you'd like to run Ethereal as root, just pop open a run dialog box (Alt-F2) and use gksudo ethereal.

By the way, if you really must do work as root, you can use sudo su -, which will log you in as root. If you really, really want to have a root password that you know, so that you can log in as root directly (i.e., without using sudo), then run passwd when logged in as root, and set the password to whatever you want. I'd recommend using the pwgen package to create a secure password not only for root but for all your user accounts.

5. Add users to sudo

When you set up Ubuntu, it automatically adds the first user to the sudo group, allowing that user to make changes as the super user (root) by typing in their password. However, it doesn't automatically add additional users to the sudo group. If you want to give someone else superuser privileges on your shared system, you'll have to give them sudo access.

To add new users to sudo, the easiest way is to use the usermod command. Run sudo usermod -G admin username . That's all there is to it. However, if the user is already a member of other groups, you'll want to add the -a option, like so: sudo usermod -a -G admin username .

If you prefer the GUI way of doing things, go to System -> Administration -> Users and Groups. Select the user you want to add to sudo, and click Properties. Under the User privileges tab, check the box that says "Executing system administration tasks" and you'll be all set.

6. Adding a new desktop

Many users aren't sure what packages to add in order to run KDE or Xfce window managers on a stock Ubuntu system -- or what packages to add to run GNOME on Kubuntu or Xubuntu. You could add all of the necessary packages one at a time, but there's a much easier way to go about it.

To install all of the packages that come with one of the flavors of Ubuntu, such as Kubuntu, run apt-get install kubuntu-desktop (or edubuntu-desktop, xubuntu-desktop, or xubuntu-desktop).

If the GUI is more your style, the *desktop packages can be installed using Adept, Synaptic, or another package manager.

7. How to reconfigure X.org

Most of the time, X.org -- that's the software that drives your video card and provides the foundation for the GUI, whether you're running GNOME, KDE, Xfce, or another window manager -- "just works" when you install Ubuntu. In fact, I'd wager that most Ubuntu users never even have to think about their video settings.

But, sometimes you need to reconfigure X.org because Ubuntu hasn't detected your video card and monitor properly, or maybe you've just purchased a shiny new video card and need to get it working with Ubuntu. Whatever the reason, it's good to know how to reconfigure X without having to edit your /etc/X11/xorg.conf by hand.

To run through the configuration, use dpkg-reconfigure xserver-xorg at the console or in a terminal window. Then you'll have a chance to specify your monitor and video card, the resolutions and color depths you want to run the server at, and so forth.

Since every setup is different, it's hard to give concrete advice for configuring X, but it's generally OK to accept the configuration defaults. Also, you'll be given a choice between Advanced, Medium, and Simple methods for giving your monitor's specifications. As a rule, it's probably best to go with Simple unless you really know what you're doing, or the Simple method doesn't work for you.

8. Log in automagically

By default, when you boot up the computer, Ubuntu will give you a login screen before you get to your X session. From a security perspective, this is a good idea, particularly in multi-user environments or in any situation where other people have physical access to your computer. Still, many users are used to just being logged in automatically, and don't want to fuss with logging in each time they reboot their desktop.

To set this in Ubuntu, go to System -> Administration -> Login Window. You'll need to provide your password, then you'll get the Login Window Preferences window with five tabs. Choose the Security tab and click Enable Automatic Login. If you have more than one regular user, make sure to specify which user should be logged in automatically.

Again, and I can't stress this enough, this is only a good idea for home computers where only one person has access to the computer. I don't recommend this for work computers or laptop/notebook computers, when someone else might have access to the machine.

9. Compiling from source

Ubuntu's package repository is huge, particularly when you factor in packages in the Universe and Multiverse repositories. However, many users find themselves needing to install packages from source, either because they want to use a newer package than is available in the repository, or they want to try something that's not in the Ubuntu repository at all.

If you want to install packages from source, you can use a few shortcuts to make life easier. First, you'll probably want to get the build-essential meta-package if you haven't installed any developer tools. Run sudo apt-get install build-essential; it will grab GCC, the Linux kernel headers, GNU Make, and some other packages that you'll probably need.

Next, if you're going to compile a package such as Gaim because a new version is out, you might be able to satisfy the new version's dependencies with the old version's dependencies. To do this, grab the package's build dependencies with sudo apt-get build-dep packagename . That will grab all of the development packages you need to build the package that's currently available in Ubuntu, and will probably satisfy dependencies for the new version you're compiling.

Finally, don't make install when you compile from source -- use CheckInstall instead. CheckInstall will create a Debian package and install it for you, so you can remove or upgrade the software more easily later on.

Grab CheckInstall with apt-get install checkinstall. After you've run ./configure ; make, just run sudo checkinstall and answer a few simple questions. Note that if you compile packages on AMD64, CheckInstall will select X86_64 as the architecture rather than amd64 -- which will cause the package install to fail, since Ubuntu expects amd64 as the architecture rather than X86_64.

By the way, the packages created by CheckInstall also make it easier to deploy the same package on several machines, if you happen to have several systems running Ubuntu. See Joe Barr's excellent CLI Magic feature on CheckInstall too.

10. A new kernel

Ubuntu will install a 386 kernel for x86 machines, which probably isn't what you'd want if you've got a Pentium II or better CPU. The 386 kernel is compiled to work with just about any x86 CPU, but extensions that appear in later CPUs can give your system a boost, if they're taken advantage of. To replace the kernel, open Synaptic or Adept and search for linux-image. You'll see several choices. Pick the one that best suits your CPU -- probably the linux-image-686 package for Pentium II and later CPUs, and linux-image-k7 for later AMD processors. Note that if you're using the AMD64 line (or Intel's x86-64 CPUs) you should be using the amd64 images.

Of course, once you install the new kernel, you'll need to reboot. Another benefit to the 686 kernels is that they have SMP support, which is a bonus for multi-core and Intel HyperThread CPUs.

If none of the tips cover questions that you have about Ubuntu, try checking out the Ubuntu wiki, forums, and mailing lists. As a rule, the Ubuntu users are a helpful lot, and you'll usually be able to find someone who's run into the same situation that you have questions about.

Share    Print    Comments   

Comments

on Ten tips for new Ubuntu users

Note: Comments are owned by the poster. We are not responsible for their content.

Tip 11

Posted by: Anonymous Coward on June 22, 2006 01:00 AM
Make the "switch" to Linux even easier: Switch to Kubunto.<nobr> <wbr></nobr>;-)

#

Remind me again

Posted by: Anonymous Coward on June 22, 2006 02:39 AM
Why I need to support proprietary software?

Isn't the GNU/Linux movement a constant fight to STOP proprietary software, not to support it? That is what I initially believed. I'm certain I am not wrong in not accepting proprietary software.

--Dylan Knight Rogers
www.dylanknightrogers.com

#

what are you talking about?

Posted by: Anonymous Coward on June 22, 2006 03:38 AM
Who told you you need to support proprietary software? Are the voices are bothering you again?

#

Re:what are you talking about?

Posted by: Anonymous Coward on June 22, 2006 09:02 AM
Maybe it was the part where the author tells people to install a bunch of proprietary software with Automatix.

Why tell people how to install Adobe Acrobat Reader when there are so many open source alternatives that are better?

If you use proprietary software, you are supporting it, whether or not you pay for it.

#

Re:what are you talking about?

Posted by: Anonymous Coward on June 22, 2006 09:49 AM
>Why tell people how to install Adobe Acrobat Reader when there are so many open source alternatives that are better?

Ever tried to fill out a PDF-based form in xpdf?

#

Re:Remind me again

Posted by: Anonymous Coward on June 22, 2006 08:34 AM
Because you're probably running on proprietary hardware. An Intel 586 processor has more abilities than a 386. If you're running a kernel compiled for a 386, you're missing out on those "proprietary" commands only available on the newer hardware. If your hatred of proprietary software is that strong, go ahead and run all the generic drivers you want. Linux will support you and you'll be just fine. And you're certainly not "wrong." But you'll need to accept that your computer will run slower than it otherwise could.

#

Re:Remind me again

Posted by: Anonymous Coward on June 22, 2006 08:58 AM
"go ahead and run all the generic drivers you want. Linux will support you and you'll be just fine. And you're certainly not "wrong." But you'll need to accept that your computer will run slower than it otherwise could."

That is BS. There is only one area where proprietary drivers might be faster and that is for 3D video acceleration. Just about everything else works better and is more stable with the open source drivers.

The reason is obvious. The open source drivers can be fixed and improved. The proprietary drivers cannot.

#

Re:Remind me again

Posted by: Anonymous Coward on June 23, 2006 05:15 PM
Heh yeah. You really haven't noticed a dramatic speed increase when jumping from a 386 kernel??

#

Re:Remind me again

Posted by: Anonymous Coward on August 24, 2006 04:02 AM
None of the kernels (686, etc.) are proprietary... so what are you talking about?

#

Re:Remind me again

Posted by: Anonymous Coward on August 23, 2006 03:53 PM
You are a fuck rag dude

#

Re:Remind me again

Posted by: Anonymous Coward on August 24, 2006 04:58 PM
Yeah, Mr. Fullname pompous-ass... Linux is a pinko crusade, not an OS.

duh.

#

Re: Remind me again

Posted by: Anonymous [ip: 81.0.198.173] on February 20, 2008 02:46 PM
there's no GNU/Linux movement

Linux was started by Linus Torvalds, a programmer, not a politician. He wanted to create a good OS.

Most of opensource programmers are *not* fanatics.

#

Or just use Debian

Posted by: Anonymous Coward on June 22, 2006 06:12 AM
The default Ubuntu install contains free software only, which means that it doesn't support some popular multimedia formats straight out of the box. This is inconvenient, but the Ubuntu folks have good reasons for not shipping with support for MP3, DVDs, and so forth -- including that software could cause them some legal headaches, or incur some serious fees.

If Ubuntu is supposed to be so much easier than Debian, then why do all those formats work out of the box with Debian, but not with Ubuntu?

I know: it's because Ubuntu is worried about patents and Mark Shuttleworth doesn't want to get sued. But Debian contains only free software as well, and it CAN play MP3s.

In some areas, Debian is not as well ironed out, but the numerous ugly bugs in Ubuntu Dapper were a major disappointment for me. I'll stick with the real deal from now on.

#

Re:Or just use Debian

Posted by: Anonymous Coward on June 22, 2006 10:03 AM
sudo apt-get install xmms

It's in "main", and plays mp3 out of the box.

#

Re:Or just use Debian

Posted by: Anonymous Coward on June 22, 2006 08:12 PM
I agree. I wiped a debian install and tried Ubuntu. It took far longer to build it into a usable install than plain ole Debian. A week later I switched back. That was just easier than trying to fix this thing. Ubuntu just doesn't live up to all of the hype and it's a poor representative to first time Linux users.

#

Re:Automatix breaks stuff

Posted by: Anonymous Coward on June 22, 2006 07:56 AM
Automatix replaces your sources.list file with another one with third party packages, and it uses "echo 'Y'" to automatically say "yes" to whatever warnings and errors dpkg might throw. This thing is dangerous.

#

Re:Automatix breaks stuff

Posted by: Administrator on June 22, 2006 08:19 AM
It replaces your sources.list file temporarily but then it puts back the original one. Overriding the warnings sounds a bit scary though. There is something to be said for doing it yourself and knowing what you did.

#

This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on June 22, 2006 12:31 PM
Instead of typing sudo, sudo, sudo in front of every freaking thing you do, just do this in a terminal window:

sudo bash

and you'll get a shell with root-level access until you 'exit' out of it. This made Ubuntu usable for me, typing sudo constantly was driving me batshit nutty.

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on June 23, 2006 09:23 AM
Actually, this is mostly what sudo su - will do, and with the -, it will also reset the environment of your shell.

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on June 23, 2006 10:29 PM
You have more problems than Ubuntu if typing four charcters is driving you "crazy".

It's just a command.

Working from a root terminal is something the average user should refrain from.

From a security standpoint, your rant is a disservice to those new to linux.
Sudo, is a saftey feature.
Heck, there are those that think sudo is too powerful and should be done away with.
And you're advocating skipping sudo and working straight from root?

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on June 24, 2006 09:36 PM
Since when does my computer need security protection from me? I realize that MS and friends would like us to think that we need them to protect us from ourselves, but lets face it: they're wrong.

Furthermore, I use a computer to reduce the amount of work I need to do. If I have to type an extra four characters every time I want to do something, that is bad. Also, I think that sudo is less secure than having a real root account, because now every user account with a crappy password is a clear gateway to root, whereas before it is obvious that the root account must be protected at all costs.

Sudo is like a seatbelt that first strangles you, and then snaps in an accident. This is a safety feature?

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on June 26, 2006 06:54 AM
You don't understand safety and security.
What you are giving is bad advice, and you should not work as root constantly.
What can happen, you may ask?
For example, you can make mistakes, and given your novice status this is quite a safe bet. If you make a mistake as a normal user, the damage is often small, and you can cope. Mistakes as root can be huge, instead. Those four extra characters can give you that additional second of thinking before hitting the ENTER key, and sometimes you may realize that you were doing something wrong and stop doing it before it's too late.
Also, if you run a program potentially dangerous as normal user, the damage is limited. If you are always root, you can face nasty side effects on your system.
Experienced Unix administrators use root only when is necessary. You should do the same.

 

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on July 21, 2006 03:02 PM
If I'm just typing a command or two that needs privs I use 'sudo command'. But if I'm doing anything more than that, it has to be 'sudo bash' or it's just too painful for me.

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on August 24, 2006 05:12 AM
Sudo is not really a safety measure on machine with a single administrator. Check this out:

<a href="http://linuxboxadmin.com/articles/sudo-vs-root.php" title="linuxboxadmin.com">http://linuxboxadmin.com/articles/sudo-vs-root.ph<nobr>p<wbr></nobr> </a linuxboxadmin.com>

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on June 27, 2006 02:41 AM
NB: I am _not_ a Linux guru -- just an enthusiastic learner.

I found that the best way around the sudo / root problem is to

1. log in with my "master" account (the first one you create),

2. Open a terminal: Applications > Accessories > Terminal (I've added the launcher to my panel.)

3. Type sudo passwd root

4. You will be asked for the sudo password; enter it.

5. You'll then be asked for the new root password ; enter it.

6. You'll be asked to confirm the new root password.

7. You can now access the root account. If you want to do so from within Gnome, you have to allow root access. To do do (from the root account!),

a. System > Administration > Login Screen Setup

b. Find appropriate tab + click allow root.

As far as I've been able to tell, this will give you fully functional root account.

#

Re:This tip made Ubuntu usable for me...

Posted by: Anonymous Coward on August 24, 2006 05:28 PM
Better use "sudo -i" to get a root login shell. Then you can proceed as desired.

#

directory listing

Posted by: Anonymous Coward on June 22, 2006 02:13 PM
one of the major things that scares me about ubuntu/kubuntu is that any user can list the directory contents of any other user. bad. BAD!!!

Libranet fixed this issue so long ago that I had forgotten about it. downloading kubuntu and adding a guest account reminded me of this simple security issue.

Fix this bug. I have stuff in my home directory that I do not want to share with other users.

Thanks.

Wishing you well.

#

Re:directory listing

Posted by: Anonymous Coward on June 23, 2006 06:08 AM
Disclaimer: I'm not an Ubuntu user.

Simply change the permissions for your home directory. This is not a bug, it's simply a different configuration. You can do this from the command line with chmod or with nearly every graphical file manager with a handful of clicks. Piece of cake, and nobody will be able to read/enter your home directory.

Want an even more secure setup?
* Change default umask to 0077 (no idea on how to achieve that in Ubuntu, probably a matter of editing a text file as root).
* Once done that, from a terminal emulador, run "chmod -R go= ~" without the quotes.

#

Poor article.

Posted by: Anonymous Coward on June 22, 2006 03:06 PM
Joe WHY would you have new users switch to VIM for chrissakes???? You don't even tell them to check out vim-tutor. They'll be editing configs using this and really muck something up thanks to your advice.

Also why not point them in the direction of something like
Easy Ubuntu <a href="http://easyubuntu.freecontrib.org/" title="freecontrib.org">http://easyubuntu.freecontrib.org/</a freecontrib.org> for installing the proprietary codecs? Is this too easy?

New users shouldn't read such poor advice. Go to the official help page and start there:

<a href="http://help.ubuntu.com/" title="ubuntu.com">http://help.ubuntu.com/</a ubuntu.com>

It really is for New Users.

#

Re:Poor article.

Posted by: Anonymous Coward on July 16, 2006 04:12 AM
To quote the article:


For example, the default editor is set to Nano, which isn't optimal if you're used to Vim.


The author NEVER suggests that new users switch to vim.

I used vim under Windows before making the switch to Linux, so if I'd started with Ubuntu, I would've appreciated this suggestion.

Not to lose sight of the author's intention, the choice of default editor was merely an example to illustrate the utility of <tt>update-alternatives</tt>, which is quite useful not just for newcomers to Linux but to those coming from different distro bases like RedHat/Fedora or Suse.

Mentioning resources like Easy Ubuntu and help.ubuntu.com was a good idea. And arguing whether it's a good idea to even mention vim in an article targeting newbies could have its place. However, your insults and derisive tone serve no constructive purpose whatsoever.

-Kelly

#

Re:Poor article.

Posted by: Anonymous Coward on August 27, 2006 03:28 PM
I agree with the first Anonymous reply to your comment. Also complain about this not being suitable new users. I'm assuming you mean new linux users while the title says new Ubuntu users.

#

Backup config files first

Posted by: Anonymous Coward on June 22, 2006 04:03 PM
Taking into account that this article is aimed at newbie users, it would have been nice if it had given the hint that a backup of any config files before they are changed can save lots of grief. In some tips (x-config comes to mind) it also would help if it mentioned which config files to back up.

#

Make bootup faster

Posted by: Anonymous Coward on June 23, 2006 01:13 AM
I suggest linking to the official Ubuntu forums on making Ubuntu boot faster. Basically, disabling the unecessary services from starting up can really speed up the boot process.

I have configured my Ubuntu (through GRUB) to boot into console mode only (no X) for faster access to the system when GUI is not needed.

#

#1-INSTALL A FIREWALL...XP has one, Dapper dosn't!

Posted by: Anonymous Coward on June 23, 2006 07:57 AM
Really folks... any distro that comes without a firewall installed during the install, with easy setup options for the users means one thing.

It really missed the most important part of any modern OS install.

New folks who are not offered a firewall during the install can get themselves into trouble really quickly...

The Developers, by leaving this out, are a little to pre-occupied with higher details than the basics... FIREWALLS and SECURITY are basics!

Hey - As I was looking at the OS boot screen it looks like SELinux is also turned off by default?
Is this true? Shouldn't it be turned on by default?

Suggestion, re-do Dapper and release it again when the *buntu folks are not so rushed by a release date that they forget important details that they are sending out on CD all over the world in error.

#

Re:#1-INSTALL A FIREWALL...XP has one, Dapper dosn

Posted by: Anonymous Coward on June 23, 2006 07:47 PM
Dapper installs with NO PORTS OPEN. Hence a FIREWALL (your caps) is only useful for geeks who prefer their ports stealthed than closed.

#

Re:#1-INSTALL A FIREWALL...XP has one, Dapper dosn

Posted by: Anonymous Coward on June 26, 2006 03:01 AM
Selinux has a big performance hit and it's a pain to configure. It's overkill for most installations, especially desktop.

#

Re:#1-INSTALL A FIREWALL...XP has one, Dapper dosn

Posted by: Anonymous Coward on July 01, 2006 05:07 AM
apt-get install firestarter

#

Re:#1-INSTALL A FIREWALL...XP has one, Dapper dosn

Posted by: Anonymous Coward on July 08, 2006 01:00 PM
Now if you are a Linux user, which obviously you are not, then you would know that most, if not all linux distros, default to installing iptables and ipchains. Just because there is no pretty little icon for you to click on that says "firewall here", click here to turn it on. Doesn't mean it's not there. The command line is a powerful tool and iptables and ipchains are powerful tools that can be used to manipulate ports and protocols. Please learn more about the things you are fiddling with before you post ignorant questions on forums, which pretty much tells the whole world that you are, to put it bluntly "stupid", no offense, just telling you how it is.

#

Re:#1-INSTALL A FIREWALL...XP has one, Dapper dosn

Posted by: Anonymous Coward on August 24, 2006 05:14 AM
Well fucking said! >:|

#

Re:#1-INSTALL A FIREWALL...XP has one, Dapper dosn

Posted by: Anonymous Coward on August 06, 2006 04:57 AM
Make Kubuntu crash every 30 seconds, Windows XP does, Dapper doesn't!

#

Re:Automatix breaks stuff

Posted by: Anonymous Coward on June 23, 2006 01:02 PM
It broke my system once, because installed a new version of thunderbird and generated a version conflict with enigmail. In the end, I had to reinstall ubuntu... you probably are better off if you stick to the wikis and help.ubuntu.com, its very clear even for newbies (like me!).

#

Re:Automatix breaks stuff

Posted by: Anonymous Coward on June 24, 2006 12:43 AM
Man, reinstall the whole OS just for a problem with enigmail? you are nuts O.O same thing happened to me on Gentoo, it was just a matter of unmerge thinderbird, and install the version supported by enigmail...

You probably should google for those kind of problems<nobr> <wbr></nobr>:S

#

Paid Windows shills are lame

Posted by: Anonymous Coward on August 24, 2006 06:49 AM
Why doesn't the XP firewall warn the user when it's connecting to Microsoft's site? Fuck that

Also: Ubuntu doesn't have all the published remote exploits that WinXP has had.

Installing a firewall on Ubuntu is easy and free, and better yet, I can actually trust it because it's open source. Is the WindowsXP Firewall open source? No? Then I can't trust it. Is Zone Alarm open source? No? Then I can't trust that either.

#

Re:Paid Windows shills are lame

Posted by: Anonymous Coward on August 26, 2006 07:38 AM
Nice language and great contribution. Real professional, helpful to all I am sure. The linux community has been well represented the loser that posted this. This is someone who is criticizing someone else?

I'm sure you have reviewed all the open source code that you run on your machine(s).

#

Freespire Takes Care of #1 and #3

Posted by: Anonymous Coward on August 24, 2006 07:35 AM
I use Freespire and it already comes with all the multi media stuff and CNR is brilliant for installing software (#1 and #3).

Hans

#

Re:sudo part is not that clear

Posted by: Anonymous Coward on August 24, 2006 05:33 PM
"sudo -i" is the most optimal way, according to the man page !

#

Automatix breaks stuff

Posted by: Administrator on June 22, 2006 03:15 AM
Automatix may be easy but it breaks stuff. Don't use it. Use the wiki/docs instead.

#

Re:Automatix breaks stuff

Posted by: Administrator on June 22, 2006 03:26 AM
Interesting. What does it break?

#

Or use EasyUbuntu

Posted by: Administrator on June 25, 2006 06:41 PM
I lurk in Ubuntu-devel and the consensus is that <a href="http://easyubuntu.freecontrib.org/" title="freecontrib.org">EasyUbuntu</a freecontrib.org> is much safer than automatix. Certainly I have used it without any problems.

#

Automatix

Posted by: Administrator on June 22, 2006 02:45 AM
Nice tips!

For folks that want an easy way to get their multimedia setup - MP3 codecs and a bunch of other stuff like SwiftFox, Flash, Adobe Acrobat, etc., have a look at <a href="http://getautomatix.com/" title="getautomatix.com">Automatix</a getautomatix.com>.

#

sudo part is not that clear

Posted by: Administrator on June 22, 2006 10:29 PM
To gain permanent root access, you tell the reader to do:
sudo su -
This is suboptimal IMO.
There is 3 other cleaner way:
sudo -s -H (perferred way)
sudo bash
su - (root password must be defined first)

#

nice!

Posted by: Administrator on March 23, 2007 08:43 PM
Thanks for the article. I need it, as soon, as I have the time to install ubunto!

#

Ten tips for new Ubuntu users

Posted by: Anonymous [ip: 59.93.32.98] on July 01, 2007 07:32 PM
Content theft:
Techrythm.com is trying to copy ur content with out a trackback link:
http://techrythm.com/index.php/cool-ubuntu-tips/#comment-8

#

Ten tips for new Ubuntu users

Posted by: Anonymous [ip: 123.2.125.147] on September 11, 2007 08:46 AM
just use debian

#

i386 kernel target

Posted by: Anonymous [ip: 121.146.106.96] on January 19, 2008 03:22 AM
I am not a programmer, but from what I understand from ten years of Linux use, there is no real difference between the various i386 march targets (i.e. i386, i586, and i686). Apparently, GCC now produces a binary which uses the more advanced features of a processor if available but which is still able to run on older processors.
The difference between 32 and 64-bit arch is real, though.

#

This story has been archived. Comments can no longer be posted.



 
Tableless layout Validate XHTML 1.0 Strict Validate CSS Powered by Xaraya