目前使用 收到客戶寄送的. xls 檔案或是 PDA 程式轉出來的檔案 ,編輯並儲存後轉寄給 客戶 ,其中有一位卻無法開啟檔案,顯示
"找到無法讀取的內容 / Excel 無法藉由修復或移除無法讀取的內容來開啟檔案"
Microsoft Office 2010 (KB3054875) 的修正程式
文章標籤
This article provides an example of the configuration of a custom NTP server via CLI.
A custom NTP server can be configured via CLI as follows:
config system ntp
set ntpsync enable
set type custom -----> Change type first
set syncinterval 1
config ntpserver
edit 1
set server "1.1.1.1" -----> NTP server IP
set ntpv3 disable
next
end
set source-ip 0.0.0.0
set server-mode disable
end
首先停止 opensuse內建的防火牆
# /etc/init.d/SuSEfirewall2_init stop
# /etc/init.d/SuSEfirewall2_setup stop
# chkconfig SuSEfirewall2_init off
# chkconfig SuSEfirewall2_setup off
# vi /etc/ssh/sshd_config
Port 22
PasswordAuthentication no
修改成下方
PasswordAuthentication yes
OpenSSH Server 設定
環境本身已經預載了 OpenSSH Server,我們只需進行一些設定便可從外部 SSH 連線進去。
首先,先使用 ssh-keygen 產生 key,接著打開 sshd_config 來編輯設定:
$ sudo /usr/bin/ssh-keygen -A
$ sudo vim /etc/ssh/sshd_config
主要有兩個設定需要修改,分別是監聽的連接埠以及允許使用密碼認證的選項。
Port 22
......
PasswordAuthentication yes
最後只需啟動 OpenSSH Server 即可。
$ sudo /etc/init.d/ssh start