背景
Ubuntu系统有时即便sudo权限仍然无法权限不足,例如安装curl时:
apt-get update -y && apt-get install curl -y

解决
切换root账号
sudo -s
或者
sudo su -

退出root账号
exit

总结
Ubuntu系统中 sudo -s 可切换到root账号下执行命令。
Ubuntu系统有时即便sudo权限仍然无法权限不足,例如安装curl时:
apt-get update -y && apt-get install curl -y

sudo -s
或者
sudo su -

exit

Ubuntu系统中 sudo -s 可切换到root账号下执行命令。