So you've logged in to the Linux terminal, and you're staring at a command prompt. Now what? The first time I was presented with a command shell, I felt a little at home because I had extensive experience with Microsoft's DOS.
Today though, unless you're a PowerShell whiz or coming from macOS and already familiar with its terminal, the Linux prompt will feel pretty foreign. The prompt is an interface to Bash (Bourne Again SHell). Bash's features help you out a little, and using it is really not all that difficult.
What is Bash?
I won't give you a Bash history (if you're interested, you can get that from Command Line Heroes' Bash episode). The main thing you need to know is that Bash is the command-line interpreter on most modern Linux machines. You have other options, but on Red Hat Enterprise Linux (RHEL), Bash is the default. Some great graphical user interfaces (GUIs), tangible user interfaces (TUIs), and web console interfaces will let you manage your RHEL server, but nothing quite compares to the level of control and freedom that you get from the command line.
Bash is capable of more than just issuing commands and launching other programs. It has a pretty extensive scripting language associated with it called, well, Bash. However, scripting is also beyond the scope of this article; just know that it exists. Here are some tips to get you familiar with Bash.
[ Want to learn about scripting? Download the Bash shell scripting cheat sheet. ]
Understand the prompt
[tux@rhel8 ~]$
I'll begin with the prompt itself. By default, the command prompt might look odd or garbled, but it actually includes some pretty useful information. I'll break down the prompt above, which contains four very important values:
tux
is the current username.@rhel8
is the system's hostname.~
indicates the current directory.~
is shorthand for your home directory. If you were in/etc
, it would sayetc
; if you were in/usr/src/
, it would saysrc
.$
indicates whether you are privileged.$
indicates a standard user, and#
indicates a privileged superuser (also called root).
Because the prompt is highly customizable, I'll use the simplest common prompt for the rest of this article: a single $
character. Don't type the $
prompt when you enter commands. Its purpose, both in your terminal and in this article, is to help you keep track of the commands you're entering and the output your computer is providing back to you.
Change directories
If you grew up when I did, you had a CD collection. If you didn't, you probably at least know what CDs are (compact discs). In Linux, the cd
command has nothing to do with music. Instead, cd
means change directory in Bash. You change to a new directory by entering cd /path/to/new/directory
. But there are also some shortcuts to know.
.
is the current directory (you will seldomcd
to.
but it's very useful for other things)...
is the directory above the current working directory.-
is the last directory you were in.~
is your home directory./
is the root of the filesystem, or the delimiter between directories in a full path.
The command pwd
(which stands for "present working directory") tells you the absolute path to the current working directory. Try it out and practice using cd
to navigate to the directories listed above by using the examples below.
$ pwd
/home/tux
My username is tux
, so the pwd
output tells me I'm in my home directory. In your terminal, you will see your username.
Here's an example session with some cd
and pwd
commands (I've created some test directories and subdirectories to demonstrate, so those folders don't exist on your computer):
$ cd test1/
$ cd testsub1/
$ pwd
/home/tux/test1/testsub1
$ cd ..
$ cd /etc/
$ cd ~/test2/
$ pwd
/home/tux/test2
$ cd -
/etc
$ pwd
/etc
$ cd ~
$ pwd
/home/tux
$
Use command auto-completion
Auto-completion is a tool that I abuse the heck out of. It saves you a ton of time if you know the first few letters of a command. You use it by entering a few characters and then pressing the Tab key. Bash then types the rest of the command for you. Pressing Tab once completes the command if there is only one command that matches the letters you entered. Pressing Tab twice displays all of the possibilities that match. Here is an example:
$ rsyn<tab>
$ rsync
$ rsy<tab><tab>
rsync rsyslogd rsyslog-recover-qi.pl
[ Download the Bash cheat sheet to become more efficient at the command line. ]
Some commands even have auto-complete built-in for their command-line options.
Auto-completion will also warn you if there are a lot of results.
$ l<tab><tab>
Display all 128 possibilities? (y or n)n
Learn more
I hope these explanations have helped your understanding of the Bash command prompt. There is so much more you can learn and explore, but these are the basics, and I hope this article eases some of the anxiety associated with that blinking cursor.
저자 소개
Nate is a Technical Account Manager with Red Hat and an experienced sysadmin with 20 years in the industry. He first encountered Linux (Red Hat 5.0) as a teenager, after deciding that software licensing was too expensive for a kid with no income, in the late 90’s. Since then he’s run everything from BBS’s (remember those?) to derby hat’s containing raspberry pi’s, to Linux systems in his basement, or in enterprise-class data-centers.
He runs his own blog at undrground.org, hosts the Iron Sysadmin Podcast, and when he’s not at a command line, he’s probably in the garage tinkering on his Jeep, or out on the trails.
채널별 검색
오토메이션
기술, 팀, 인프라를 위한 IT 자동화 최신 동향
인공지능
고객이 어디서나 AI 워크로드를 실행할 수 있도록 지원하는 플랫폼 업데이트
오픈 하이브리드 클라우드
하이브리드 클라우드로 더욱 유연한 미래를 구축하는 방법을 알아보세요
보안
환경과 기술 전반에 걸쳐 리스크를 감소하는 방법에 대한 최신 정보
엣지 컴퓨팅
엣지에서의 운영을 단순화하는 플랫폼 업데이트
인프라
세계적으로 인정받은 기업용 Linux 플랫폼에 대한 최신 정보
애플리케이션
복잡한 애플리케이션에 대한 솔루션 더 보기
오리지널 쇼
엔터프라이즈 기술 분야의 제작자와 리더가 전하는 흥미로운 스토리
제품
- Red Hat Enterprise Linux
- Red Hat OpenShift Enterprise
- Red Hat Ansible Automation Platform
- 클라우드 서비스
- 모든 제품 보기
툴
체험, 구매 & 영업
커뮤니케이션
Red Hat 소개
Red Hat은 Linux, 클라우드, 컨테이너, 쿠버네티스 등을 포함한 글로벌 엔터프라이즈 오픈소스 솔루션 공급업체입니다. Red Hat은 코어 데이터센터에서 네트워크 엣지에 이르기까지 다양한 플랫폼과 환경에서 기업의 업무 편의성을 높여 주는 강화된 기능의 솔루션을 제공합니다.