logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Ubuntu linux中切换到超级用户的方法

这样,在 Ubuntu 下切换到超级用户需要使用其他方法,主要有两种:  1) sudo -i  sudo 是 su 的加强版,意思是 do something as the supervisor。  不需要密码就可以得到 root 的权限。  但是它也有很多限制,比如,在默认的情况下,只能在 5 分钟之内使用 root 权限。  2)如果想一直使用 root 权限,还是要使用 su,还是要得到

#ubuntu#linux
github使用--ubuntu16.04

最近在ubuntu中使用github,下面把使用过程中的一些问题记录一下。一、安装git及一些基本设置1.安装gitsudo apt-get install git2.设置github账号信息git config --global user.name “your name here”git config --global user.email “your email@example...

到底了