2023年7月27日 星期四

Vigor 2912 自救紀錄

***沒特地編排,紀錄用 ***

 

Vigor Bootloader 重燒韌體 Firmware 教學示範Boot Loading:
https://www.youtube.com/watch?v=5G2wz5m68Ho


Firmware Upgrade v3.7.1下載:
https://fw.draytek.com.tw/Utility/Firmware%20Upgrade/v3.7.1/Firmware%20Upgrade%20Utility_v3.7.1.zip

Vigor2912 V3.8.15韌體下載:
https://fw.draytek.com.tw/Vigor2912/Firmware/v3.8.15/Vigor2912_v3.8.15.zip

Vigor bootload 更新韌體失敗 韌體損毀 自救:
https://www.ublink.org/index.php/service/tech-know/vigor-tech/vigor-bootload-geng-xin-ren-ti-shi-bai-ren-ti-sun-hui-zi-ji


韌體請丟xxx.rst (恢復出廠預設值) 不要丟xxx.all (保留設定資料)

電狀態下壓住面板reset 孔20秒放開


網路卡手動指定ip為192.168.1.100

路由器ip 192.168.1.1

電腦有線網路接到vigor2912的lan孔

約10秒後放開迴紋針

2023年7月26日 星期三

Linux Ubuntu 22.04日期、時間、時區、校時設定

 Linux Ubuntu系統剛安裝好有可能會遇到時間或時區不正確的問題,該如何解決呢?小編今天就要來介紹如何在Linux Ubuntu 22.04系統中設定日期、時間、時區、校時等相關設定。

[時區設定]
(1)、查看時區

cat /etc/timezone

(2)、設定時區
設定時區為台灣:

sudo timedatectl set-timezone Asia/Taipei

(3)、查看可以設定的時區

timedatectl list-timezones


[網路校時]
(1)、查看校時狀態

timedatectl


※inactive=停用 ,active = 啟用

(2)、啟用校時

sudo timedatectl set-ntp on

sudo timedatectl set-ntp true

(3)、關閉校時

sudo timedatectl set-ntp off

(4)、查看校時服務狀態

systemctl status systemd-timesyncd.service


(5)、自訂校時NTP Server

vi /etc/systemd/timesyncd.conf



[手動
設定時間]

date -s "20230506 08:20:00"

※必須先把NTP服務停用,才可以自訂時間設定