Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1043485
  • 博文数量: 157
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1388
  • 用 户 组: 普通用户
  • 注册时间: 2015-04-09 15:37
文章分类

全部博文(157)

文章存档

2023年(9)

2022年(2)

2021年(18)

2020年(7)

2017年(13)

2016年(53)

2015年(55)

我的朋友

分类: LINUX

2021-05-19 15:08:57

转载于:
我在python中执行:
cmd = "xxx"
os.system(cmd)
报错:

解决方法:

The problem could be, that in Ubuntu 11.x /bin/sh is linked to /bin/dash and not to bin bash.
check the link:

ls -l /bin/sh 

If /bin/sh is a link to /bin/dash, change it to /bin/bash.

sudo mv /bin/sh /bin/sh.orig  
sudo ln -s /bin/bash /bin/sh

阅读(3524) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~