2025-03-14 21:59:59 -06:00
|
|
|
# svcs
|
|
|
|
|
|
|
|
|
|
> Geef informatie over actieve services.
|
2026-08-06 22:19:46 -06:00
|
|
|
> Meer informatie: <https://www.unix.com/man-page/sunos/1/svcs>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Oplijsting van alle actieve services:
|
|
|
|
|
|
|
|
|
|
`svcs`
|
|
|
|
|
|
|
|
|
|
- Oplijsting van alle inactieve services:
|
|
|
|
|
|
|
|
|
|
`svcs -vx`
|
|
|
|
|
|
|
|
|
|
- Geef informatie over een specifieke service:
|
|
|
|
|
|
|
|
|
|
`svcs apache`
|
|
|
|
|
|
|
|
|
|
- Toon de locatie van de log file van een service:
|
|
|
|
|
|
|
|
|
|
`svcs -L apache`
|
|
|
|
|
|
|
|
|
|
- Toon de laatste lijnen van een service log file:
|
|
|
|
|
|
|
|
|
|
`tail $(svcs -L apache)`
|