Skip to main content

Basic Linux Links and usefull stuff

Hey guys
You  might be looking for Basic Linux stuff then you are at the right place... :D
I started using Linux about 5 years ago but got into it (seriously!) 1 and a half year before,
on going through the basics which i learned from many documentation provided by THE AWESOMELY GREAT ~#TLDP#~
-->The documents it provided me :
<<Download PDF if possible because it is formatted nicely in it compared to others (Not compulsory Totally Ur call) >>
It provided me real one on one interaction with THE GREAT OS EVER :D
It gave me total overview of Linux and awesomely cool tricks. It also contains exercise at the end of each lesson or chapter. You should give it a look (serious advice :P)

% Bash Guide for Beginners :

Before starting with bashing you should know bare minimum concepts of Linux <which includes placement of files, commands interaction with term and much more> which you can take from the guide above (told ya that you should have have look)
This book is amazing (that's all).
You can develop pretty good bashing skills (if read with interest (which most of you (including me (think is boring (found alternative for that (will tell u at end (and there some of you in a race to scroll down))))))) *did u counted how many braces i placed there... :P
Anyways whether you go for videos or text i would recommend you first watch the alternative and then look in each chapter from the book ( I would mark that mandatory (whether you read it on your mobile in bus or get yourself a hard copy but to get real skill read that guide (not full but do the exercise))).
With that said onto the next guide...

% Pocket Linux Guide :

KEEP THE PDF FILE OF THIS GUIDE ON YOUR MOBILE PHONE!!
NAME SAYS IT ALL
Go thought the mini topics everyday (and it will make you much more knowledgeable than me (and i can pretty much assure you i know a lot to outsmart a newbie :P))


update from 2015:
     Gyus i want you know that you can find much better stuff online to get started with THE LINUX and you'll be happy about that you learned Linux or tried to learn it at some point in life :)
I'll be on this ride with you for a long time and keep you updated with all i learn! :D

Comments

Popular posts from this blog

Von Neumann machine

Von Neumann Machine is the basic architecture of the modern computer as it laid the foundation for same memory usage for program and data. The Von Neumann Machine consists of three main components : Main Memory C.P.U I/O devices There is already a caption As you can see the C.P.U is also sub divided into two parts : Arithmetic Logic Unit Program Control Unit This allowed the architecture designers to work on different capabilities of the C.P.U. separately. Now we have the control unit and ALU different.. We need to get some instructions to work and some data to work upon. We can get all that data and instructions from Common Memory. Since the processing is fast compared to data retrieval. We need some device to hold data and instructions from memory for processing at the same speed the Processor works... Thus Registers came into play... A processor register is a quickly accessible location available to a digital processor 's central processin

Python + network [One]

Already installed Pycharm community edition. Now writing my first script. It is saved as first.py in Pycharm Projects... I already know how to program and have some experience in python so i'm pretty much up and running for this course. next i did how to run scripts from command line to run from command line one must have to set the executable bit 'on' of the file... here's how to do it chmod +x first.py then we can run first.py by simply typing "' ./"' in front of the file to be exected.... Now what does "." means.... "." Dot represent current directory in Linux and Unix ".." Double Dot represent the upper working directory Now for the second program i wrote was on variable...(simple basic stuff) but had to get hands on so i wrote it and no errors at all... it is saved as var.py Next program is loops.py All i wrote was some for statements and some while statements..... for "FOR" i used multi