Jump to content

Learning Linux

Hi Guys, 

 

New to Linux (Majorly new here) Has any got a materiel to point me in the right direction? 

I have started learning about 'pwd' 'cd' 'mkdir' etc. 

 

Most YouTube videos I have come across have not been great. 

 

Thanks in advance

George 

Link to comment
Share on other sites

Link to post
Share on other sites

Just now, Lenovo1984 said:

What exactly are you trying to do? 

Just learn the basics and a few advanced workings 

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, GeorgeKellow said:

Just learn the basics and a few advanced workings 

IMO, some fun and good info can be found at phoronix and level1tech.

And doing a project based research could be very rewarding in learning linux.

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Sauron said:

The best way to learn is to just use it. Install it natively, use it for daily tasks, try to use the terminal when you can.

I have a hyper-v session set up. I use Ubuntu 

Link to comment
Share on other sites

Link to post
Share on other sites

5 minutes ago, GeorgeKellow said:

I have a hyper-v session set up. I use Ubuntu 

Which version of Ubuntu?

Link to comment
Share on other sites

Link to post
Share on other sites

HAL9000: AMD Ryzen 9 3900x | Noctua NH-D15 chromax.black | 32 GB Corsair Vengeance LPX DDR4 3200 MHz | Asus X570 Prime Pro | ASUS TUF 3080 Ti | 1 TB Samsung 970 Evo Plus + 1 TB Crucial MX500 + 6 TB WD RED | Corsair HX1000 | be quiet Pure Base 500DX | LG 34UM95 34" 3440x1440

Hydrogen server: Intel i3-10100 | Cryorig M9i | 64 GB Crucial Ballistix 3200MHz DDR4 | Gigabyte B560M-DS3H | 33 TB of storage | Fractal Design Define R5 | unRAID 6.9.2

Carbon server: Fujitsu PRIMERGY RX100 S7p | Xeon E3-1230 v2 | 16 GB DDR3 ECC | 60 GB Corsair SSD & 250 GB Samsung 850 Pro | Intel i340-T4 | ESXi 6.5.1

Big Mac cluster: 2x Raspberry Pi 2 Model B | 1x Raspberry Pi 3 Model B | 2x Raspberry Pi 3 Model B+

Link to comment
Share on other sites

Link to post
Share on other sites

Okay some cool things to do:
 

Quote

sudo apt install <package>

is how you install packages

 

Quote

sudo vi <filename>

is how you edit files in terminal

 

Quote

sudo rm <file>

Removes a file

 

Quote

sudo rm -rf <directory/file>

Removes folders AND files. (I hope you know not to use the forbidden command with this.)

 

Quote

sudo apt remove <package>

Removes a package that you installed

 

Quote

sudo vi ~/.bashrc

My favorite, make custom aliases (for commands) by doing

alias <aliasname>="<WhatYouWantItToDo>"

 

and also don't forget there is much much more but thats what I use a lot

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×