1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 19:17:57 +01:00

Fix markdown lint warning for linux man pages

This commit is contained in:
lord63 2015-10-22 15:00:05 +08:00
parent 2b70e7ca14
commit 1d2d523b21
9 changed files with 14 additions and 16 deletions

View file

@ -3,16 +3,15 @@
> Debian and Ubuntu package management utility
- Synchronize list of packages and versions available. This should be run first, before running subsequent apt-get commands.
`apt-get update`
- install a new package
`apt-get install {{package}}`
- remove a package
`apt-get remove {{package}}`
- Upgrade installed packages to newest available versions

View file

@ -3,7 +3,7 @@
> Debian and Ubuntu package management utility
- Synchronize list of packages and versions available. This should be run first, before running subsequent aptitude commands.
`aptitude update`
- install a new package
@ -15,13 +15,13 @@
`aptitude search {{package}}`
- remove a package
`aptitude remove {{package}}`
- Upgrade installed packages to newest available versions
`aptitude upgrade`
- Upgrade installed packages (like `aptitude upgrade`) including removing obsolete packages and installing additional packages to meet new package dependencies.
- Upgrade installed packages (like `aptitude upgrade`) including removing obsolete packages and installing additional packages to meet new package dependencies.
`aptitude full-upgrade`

View file

@ -1,4 +1,4 @@
#dpkg
# dpkg
> debian package manager

View file

@ -14,6 +14,6 @@
`du -ah {{directory}}`
- list the KB sizes of directories for N levels below the specified directory
- list the KB sizes of directories for N levels below the specified directory
`du --max-depth=1`

View file

@ -10,7 +10,7 @@
`ip r`
- Make an interface up/down
- Make an interface up/down
`ip link set {{interface}} up/down`

View file

@ -1,4 +1,4 @@
#mdadm
# mdadm
> RAID management utility

View file

@ -3,7 +3,7 @@
> Arch Linux package manager utility
- synchronize and update all packages
`pacman -Syyu`
- install a new package
@ -11,7 +11,7 @@
`pacman -S package-name`
- remove a package and its dependencies
`pacman -Rs package-name`
- search the package database for a keyword

View file

@ -1,8 +1,8 @@
# strace
# strace
> Troubleshooting tool for tracing system calls
- Start tracing a specific process by its PID
- Start tracing a specific process by its PID
`strace -p {{pid}}`
@ -13,4 +13,3 @@
- Count time, calls, and errors for each system call and report a summary on program exit.
`strace -p {{pid}} -c`

View file

@ -16,7 +16,7 @@
`wpa_cli set_network {{number}} ssid {{SSID}}`
`wpa_cli set_network {{number}} psk {{passkey}}`
- enable network
- enable network
`wpa_cli enable_network {{number}}`