study/linux/commond.md

14 lines
177 B
Markdown
Raw Normal View History

2020-02-23 14:23:40 +00:00
# linux常用命令
- sudo 免密码使用
```sh
visudo
# 在最后面加入
your_user_name ALL=(ALL) NOPASSWD: ALL
```
- 查看最近一次重启时间
```sh
last reboot
```