mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 21:07:00 +00:00
Update README.md
This commit is contained in:
parent
46684db867
commit
934f793da8
55
README.md
55
README.md
@ -29,6 +29,7 @@ http://onceupon.github.io/Bash-Oneliner/
|
|||||||
- [Xwindow](#xwindow)
|
- [Xwindow](#xwindow)
|
||||||
- [System](#system)
|
- [System](#system)
|
||||||
- [Hardware](#hardware)
|
- [Hardware](#hardware)
|
||||||
|
- [Networking](#networking)
|
||||||
- [Others](#others)
|
- [Others](#others)
|
||||||
|
|
||||||
## Terminal Tricks
|
## Terminal Tricks
|
||||||
@ -1264,12 +1265,6 @@ xcowsay
|
|||||||
ps
|
ps
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Check graphics card
|
|
||||||
|
|
||||||
```bash
|
|
||||||
lspci
|
|
||||||
```
|
|
||||||
|
|
||||||
##### Show IP address
|
##### Show IP address
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@ -1983,6 +1978,54 @@ ipmitool -U your_bmc_username -P your_bmc_userpassword -I lanplus -H your_bmc_ip
|
|||||||
```bash
|
```bash
|
||||||
ipmitool sensors |grep -i Temp
|
ipmitool sensors |grep -i Temp
|
||||||
```
|
```
|
||||||
|
## Networking
|
||||||
|
[[back to top](#handy-bash-oneliner-commands)]
|
||||||
|
|
||||||
|
##### Display IP address
|
||||||
|
```bash
|
||||||
|
ip a
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Display route table
|
||||||
|
```bash
|
||||||
|
ip r
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Display ARP cache (ARP cache displays the MAC addresses of deveice in the same network that you have connected to)
|
||||||
|
```bash
|
||||||
|
ip n
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Add transient IP addres (reset after reboot) (e.g. add 192.168.140.3/24 to device eno16777736)
|
||||||
|
```bash
|
||||||
|
ip address add 192.168.140.3/24 dev eno16777736
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Persisting network configuration changes
|
||||||
|
```bash
|
||||||
|
sudo vi /etc/sysconfig/network-scripts/ifcfg-enoxxx
|
||||||
|
# then edit the fields: BOOTPROT, DEVICE, IPADDR, NETMASK, GATEWAY, DNS1 etc
|
||||||
|
```
|
||||||
|
##### Refresh NetworkManager
|
||||||
|
```bash
|
||||||
|
sudo nmcli c reload
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Restart all interfaces
|
||||||
|
```bash
|
||||||
|
sudo systemctl restart network.service
|
||||||
|
```
|
||||||
|
|
||||||
|
##### To view hostname, OS, kernal, architecture at the same time!
|
||||||
|
```bash
|
||||||
|
hostnamectl
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Set hostname (set all transient, static, pretty hostname at once)
|
||||||
|
```bash
|
||||||
|
hostnamectl set-hostname "mynode"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Others
|
## Others
|
||||||
[[back to top](#handy-bash-oneliner-commands)]
|
[[back to top](#handy-bash-oneliner-commands)]
|
||||||
|
Loading…
Reference in New Issue
Block a user