搜尋此網誌
2015年11月2日 星期一
針對 Window Server 2000 的 P2V/V2V
參考文件: http://www.weithenn.org/2014/05/p2v-v2v-window2000-esxi-vm.html
安裝及設定
步驟1. Windows Server 2000 安裝 VMware SCSI Disk Controller
下載 VMware SCSI Disk Controller驅動程式之後,
先在 Windows Server 2000 安裝「VMware SCSI Disk Controller」的驅動程式 。
步驟2. 執行 Windows Server 2000 轉換動作
步驟3. 修正轉換後 VM 無法開機的問題
2015年10月30日 星期五
讓 授權的使用者 不需知道 root 密碼 就能執行 root 任務 的指令 Sudo
Open a Terminal window. Type in sudo visudo
Add the following line to the END of the file (if not at the end it can be nullified by later entries):
開啟終端機畫面,直接輸入 sudo visudo
至檔案最尾端,編輯加入以下:
indy ALL=NOPASSWD: ALL
存檔完,還要關閉 Terminal window 生效。
重新登入後, 輸入 sudo bash
2015年9月27日 星期日
Windows 2012 Server 遠端桌面服務多重登入
在本機電腦原則視窗當中依序點選【電腦設定 > 系統管理範本 > Windows 元件 > 遠端桌面服務 > 遠端桌面工作階段主機 > 連線】。
在「連線」項目的右邊視窗當中點選【限制遠端桌面服務的使用者只能使用一個遠端桌面服務工作階段】項目,點選滑鼠右鍵選擇【編輯】。
2015年9月8日 星期二
2015年7月31日 星期五
2015年7月14日 星期二
在 Windows 8.1 清理 WinSxS 資料夾
以系統管理員身份執行執行下面的指令
Dism /online /Cleanup-Image /StartComponentCleanup /ResetBase
Dism /online /Cleanup-Image /StartComponentCleanup /ResetBase
在 Linux 下找出佔用磁碟空間最大的目錄/檔案
找出 /home 目錄中佔用磁碟空間最大的目錄
# du -hsx /home/* | sort -hr | head
找出前 10 大的檔案
# find /home -type f -printf '%s %p\n' | sort -nr | head
找出前 10 大的 exe 檔案
# find /home -type f -iname '*.exe' -printf '%s %p\n' | sort -hr | head
# du -hsx /home/* | sort -hr | head
找出前 10 大的檔案
# find /home -type f -printf '%s %p\n' | sort -nr | head
找出前 10 大的 exe 檔案
# find /home -type f -iname '*.exe' -printf '%s %p\n' | sort -hr | head
訂閱:
文章 (Atom)