HPUX system might appear challenging at first glance, however, after reading this article you will find it more familiar than you think. This article will show how to use keys to navigate into the HPUX terminal and commands similar to what you know in Linux.
“Linux is a UNIX like Operating system”
The trick is to know how to begin and respect ^_^ the differences between both Operating Systems. As for a Linux Administrator who comes from a friendly environment GUI (like KDE or Gnome) with backgrounds, sound, and even some games ^_^ . Not to mention, a CLI -bash- that has auto-complete for commands, file paths even command parameters. Some Linux distributions even have auto-suggestion if you misspelled command
Now, this dude will work in a strange environment in which the arrow keys refuse to do what they normally do :O
After a lot of suffering, You will find that it’s really similar to Linux more than you expect 😀
Contents
- Navigation Keys in HPUX shell.
- Typing and editing commands.
- HPUX commands Similar to Linux.
Navigation Keys in HPUX shell
Working with Shell in HPUX is similar to working in the VI editor. It has two modes Command mode &
Insert mode. We press ESC and [Keys] to switch between modes
- Navigation Keys (command mode).
are the old keys ( H , J , K , L )
H=LeftJ=Down
K=up
L=right
Key | Functionality |
h | Move the cursor to the left one character. |
l | Move the cursor to the right one character. |
j | Move the cursor down one line. |
k | Move the cursor up one line. (Show the last command) |
^ | Move the cursor to the beginning of the line. |
$ | Move the cursor to the end of the current line. |
Typing and editing commands.
Similarly, as the navigation keys mentioned above. applying the following sequence of keys inside VIM or in HPUX Terminal will facilitate your operation.
Press ESC then press one of the following [Keys] will execute the described functionality.
Key | Functionality |
i | Inserts text to the left of the cursor. (enable you to type and execute commands) |
a | Begins inserting after the character (append) on which the cursor is positioned. |
r | Replace the character under the cursor with the next character you type. |
x | Delete character(s) to the right of the cursor, starting with the one beneath it. |
X | Delete character(s) to the left of the cursor, starting with the one beneath it. |
HPUX commands Similar to Linux.
The following list will show commands similar to Linux. however, you might find it lacking some parameters you use.
File manipulation | ls, rm, cd, mkdir |
Text stream and editing | cat, tail, head, vi |
Permissions | chown, chmod |
Process, memory | Uptime, ps, top, top |
Wrap Up
This introduction is necessary to make the Linux administrator familiar with the HPUX commands and environment especially using navigation keys. Next, we will explain more in-depth objectives. for example software, device management, system info, and other commands.
1 comment
[…] and cifsdb which will allow you to manage CIFS shares. however, We strongly recommend reading This article first to make your life easier on […]