LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-24-2016, 09:05 AM   #1
Linuxway786
LQ Newbie
 
Registered: Dec 2016
Posts: 1

Rep: Reputation: Disabled
Want to learn Linux the CLI way instead of Gui


Greetings and happy holiday to everyone!

I am new to Linux. Can anyone help guide a little bit? Any Good websites or Youtube videos that you guys can recommend?

Would be greatly appreciated.

-Ray
 
Old 12-24-2016, 09:27 AM   #2
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Hi Ray, welcome to the forum

Take a look at these sites...

http://linuxsurvival.com/linux-tutorial-introduction/

http://ryanstutorials.net/linuxtutorial/

http://linuxcommand.org/

Regards...
 
2 members found this post helpful.
Old 12-24-2016, 09:31 AM   #3
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,307
Blog Entries: 3

Rep: Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721
Welcome.

One good starting point would the The Linux Command Line, at least Part I gets you started. I recommend going through Part I in detail. The other parts of TLCL may or may not be interesting. However, whenever you see a new utility or a known one used in a new way, always check the manual page. The manual pages vary in length and quality but are the next most authoritative resource after the source code itself. So for ls you could see the manual page like this:

Code:
man ls
man bash
man man
Same for the default shell, bash, and even the manual utility itself, man.

Edit: don't be scared of the bash page. It's just a reference and you can search it with / and ?

Last edited by Turbocapitalist; 12-24-2016 at 09:33 AM.
 
1 members found this post helpful.
Old 12-24-2016, 09:48 AM   #4
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Thumbs up

For me if I comment out ie # like so:
Code:
#/usr/bin/sddm
in Debian, /etc/X11/default-display-manager
then it skips my login page and goes straight to
( see next posts) CLI login;
Code:
startx
as you may know gets you to the default GUI or others.

Here's a good link to learn searching: http://www.linuxquestions.org/questi...og.php?b=35750
and one for [code]vi[/code]: http://www.linuxquestions.org/questi...og.php?b=37249

...have fun, free!

Last edited by jamison20000e; 12-25-2016 at 07:24 PM.
 
Old 12-24-2016, 01:01 PM   #5
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
The systemd way is:

# systemctl --set-default multi-user.target

With graphical.target being the default. Via things in /etc/systemd/system/ in debian. I just install via debootstrap which is a minimal install that lacks graphics until you install them. As far as sites.

tldp.org

AKA the linux documentation project, which dates back over a decade. Bear in mind that some of the documentation is a decade out of date (or more). So reference other things like the man page / info page / project website and such. Luckily debian has apt-file, although fedoras dnf seemed to have similar capabilities, arches pkgfile was much more limited IMO.

$ apt-file find bin/ls

$ apt-cache show coreutils

$ man ls

$ ls --help

And various other routes like examining the contents of /usr/share/doc/ and stuff.

$ apt-file list coreutils | grep -i bin | less

To list the executables in a package. Although distro specific to debian based distros that have apt-file.
 
1 members found this post helpful.
Old 12-24-2016, 01:22 PM   #6
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Funny I was just in that folder /etc/systemd/ thinking I should get to know it /etc/systemd/system/ does point to /etc/X11/default-display-manager but I now remember that my comment gets overwritten with some updates. So, thanks Shadow_7!

Debian also lets you back to a text login from the GUI login manager or there are often GUI setting to enable a CLI boot, then when you startx it goes to the login manager...
 
Old 12-24-2016, 05:19 PM   #7
Boykin5
LQ Newbie
 
Registered: Dec 2016
Posts: 4

Rep: Reputation: Disabled
Quote:
Originally Posted by Linuxway786 View Post
Greetings and happy holiday to everyone!

I am new to Linux. Can anyone help guide a little bit? Any Good websites or Youtube videos that you guys can recommend?

Would be greatly appreciated.

-Ray
You can sign up for free at https://www.udemy.com. They have many courses including linux; like linux commands usage, scripting, sysadmin and more. Some are FREE and some are paid courses. You can also supplement your linux knowledge with popular scripting languages like python. There are many FREE courses on python in udemy.com

Good luck and practice what you learn!
 
Old 12-24-2016, 08:38 PM   #8
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,323
Blog Entries: 28

Rep: Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141
Dann Washco's Linux in the Shell is an excellent resource.

One thing you could do is learn how to use a command line mail client (my favorite is Mutt) and a command line browser such as lynx, links. elinks, or w3m. My favorite is w3m; it allows for tabbed browsing and can display image files. In the process of setting up a command line email client, you learn a lot of configuring rc files and the like, plus you learn about using a text editor.

I did a podcast about Mutt last year. You might find some of the links in the show notes useful.

The Linux Documentation Project has some wonderful references. It's in need of updating as regards some of the content, particularly its Samba references since Samba v. 4 was released, but the command line really hasn't changed significantly, except possibly as regards the init system since SystemD became a thing.
 
Old 12-24-2016, 10:24 PM   #9
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
http://coewww.rutgers.edu/www1/linux...ute/index.html
 
Old 12-25-2016, 07:15 AM   #10
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Member response

Hi,

Welcome to LQ!

Quote:
Originally Posted by Linuxway786 View Post
Greetings and happy holiday to everyone!

I am new to Linux. Can anyone help guide a little bit? Any Good websites or Youtube videos that you guys can recommend?

Would be greatly appreciated.

-Ray
Just a few links to aid you to gaining some understanding, some may seem dated but still valid information;


Have fun & enjoy!
Hope this helps.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
CLI Companion - a tool to learn linux commands. bdfhjk Linux - News 8 12-02-2016 05:59 AM
How to get the GUI from CLI in Red Hat Linux montasl Linux - Newbie 5 03-11-2010 05:19 PM
Programming on Linux -- CLI to GUI nodisk Programming 15 12-25-2005 03:06 PM
Linux distro to learn CLI while keeping XP? babyphil Linux - Distributions 5 06-08-2004 04:58 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:41 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration