python -c 'import pty;pty.spawn("/bin/bash")'
半交互式shell问题:1、vi编辑文件不方便;2、命令行上下左右乱码;3、不能补全等
echo $TERM
Ctrl+Z
stty raw -echo
fg
reset
tmux-256color
此时有个问题,输入reset之后回车会乱码^M。查看系统使用的shell解析器,需要改为bash并重启系统。
echo $SHELL
chsh -s /bin/bash
reboot
python -c 'import pty;pty.spawn("/bin/bash")'
Ctrl+Z
stty raw -echo
fg
reset
tmux-256color
Mark 一下