什么是 update-rc 运行级别链接?

什么是 update-rc 运行级别链接?

我正在创建一个简单的脚本来编辑 Raspberry Pi SD 卡以启用 SSH(我知道可以通过其他方式完成,但我需要使用 update-rc 来完成)。我正在寻找运行时会发生什么update-rc ssh enable,以下是手册中写的内容:

   When run with the enable [ S|2|3|4|5 ]  options,  update-rc.d  modifies
   existing  runlevel  links  for  the script /etc/init.d/name by renaming
   stop links to start links with a sequence number equal to the  positive
   difference  of current sequence number minus 100, thus returning to the
   original sequence number that the script had been installed with before
   disabling it.

这些运行级别链接和序列号是什么?它们以什么形式出现?我查看了ls -la /etc/rc2.d,但我看到的只是一个简单的链接/init.d/ssh。如何修改这些运行级别链接和序列号?

相关内容