嵌入式Linux开发板配置静态IP
- Chapter1 嵌入式Linux开发板配置静态IP
- Chapter2 Linux命令之hwclock - 查询和设置硬件时钟
Chapter1 嵌入式Linux开发板配置静态IP
修改interfaces配置文件,普通用户interfaces文件权限只可读,首先切换到root权限。
sudo -i
vi /etc/network/interfaces
文件里添加如下信息,对应于以太网接口配置的网口信息,键盘按Esc,输入:wq 保存退出即可。
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.195
network 192.168.1.0
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
系统重启后:
Chapter2 Linux命令之hwclock - 查询和设置硬件时钟
常用参数
-r, --show 读取并打印硬件时钟(read hardware clock and print result )
-s, --hctosys 将硬件时钟同步到系统时钟(set the system time from the hardware clock
-w, --systohc 将系统时钟同步到硬件时钟(set the hardware clock to the current system time
hwclock -w 配合 date -s 把当前系统时间同步到RTC硬件时间里面。