要在Ubuntu登录后运行脚本,可以将脚本添加到用户的启动脚本中。以下是一种方法:
myscript.sh
):nano ~/.bash_profile
#!/bin/bash
/path/to/your/script.sh
(将/path/to/your/script.sh
替换为你要运行的脚本的路径)
source ~/.bash_profile
现在,每次你登录到Ubuntu时,该启动脚本都会自动运行你的脚本。如果需要在GUI登录后运行脚本,可以将脚本添加到用户的启动应用程序中。