自己使用版本Esxi 6.5下,安裝了 Debian 10的時候安裝畫面都無法顯示,
而Debian 9 卻是可以安裝,但是使用VNC或開機一陣子,系統會完全無法使用,
預測應該是Esxi 6.5 相容有問題,
後來整個升級成Esxi 6.7後,問題就不見了…….
Rex's
自己使用版本Esxi 6.5下,安裝了 Debian 10的時候安裝畫面都無法顯示,
而Debian 9 卻是可以安裝,但是使用VNC或開機一陣子,系統會完全無法使用,
預測應該是Esxi 6.5 相容有問題,
後來整個升級成Esxi 6.7後,問題就不見了…….
下載 Latest MegaRAID Storage Manager (MSM) 解壓縮
apt-get install alien
alien –scripts *.rpm (MSM目錄)
dpkg -i lib-utils2_*.deb
dpkg -i lib-utils_*.deb
dpkg -i megaraid-storage-manager_*.deb
./usr/local/MegaRAID Storage Manager/startupui.sh
sas*deb 不安裝
#rm /var/lib/dpkg/info/sas*.prerm
#dpkg -P sas-snmp
#dpkg -P sas-ir-snmp
apt-get install software-properties-common
add-apt-repository “deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main”
apt-get update
apt-get install oracle-java8-installer
javac -version
update-alternatives –config java
install smbclient
smbclient -L //IP -U administrator
使用Debian內建的螢幕分享,正常都可以在手機與Linux機器上連線,
唯獨在Windows使用 Tightvnc 時,會顯示不支援此安全類型,
必須關閉安全設定才行
apt-get install dconf-editor
安裝後打開 系統工具–dconf編輯器,
org/gnome/desktop/remote-access/require-encryption
將他關閉改成 False
儲存後即可連線了
安裝完 Debian9,使用一些指令發現無法使用 ifconfig,
查了一下原來是已經停用 ifconfig,改用 ip a 來取代,
但是如果還是想用 ifconfig 也是可以,
只要 apt-get install net-tools 即可
不管是用 WordPress 或者是 nibbleblog 等等設定固定網址時,
都會遇到404 Not Found 錯誤網頁打不開,
首先以nibbleblog 為例,於設定中開啟固定網址,會提示你將以下內容複製到.htaccess,
“開啟之前請確定伺服器是否已經將必須的模組開啟與設定正確,並且複製這個內容到”.htaccess”這個檔案裡面,這個檔案應該被放置在您的網域根目錄”
以上完成後,網頁即可正常顯示囉
apt-get install squid
vi /etc/squid/squid.conf
add:
acl CONNECT method CONNECT
acl lan src 192.168.1.0/24
http_access allow localhost
http_access allow lan
request_header_access Referer deny all
request_header_access X-Forwarded-For deny all
request_header_access Via deny all
request_header_access Cache-Control deny all
forwarded_for off
/etc/init.d/squid restart