当前位置: 技术问答>linux和unix
chroot后自动执行
来源: 互联网 发布时间:2016-12-01
本文导语: 手动操作是这样:首先chroot /mnt/chroot 然后 /opt/tomcat/bin/startup.sh 最后exit 想写一个shell自动开机自动执行(自动运行tomcat,tomcat要chroot后才能正常运行),如果直接按手...
手动操作是这样:首先chroot /mnt/chroot
然后 /opt/tomcat/bin/startup.sh 最后exit
想写一个shell自动开机自动执行(自动运行tomcat,tomcat要chroot后才能正常运行),如果直接按手动操作的步骤写出来是不行的,可能是chroot后切换到了子shell(进程)了,要退出来才会执行下面的操作。这种调用子shell怎么执行程序??
然后 /opt/tomcat/bin/startup.sh 最后exit
想写一个shell自动开机自动执行(自动运行tomcat,tomcat要chroot后才能正常运行),如果直接按手动操作的步骤写出来是不行的,可能是chroot后切换到了子shell(进程)了,要退出来才会执行下面的操作。这种调用子shell怎么执行程序??
|
chroot /mnt/chroot /opt/tomcat/bin/startup.sh
|
后续命令另写脚本,做参数COMMAND执行
http://linux.die.net/man/1/chroot
http://linux.die.net/man/1/chroot