Skip to main content

Questions tagged [sysv]

0 votes
1 answer
289 views

Prior to RHEL 7, their distributions were built on SysV, a manager that looks much like the legacy System V (init.d, rc, runlevels...). They changed it to systemd from RHEL 7. But what is the real ...
Sandburg's user avatar
  • 359
2 votes
1 answer
702 views

After upgrading Debian11/KDE to Debian12, restarting and running sudo apt-get upgrade I get this: The following packages have been kept back: sysv-rc-conf. I can't install it because then it asks to ...
mYnDstrEAm's user avatar
  • 4,962
0 votes
1 answer
458 views

I have a very simple SysVinit service in /etc/rc.d: #!/bin/bash PIDFILE="/var/run/test.pid" status() { if [ -f "$PIDFILE" ]; then echo 'Service running' return 1 fi ...
Maestro's user avatar
  • 233
1 vote
1 answer
637 views

Linux supports two kinds of message queues: POSIX (i.e., those created by mq_open), and System V (i.e., those created by msgget). For POSIX message queues, mq_overview(7) documents that you can ...
Joseph Sible-Reinstate Monica's user avatar
2 votes
1 answer
270 views

Back in the days of “service servicename stop” you could then press up arrow to get last command, and your cursor is right on the “stop”, so you could press backspace 4 times and type “start”... now I ...
MicDunDee's user avatar
0 votes
0 answers
296 views

I'm reading about SysV init and I see there are levels 0-6. I understand that level 4 could be defined by the OS operator for special purposes, but I'm having trouble thinking of any examples. Has ...
Philip Kirkbride's user avatar
0 votes
1 answer
2k views

So when I run $ ipcs, the shared memory segment section returns a variety of results: ------ Shared Memory Segments -------- key shmid owner perms bytes nattch status ...
John Von Neumann's user avatar
0 votes
1 answer
1k views

In systemd-based distros there is a tool run via systemd-analyze which allows the user to determine boot time [kernel and userspace, the time it took for the system to boot up]. Is there a similar ...
C26's user avatar
  • 155
2 votes
0 answers
581 views

I am running Ubuntu 16.04.3. I have configured that a docker container sends email using the host's smtp (postfix). In order for this to work, I have to add the docker network to postfix's main.cf ...
ColdAir's user avatar
  • 21
0 votes
1 answer
589 views

I have the /usr/lib/systemd and /etc/systemd directories, and systemd is running. But I also have the /etc/init/ directory, with several .conf configuration files, I thought this was a sign of ...
Pierre B's user avatar
  • 2,293
2 votes
2 answers
8k views

Is /etc/init.d the default search path that the systemd generator uses to convert native SysV script to unit files, and falls back to /etc/rc?.d or vice versa? From this answer by @JdeBP: This ...
direprobs's user avatar
  • 1,064