mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 17:15:32 +02:00
last: add Dutch translation (#13483)
This commit is contained in:
parent
992809dbee
commit
538f4d0568
2 changed files with 65 additions and 0 deletions
28
pages.nl/common/last.md
Normal file
28
pages.nl/common/last.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# last
|
||||
|
||||
> Bekijk de laatst ingelogde gebruikers.
|
||||
> Meer informatie: <https://manned.org/last>.
|
||||
|
||||
- Bekijk de laatste logins, hun duur en andere informatie uit `/var/log/wtmp`:
|
||||
|
||||
`last`
|
||||
|
||||
- Geef aan hoeveel van de laatste logins moeten worden weergegeven:
|
||||
|
||||
`last -n {{aantal_logins}}`
|
||||
|
||||
- Toon de volledige datum en tijd voor vermeldingen en toon vervolgens de hostnaam-kolom als laatste om afkapping te voorkomen:
|
||||
|
||||
`last -F -a`
|
||||
|
||||
- Bekijk alle logins van een specifieke gebruiker en toon het IP-adres in plaats van de hostnaam:
|
||||
|
||||
`last {{gebruikersnaam}} -i`
|
||||
|
||||
- Bekijk alle geregistreerde herstarts (d.w.z. de laatste logins van de pseudo-gebruiker "reboot"):
|
||||
|
||||
`last reboot`
|
||||
|
||||
- Bekijk alle geregistreerde uitschakelingen (d.w.z. de laatste logins van de pseudo-gebruiker "shutdown"):
|
||||
|
||||
`last shutdown`
|
37
pages.nl/linux/last.md
Normal file
37
pages.nl/linux/last.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# last
|
||||
|
||||
> Toon informatie over de laatste gebruikerslogins.
|
||||
> Bekijk ook: `lastb`, `login`.
|
||||
> Meer informatie: <https://manned.org/last.1>.
|
||||
|
||||
- Toon logininformatie (bijv. gebruikersnaam, terminal, opstarttijd, kernel) van alle gebruikers:
|
||||
|
||||
`last`
|
||||
|
||||
- Toon logininformatie van een specifieke gebruiker:
|
||||
|
||||
`last {{gebruikersnaam}}`
|
||||
|
||||
- Toon informatie van een specifieke TTY:
|
||||
|
||||
`last {{tty1}}`
|
||||
|
||||
- Toon de meest recente informatie (standaard staan de nieuwste bovenaan):
|
||||
|
||||
`last | tac`
|
||||
|
||||
- Toon informatie over systeemopstarts:
|
||||
|
||||
`last "{{system boot}}"`
|
||||
|
||||
- Toon informatie met een specifiek [t]ijdstempel formaat:
|
||||
|
||||
`last --time-format {{notime|full|iso}}`
|
||||
|
||||
- Toon informatie [s]inds een specifieke tijd en datum:
|
||||
|
||||
`last --since {{-7days}}`
|
||||
|
||||
- Toon informatie (bijv. hostnaam en IP) van externe hosts:
|
||||
|
||||
`last --dns`
|
Loading…
Add table
Reference in a new issue