Difference between revisions of "Introduction to Linux in HPC/Various tips"
Introduction to Linux in HPC/Various tips
Jump to navigation
Jump to search
(Update video link) |
(Update video link) |
||
Line 9: | Line 9: | ||
=== Video === <!--T:5--> | === Video === <!--T:5--> | ||
− | <youtube width="600" height="400" right> | + | <youtube width="600" height="400" right>8w16X2d2T54</youtube> |
− | |||
=== Quiz === <!--T:5--> | === Quiz === <!--T:5--> |
Revision as of 17:20, 16 November 2020
HPC.NRW | |
---|---|
Other HPC Courses | |
1. | Gprof Tutorial |
2. | OpenMP in Small Bites |
Introduction to Linux in HPC | |
1. | Background and History |
2. | The Command Line |
3. | Directory structure |
4. | Files |
5. | Text display and search |
6. | Users and permissions |
7. | Processes |
8. | The vim text editor |
9. | Shell scripting |
10. | Environment variables |
11. | System configuration |
12. | SSH Connections |
13. | SSH: Graphics and File Transfer |
14. | Various tips |
Video
Quiz
How will you find a specific command in history ? HINT: use grep with history, how to use it?
How can you compare two files and display a list of the difference? HINT:
man diff
Info: | Please make backups regularly! |
Warning: | Please make backups regularly! |
Exercises in Terminal (slide 137)
1. Find out the number of CPUs and amount of memory you have.
Answer: | |
There are multiple ways to find out the number of CPUs and amount of memory on Linux computer. the number of CPUs. 1. CPU(s): 40
On-line CPU(s) list: 0-39
Brief description: $ grep -c processor /proc/cpuinfo
40
As can be seen, there are 40 CPU cores in this computer. the amount of memory 1. 196698736 K total memory
4982596 K used memory
$ grep Mem[TF] /proc/meminfo
MemTotal: 196698740 kB
MemFree: 113479460 kB
As can be seen, MemT and MemF are matched by MemTotal and MemFree, respectively. The total amount of memory in the computer is 196 GB and there are 113 GB are freely available. |
2. Permanently change your vim color scheme.
Answer: |
Your personal vim configuration file is ~/.vimrc. In this file you can change the vim color scheme permanently. For example, the following setting uses the desert color scheme:
|