分类: LINUX
2007-10-09 07:54:51
刚在网上看到的,感觉有些东西真的值得那些刚学Linux的朋友注意:
In Part 2 of this three-part series, you will learn what the best systematic approach should be to start solving any problems you might have in Linux. Instead of a scattershot approach, general solutions to Linux problems can be approached in this order:
The rest of this article fills in the details you'll need to make this list work for you.
If it's a specific program that won't work, see if there's another program on the computer or available via repository that does the same job. For common tasks, there probably are at least two programs for that purpose already installed on your machine, and if there is only one installed, you can probably get at least one alternative via automated installation via repository.
You can try
$ apropos keyword
or search on one or more keywords at Google
keyword1 keyword2 distroname
with the keyword(s) having to do with whatever program function you're looking for.
Good Luck!