Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Manage systemd Services and Units
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
List all services names.
service --status-all
-
List all systemd units.
systemctl
-
Disable a service.
systemctl disable service_name
-
Check whether systemd is running as PID 1.
ps --no-headers -o comm 1
A …
Get the Type of OS in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Run System Command in Go
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Comments¶
exec.Command
takes a shell command and optional arguments passed to the shell command, e.g.,exec.Command("ls", "-lha")
. It does not work if you pass a shell command with arguments as a single string toexec.Command
Reduce GRUB Timeout
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
Open the file
/etc/default/grub
with sudo permission.sudo vim /etc/default/grub
-
Update the value assigned to
GRUB_TIMEOUT
to a smaller one (e.g., 3). Notice that the time …
Benchmark Your Linux Machine Using phoronix-test-suite
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://github.com/phoronix-test-suite/phoronix-test-suite/