整理些linux些常遇到的問題。
提供兩種最根本有效的方式,就是更改時區。這裡以更改為國內上海時間例子,其他地方時區同理。
備份檔案
mv /etc/localtime /etc/localtime.bak
複製時區檔案
cp /usr/share/zoneinfo/asia/shanghai /etc/localtime
這裡選擇了亞洲下的上海時區,可ls檢視各資料夾下的時區檔案。
檢視當前時間
date
是否已經是正確時間啦。一般建議使用第二種建立鏈結方式
備份檔案
mv /etc/localtime /etc/localtime.bak
建立軟鏈結
ln -s /usr/share/zoneinfo/asia/shanghai /etc/localtime
檢視當前時間
date
Linux下更改系統時區及時間
root localhost date fri apr 14 23 26 05 edt 2006 edt 美國 東區時區 root localhost date s 2011 9 30 fri sep 30 00 00 00 edt 2011 root localhost date s 14 18 ...
linux下更改Python版本
2017 7 5 15 30 1.首先檢視自己系統安裝了哪些python版本 輸入命令 ls usr bin python 2.檢視當前系統使用的預設版本 輸入命令 python version 3.基礎使用者修改 首先開啟 bashrc檔案,在檔案底部新增 python usr bin pytho...
Linux 下正確關機方法
2 關機命令 3 執行等級 聯網狀態 netstat a 後台執行的程式 ps aux 指向reboot的鏈結,相當於shutdown h 指向reboot的鏈結,相當於halt 附 shutdown,halt,poweroff區別 shutdown 使系統關閉,參考一下現有的解釋 命令安全地將系統...