我在Linux上工作。我有两个程序,它们无限时间运行(也就是说,除非我杀死进程,否则不会停止)。我想先运行程序1,然后在20秒后运行程序2(两个程序都必须同时运行,因为其中一个读取另一个程序写入的文件)。目前,我通过手动跟踪时间来运行这2个程序。是否有自动化的方法?即是否有任何命令或可以编写任何程序来执行此操作。
For security reasons, it is desirable to check the integrity of code before execution, avoiding tampered software by an attacker. So, my question is How to sign executable code and run only trusted ...