updating startRunners command.
This commit is contained in:
19
docs/lxc-world.md
Normal file
19
docs/lxc-world.md
Normal file
@ -0,0 +1,19 @@
|
||||
##### LXC Commands
|
||||
|
||||
|
||||
`lxc-top`:
|
||||
|
||||
Realtime Meta data about containers(not machine friendly). Monitor container statistics.
|
||||
|
||||
`lxc-ls --fancy`:
|
||||
|
||||
list of existing containers
|
||||
|
||||
`lxc-start-ephemeral`, `lxc-copy`:
|
||||
|
||||
start an ephemeral copy of an existing container
|
||||
|
||||
|
||||
`lxc-attach`:
|
||||
|
||||
start a process inside a running container.(enter the droplet)
|
27
docs/memory-managment.md
Normal file
27
docs/memory-managment.md
Normal file
@ -0,0 +1,27 @@
|
||||
##### Memory Managment
|
||||
|
||||
|
||||
`free`, `free -h`:
|
||||
|
||||
display amount of free and used memory in the system.
|
||||
* Disclamers:
|
||||
- DO NOT USE IN SCRIPT
|
||||
|
||||
`/proc/`:
|
||||
|
||||
It is actually an kernel application. Looks like a file, but is actually generated on demand by the kernel. All "files" in proc are kernal commands. Interact with these commands as if they were files.
|
||||
|
||||
|
||||
`/proc/meminfo`:
|
||||
|
||||
File containing realtime memory info.
|
||||
|
||||
`/proc/cpuinfo`:
|
||||
|
||||
cpu info
|
||||
|
||||
|
||||
|
||||
`/dev`:
|
||||
|
||||
DANGER This folder contains physical interfaces to hardware on or connected to the machine. Just don't. Read first. Except `/dev/null` it is a blackhole.
|
Reference in New Issue
Block a user