BestSeller
Best Seller!
$27.49
$24.99
XK0-004: CompTIA Linux+

XK0-004: CompTIA Linux+ Certification Video Training Course

XK0-004: CompTIA Linux+ Certification Video Training Course includes 17 Lectures which proven in-depth knowledge on all key concepts of the exam. Pass your exam easily and learn everything you need with our XK0-004: CompTIA Linux+ Certification Training Video Course.

142 Students Enrolled
17 Lectures
07:42:36 hr
$27.49
$24.99

Curriculum for CompTIA Linux+ XK0-004 Certification Video Training Course

XK0-004: CompTIA Linux+ Certification Video Training Course Info:

The Complete Course from ExamCollection industry leading experts to help you prepare and provides the full 360 solution for self prep including XK0-004: CompTIA Linux+ Certification Video Training Course, Practice Test Questions and Answers, Study Guide & Exam Dumps.

Unit 02 - Using Linux

18. BASH Proficiency

Now, there are many tools and tricks that will help make your use of these shells a lot easier. And basically the idea is, how do I navigate back and forth? For instance, using the shift key to move the page up or the shift key to move the page down can take you to the top or bottom of a current page. and that's especially helpful when you're trying to look at your recent output. So, if I issued some sort of LS command and saw the listings of a certain directory, but those listings have now moved to the top of the screen due to other commands, I can page up or page down if you want to go to the top. CTRL t bam takes you right to the top of that list. It's a lot easier than trying to use the uparrow and scroll all the way up, or, depending on the shell, using the mouse pointer to try to drag that little bar along the vertical bar up and down to move up and down the page. It's very simple, very straightforward. People say this is faster. And the reason they say it's faster is I'm not taking my hands off the keyboard to go get a mouse, move the mouse, and do all this stuff. I'm typing along. I can shift page up, shift page down. CTRL T is very easy to get from one to the other without moving my hands off the keyboard. One of the reasons why people will tell you that they can always outperform you with a command line over your windows is because they have a command line. GUI because they don't leave the keyboard; they don't have to move things around. They don't have to wait for the next page; read the next question. They're just entering these commands at a slow pace, provided they know the commands. That's the other part of the trick. If they don't know the commands, they might be slower than you because they're going to have to look that stuff up anyway. There are numerous ways to make using a shell more convenient for you.

19. Command History

Another thing you can do is look at your recent command history. So if, let's say, you recently typed a clear command and you want to type it again, if you just recently—like, the last two or three commands typed clear—you could hit the up arrow two or three times, and you would see the clear command, and you would just hit Enter, and it would clear the screen just like you did before. It's your history. The up and down arrows show you the previous commands. If you used many pre-up arrows to see many previous commands, the downarrow will show you the commands that followed. Now, be careful. By the way, you can also use a history command, which will, depending on how you've set up the parameters, show you the last ten or however many commands you have actually typed in. But here's what I want to be careful of. I would suggest that you be cautious with your use of the up and down arrows. For example, if the command clear five letters was the one I wanted to repeat and I typed it 20 commands ago, you hit that up arrow 20 times; that's 20 keystrokes, as opposed to just typing the command five letters, five keystrokes. So it's not always to your best advantage, but if you aren't sure about what you've typed or you want to verify some of the commands that you've typed, that's where I think this is a perfect representation of using up and down arrows and going through there. Now, if you have a long command that you're typing in, and I mean a long command that may be scrolling off the screen due to its length—it's longer than the 80-character limit—you can use Control B and CTRL F to go back and forward. Now, in some cases, the right and left arrows will move you just like Control B and Control F. But that kind of takes us back to the types of emulators we used to have, where basically an emulator was emulating a command line or a shell in a Windows environment. And so we often couldn't get those back arrows and forward arrows to translate correctly into that environment using the emulator. So we were stuck with what we often call an eMac's style of abbreviations. So Control B and Control F would move back a letter. Control for forward control D would delete a character. Control A would take you to the front of the command. Control E would take you to the very end of the command. I mean, there are a lot of different options that you have that would help in editing the commands that you're typing in. This is especially useful if you made a mistake or need to go back and forth without having to press the back or front arrows or do anything else. So the more of those you got used to, the faster you were running or working with the command line.

20. Shell Variables

Now, inside of each shell is a reference to what we call variables. Variables are just that; they are placeholders of data or information, and often they make references to system information that you can relate to inside your shell. Now, most variables are going to almost always be all capital letters, and almost all of them start with a dollar sign. So if you wanted to know, for instance, what's the name of the host of the actual operating system, the dollar sign host name would tell you that information. You have a lot of these variables that, again, are usually system-generated information available to you within your shell and programmatically available to you, as we'll talk about later on. You can pipe information from these variables into other types of commands and vice versa, or send them off to printers or whatever you want to do. So a shell variable is generally system information, but it doesn't mean that you can't make your own. Now, keep in mind that if you have multiple command lines open, we'd call them multiple shells. These variables that you are using that are system-wide are available to everyone. If you create a variable inside of your shell, it is ignored, or, I should say, invisible to any other shell. Everything you do is contained within that one screen or window, and it doesn't transpose from one to the other. So be careful about that. And working with these variables, remember which shell you put your own variable in and which one it's not in.

21. Shell Metacharacters

So, you know, the bad thing about talking about the shell and all these little commands is that you just can't do justice to all the commands. You've got to play with it. Read some blogs, find some other things where people say, "Oh, I tried this; it was really cool." For example, you can make a series of commands executed in order look like a single command by separating them with a colon. So you can say, "Do this command, echo colon, and do some other work." You can group your commands together inside these braces or brackets, and they'll be executed as far as the exit when it leaves this grouping, as though it was a single command. A single ampersand can say "run this command in the background. Don't annoy me. Don't make me sit there waiting for all this output to show up on my screen. I want to type some more stuff. Double ampersands, logical endings, double what we call pipe characters That's a vertical line that's up and down on your keyboard. If you haven't seen it, some keyboards make it look like two little dashes that are vertical above each other. Anyway, those are the pipes. Double pipes would be logical or So, for example, you could say CD bin.That means change your directory to the bin directory, followed by an ampersand and a LS, which means list the file contents. And what happens is that if both of those are true, that you have permission to go to the bin directory and run the LS command, then it will run. If you didn't have permission to go to the bin directory, it wouldn't run the LS because logic dictates that you must be able to do both or nothing happens. Logical. And if this is true and this is true, then the result is true. Logical or simply means that one of the two sides must be true in order for the command to be executed successfully. So again, there's just a lot of really cool stuff you can get into with all of these little metacaracters and working with the shells.

22. Tab Completion

Now, many of you don't want to remember all of the typing and all of the commands, at least as far as the exact spelling. Don't blame you. Command lines don't have spell checks. If you make a mistake, it will be the first one to tell you, "Hey, you did. What is this? I don't know. You made a mistake. It reminds me of working with Cisco routers. Not only does it make you realise that you made a mistake, it puts a little carrot underneath where you screwed up the spelling so that everybody can see it. Tab completion helps you out with that by not making you have to remember the entire command. So you type in the first couple of letters of a command, hit the tab key, and it finishes the command for you. Now, assuming you've typed enough of the commands to make them distinct, in other words, if you type just the letter C, I'm not sure if you mean cat or clear. Maybe you mean one of the two. But if you hit the tab, I can't finish it because you didn't give me enough. If you type CL now, I've got enough to know that it's clear because no other command starts with the letter CL. That's what we mean by unique enough. So you have to put enough of that in and then hit the tab to complete it. By using tab, by the way, ithelps you be faster at typing. You don't have to memorise spellings, especially if you're not sure how some things are supposed to be spelled. You can also then use the tab-tab double-tab to see potential matches. So if you type C and you're not sure what outthere, you can tap tab and you should be able tosee a list of all the commands that start with theletter C so that it helps you get unique enough.

Read More

Comments
* The most recent comment are at the top

Add Comments

Feel Free to Post Your Comments About EamCollection's CompTIA Linux+ XK0-004 Certification Video Training Course which Include CompTIA XK0-004 Exam Dumps, Practice Test Questions & Answers.

Similar CompTIA Video Courses

CompTIA  Project+
135
4.5
9 hrs
$24.99
PK0-004 - CompTIA Project+
CompTIA  Project+
113
5.0
16 hrs
$24.99
PK0-005 - CompTIA Project+
CompTIA A+ (220-901)
385
4.5
1 hr
220-901 - CompTIA A+ (220-901)
CompTIA A+ (220-902)
294
4.5
1 hr
220-902 - CompTIA A+ (220-902)
CompTIA A+ Certification Exam: Core 1
103
4.5
17 hrs
$24.99
220-1001 - CompTIA A+ Certification Exam: Core 1
CompTIA A+ Certification Exam: Core 1
136
5.0
1 hr
$24.99
220-1101 - CompTIA A+ Certification Exam: Core 1
CompTIA A+ Certification Exam: Core 2
127
4.5
13 hrs
$24.99
220-1002 - CompTIA A+ Certification Exam: Core 2
CompTIA A+ Certification Exam: Core 2
88
5.0
11 hrs
$24.99
220-1102 - CompTIA A+ Certification Exam: Core 2
CompTIA Advanced Security Practitioner (CASP)
469
4.7
1 hr
CAS-002 - CompTIA Advanced Security Practitioner (CASP)
CompTIA Advanced Security Practitioner (CASP+) CAS-003
98
4.5
12 hrs
$24.99
CAS-003 - CompTIA Advanced Security Practitioner (CASP+) CAS-003
CompTIA Advanced Security Practitioner (CASP+) CAS-004
128
5.0
5 hrs
$24.99
CAS-004 - CompTIA Advanced Security Practitioner (CASP+) CAS-004
CompTIA Cloud Essentials
247
4.6
7 hrs
CLO-001 - CompTIA Cloud Essentials
CompTIA Cloud+
185
4.4
1 hr
CV0-001 - CompTIA Cloud+
CompTIA Cloud+
135
5.0
6 hrs
$24.99
CV0-003 - CompTIA Cloud+
CompTIA Cloud+ (CV0-002)
137
4.6
9 hrs
$24.99
CV0-002 - CompTIA Cloud+ (CV0-002)
CompTIA CTT+ Essentials
93
5.0
5 hrs
$24.99
TK0-201 - CompTIA CTT+ Essentials
CompTIA CySA+ (CS0-003)
135
5.0
7 hrs
$24.99
CS0-003 - CompTIA CySA+ (CS0-003)
CompTIA CySA+ Certification Exam
337
4.5
9 hrs
CS0-001 - CompTIA CySA+ Certification Exam
CompTIA CySA+ Certification Exam (CS0-002)
143
5.0
1 hr
$24.99
CS0-002 - CompTIA CySA+ Certification Exam (CS0-002)
CompTIA IT Fundamentals
129
4.5
4 hrs
$24.99
FC0-U51 - CompTIA IT Fundamentals
CompTIA IT Fundamentals
95
4.6
4 hrs
$24.99
FC0-U61 - CompTIA IT Fundamentals
CompTIA Linux+
118
5.0
20 hrs
$24.99
XK0-005 - CompTIA Linux+
CompTIA Linux+ Powered by LPI 1
140
4.4
1 hr
LX0-103 - CompTIA Linux+ Powered by LPI 1
CompTIA Linux+ Powered by LPI 2
113
4.5
5 hrs
LX0-104 - CompTIA Linux+ Powered by LPI 2
CompTIA Network+
114
4.6
10 hrs
$24.99
N10-007 - CompTIA Network+
CompTIA Network+
142
5.0
18 hrs
$24.99
N10-008 - CompTIA Network+
CompTIA Network+ (N10-006)
301
4.6
1 hr
N10-006 - CompTIA Network+ (N10-006)
CompTIA PenTest+ Certification Exam
85
4.5
7 hrs
$24.99
PT0-001 - CompTIA PenTest+ Certification Exam
CompTIA PenTest+ Certification Exam
118
5.0
7 hrs
$24.99
PT0-002 - CompTIA PenTest+ Certification Exam
CompTIA Project+
253
4.5
6 hrs
PK0-003 - CompTIA Project+
CompTIA Security+
138
5.0
23 hrs
$24.99
SY0-601 - CompTIA Security+
CompTIA Security+
560
4.6
1 hr
SY0-401 - CompTIA Security+
CompTIA Security+
86
4.4
14 hrs
SY0-501 - CompTIA Security+
CompTIA Server+
87
4.5
1 hr
$24.99
SK0-004 - CompTIA Server+
CompTIA Server+ Certification Exam
140
5.0
1 hr
$24.99
SK0-005 - CompTIA Server+ Certification Exam
CompTIA  Project+
$24.99
CompTIA Project+
113
5.0
16 hrs
CompTIA A+ (220-901)
CompTIA A+ (220-901)
385
4.5
1 hr
CompTIA A+ (220-902)
CompTIA A+ (220-902)
294
4.5
1 hr
CompTIA Cloud+
CompTIA Cloud+
185
4.4
1 hr
CompTIA Cloud+
$24.99
CompTIA Cloud+
135
5.0
6 hrs
CompTIA Linux+
$24.99
CompTIA Linux+
118
5.0
20 hrs
CompTIA Network+
$24.99
CompTIA Network+
114
4.6
10 hrs
CompTIA Network+
$24.99
CompTIA Network+
142
5.0
18 hrs
CompTIA Project+
CompTIA Project+
253
4.5
6 hrs
CompTIA Security+
CompTIA Security+
560
4.6
1 hr
CompTIA Security+
CompTIA Security+
86
4.4
14 hrs

Only Registered Members Can Download VCE Files or View Training Courses

Please fill out your email address below in order to Download VCE files or view Training Courses. Registration is Free and Easy - you simply need to provide an email address.

  • Trusted By 1.2M IT Certification Candidates Every Month
  • VCE Files Simulate Real Exam Environment
  • Instant Download After Registration.
Please provide a correct e-mail address
A confirmation link will be sent to this email address to verify your login.
Already Member? Click Here to Login

Log into your ExamCollection Account

Please Log In to download VCE file or view Training Course

Please provide a correct E-mail address

Please provide your Password (min. 6 characters)

Only registered Examcollection.com members can download vce files or view training courses.

Registration is free and easy - just provide your E-mail address. Click Here to Register

SPECIAL OFFER: GET 10% OFF

ExamCollection Premium

ExamCollection Premium Files

Pass your Exam with ExamCollection's PREMIUM files!

  • ExamCollection Certified Safe Files
  • Guaranteed to have ACTUAL Exam Questions
  • Up-to-Date Exam Study Material - Verified by Experts
  • Instant Downloads
Enter Your Email Address to Receive Your 10% Off Discount Code
A Confirmation Link will be sent to this email address to verify your login
We value your privacy. We will not rent or sell your email address

SPECIAL OFFER: GET 10% OFF

Use Discount Code:

MIN10OFF

A confirmation link was sent to your e-mail.
Please check your mailbox for a message from support@examcollection.com and follow the directions.

Next

Download Free Demo of VCE Exam Simulator

Experience Avanset VCE Exam Simulator for yourself.

Simply submit your e-mail address below to get started with our interactive software demo of your free trial.

Free Demo Limits: In the demo version you will be able to access only first 5 questions from exam.