要在Linux中設置固定IP地址,可以按照以下步驟進行操作:
sudo vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
sudo /etc/init.d/networking restart
ifconfig
或者ip addr
請注意,上述步驟適用于使用Debian或Ubuntu等基于Debian的Linux發行版。對于其他發行版(如CentOS或Fedora),網絡配置文件和重啟網絡服務的命令可能會有所不同。