Ubuntu常用命令整理

一些Ubuntu常用命令整理:

1. 更改用户密码

命令:#sudo passwd root

2. ubuntu中默认有拼音输入法,按“Ctrl+空格”键切换

3. 查看系统是32位的还是64位的

(1)命令:# uname -m(或者uname -a)

如果是i386 到 i686, 那就是32位系统;如果是x86_64 , 那就是64系统;

Ubuntu常用命令整理

(2)命令:# getconf LONG_BIT

Ubuntu常用命令整理

4.查看系统版本号

(1)命令:#cat /etc/issue

Ubuntu常用命令整理

(2)命令:# sudo lsb_release -a

Ubuntu常用命令整理

5. 查看内核版本号

命令:#uname -r

Ubuntu常用命令整理

6. unbutu中安装谷歌浏览器

在 Ubuntu 下直接访问  即可下载该浏览器,下载时按照自己的系统来确定下载安装包,之后安装 deb 包,就可以在 Internet 子菜单中发现 Google Chrome;

deb包安装方法,cd到下载的文件目录,命令:#dpkg –i file.deb

如果下载到的是rpm包,需要先转换成deb格式的包,然后安装即可,rpm包转换成deb包的方法:

sudo apt-get install alien #alien默认没有安装,所以首先要安装它(安装命令:apt-get install alien)

sudo alien xxxx.rpm #将rpm转换位deb,完成后会生成一个同名的xxxx.deb。

sudo dpkg -i xxxx.deb #安装。

更多Ubuntu相关信息见Ubuntu 专题页面 ?tid=2

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/21900.html