Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Possible Duplicate:
List of blogs to learn more about Ubuntu

As a new Linux user I would like to learn more everyday. Would you recommend any website that gives tips for new Linux users on a daily basis, maybe by email?

share|improve this question
1  
What topics are you mainly interested in (general usage, programming, image editing, etc.)? If you just want to learn about linux in general, clicking on the (answered) threads right here on AskUbuntu seems to be a good option. ;-) – Lakritsbollar Feb 17 '12 at 14:30
3  
A good idea would be to subscribe to the blogs in this question - List of blogs to learn more about Ubuntu using a RSS feed reader like Google Reader or Liferea. That way you receive some tid-bits of info everyday about something Linux. My fav of the list are 2buntu, The Geek Stuff, cyberciti.biz and commandline-fu – nitstorm Feb 17 '12 at 14:40
It's not exclusively about Linux, and it's not a website per se, but you can follow @CLIMagic on Twitter, they show useful command-line snippets several times a day. – roadmr Feb 17 '12 at 14:44

marked as duplicate by Jorge Castro, jrg Feb 24 '12 at 14:54

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 1 down vote accepted

Check List of blogs to learn more about Ubuntu

  • Register there Rss feed or register your email to get a daily How to tips.

But first I recommend you pick one book from List of free Ubuntu books and read.

share|improve this answer

    Here are the most important terminal commands every Ubuntu                                    Newbie should know

In Ubuntu, there is a SuperUser named Root. The Windows equivalent of Root is Administrators group. The SuperUser can do anything and everything, and thus doing daily work as the SuperUser can be dangerous. You could type a command incorrectly and destroy the system. Ideally, you run as a user that has only the privileges needed for the task at hand. In some cases, this is necessarily Root, but most of the time it is a regular user.

By default, the Root account password is locked in Ubuntu. This means that you cannot login as Root directly or use the su command to become the Root user. However, since the Root account physically exists it is still possible to run programs with root-level privileges. This is where sudo comes in - it allows authorized users to run certain programs as Root without having to know the root password

                                                                                      For More Help

Press Ctrl+Alt+t (shortcut)to open terminal window

sudo apt-get install APPLICATION

where APPLICATION is the name of an app , it installs APPLICATION ↥

Replace APPLICATION with the name of the application you want to install, . So if you wanted to install Firefox , you would write: sudo apt-get install firefox

sudo apt-get remove APPLICATION

it removes an application ↥

sudo apt-get update

it updates the repositories ↥ What are Repositories? & Repositories

sudo apt-get upgrade

upgrades your installed application with their latest versions from Ubuntu repositories ↥

killall APPLICATION_NAME

kills an application; where APPLICATION_PID can be found by typing the next command below ↥

ps -e

displays currently running processes ↥

wget http://path_to_file.com

downloads a file from the web to current directory ↥

cd /PATH/TO/DIR

changes current directory to DIR. Use cd to change the current directory into any dir ↥

cd ..

Like ms-dos, goes up one directory ↥

man COMMAND

displays the manual for a command ↥

cp ORIGINALFILE NEWFILE

Copy & Paste a file ↥

mv SOURCE DESTINATION

Move a file ↥

rm — FILENAME

Remove a file ↥

rm -rf DIRNAME

Removes a directory and all it's contents ↥

mkdir FOLDERNAME

Make directory ↥

touch FILENAME

Make a file ↥

                                                                                    For More Help

share|improve this answer
This is a great list... but it is not really an answer to the question. The question is how to learn a bit of Linux commands every day conveniently, e.g. through a daily email, blog post, etc. – Chan-Ho Suh Feb 21 '12 at 8:21
ya its not the answer just wanted the person who ask the question to let know – One Zero Feb 21 '12 at 8:29

I have begun with Linux Bible. But also suitable would be Ubuntu Bible or Ubuntu Official Handbook.

In my opinion the best way is to read a bit everyday and try to use this knowledge right after reading. And in case of problems not described in the books, this forum will probably help. I've used many forums in different topics, but this is one of the most friendly and helpful and alive.

Regards

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.