Task #5753
closedCreate Linux beginners guide
0%
Description
Updated by Nico Schottelius about 6 years ago
- Description updated (diff)
- Due date set to 10/10/2018
Updated by Marc Auer about 6 years ago
Linux Beginner Guide¶
ps aux
ps - snapshot of of the current processes.
a = show processes for all users
u = display the process's user/owner
x = also show processes not attached to a terminal
pipe'ing¶
A pipe is a form of redirection that is used in Linux and other Unix-like operating systems to send the output of one program to another program for further processing.
example: ip addr | grep inet
Mini screen manual¶
Screen is an application that allows multiple use of terminal sessions within one window.
ctrl + a + c = open new Screen session
screen -S sitzung1 = opens a new session, named "sitzung 1"
screen -ls = lists all available sessions
Updated by Nico Schottelius almost 6 years ago
- Due date changed from 10/10/2018 to 01/03/2019
Marc, please create a wiki page named "Linux beginners guide" and turn it into an article that users can go through.
I.e.
```
h2. How to use piping
... what is piping?
... 2-3 examples that can be used by the users
```
And like the other pages, have a STATUS section at the beginning. Please finish by next week.
Updated by Marc Auer almost 6 years ago
- added wiki page
- added tutorials$
- added basic directories
Updated by Nico Schottelius over 5 years ago
- Status changed from In Progress to New
- Assignee deleted (
Marc Auer)