# 三. Ubuntu常用命令与操作

# 1. 如何修改系统密码

# 参考链接:

https://blog.csdn.net/qq_43176116/article/details/88908431
换成了123,使用更方便

# 2. conda开机自动进入指定环境

# 基本操作:

在~/.bashrc文件中添加"source activate ros"

# 3. 找到指定进程并杀死

ps aux | grep appname
# 或者
pgrep -- pid appname
ps --pid [pid]
kill [pid]
# 批量删除指定进程
ps aux | grep appname | awk '{print $2}' | xargs kill -9

# 4. 多进程脚本

将&符号写在命令的最后

# 5. Linux文件操作

mv A B