This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.) Connect to ACLC KomSpec | |
2.) Login - use your account/code | |
3.) type command "ifconfig" | |
- take note of wlan0 | |
- look for "inet addr:xxx.xxx.xxx.xxx" | |
4.) type command "netstat -r" | |
- take note of Gateway IP | |
5.) type command "ip -4 addr show dev wlan0 | grep inet" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.) sudo nano /etc/network/interfaces | |
2.) Encode the following: | |
auto lo | |
iface lo inet loopback | |
iface eth0 inet dhcp | |
allow-hotplug wlan0 | |
auto wlan0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://www.thegeekdiary.com/how-to-check-centos-version/ | |
# package centos-release | |
rpm -ql centos-release | grep release$ | |
cat /etc/redhat-release | |
cat /etc/centos-release | |
cat /etc/os-release | |
cat /etc/system-release | |
rpm -qf /etc/redhat-release |