스크립트를 실행하여 tmux를 시작하는 데 문제가 있습니다 sudo crontab -e
.
이 버전을 사용하면 제대로 작동할 수 있습니다.
* * * * * tmux new -d -s test_instance
그러나 스크립트를 사용한 이 접근 방식은 작동하지 않습니다.
* * * * * /home/user/Desktop/run
#!/bin/bash
tmux new -d -s test_instance
스크립트와 함께 crontab을 사용할 때 sudo tmux ls
.
나는 다음과 같은 몇 가지 변형을 시도했습니다.
sudo tmux new -d -s test_instance;
/bin/tmux new -d -s test_instance