ubuntu 常用命令 备忘

1、查看软件安装路径:whereis 【名称】,例如:whereis ant

2、模糊或过滤查找某一个文件名称:grep 【名称】,例如:ls / | grep 'bin'

3、ubuntu 修改时区:dpkg-reconfigure tzdata

4、挂载共享文件: mount //192.168.1.130/_00000 /media/_00000 -o username=x,password=x

5、ubuntu提示:

make: *** No targets specified and no makefile found.  Stop.
解决办法:sudo apt-get install build-essential
下载慢的话修改一下镜像源:http://www.linuxidc.com/Linux/2013-05/83902.htm
5、linux无密码登录:ssh-keygen –t rsa –P ''》cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys》chmod 600 ~/.ssh/authorized_keys》vim /etc/ssh/sshd_config》RSAAuthentication yes # 启用 RSA 认证,PubkeyAuthentication yes # 启用公钥私钥配对认证方式,AuthorizedKeysFile .ssh/authorized_keys # 公钥文件路径(和上面生成的文件同)》service sshd restart

你可能感兴趣的:(linux)