2024年5月23日 星期四

Nutanix平台虛擬機(UBUNTU),利用Veeam備份移轉至VMware平台,安裝套件、系統更新出現錯誤

 mount: /var/lib/grub/esp: special device /dev/disk/by-id/scsi-SNUTANIX_VDISK_NFS_4_0_7672_2d41cbaa_025e_4fac_849c_9e620eff5bff-part1 does not exist.
Errors were encountered while processing:
 grub-efi-amd64-signed
 shim-signed

出現上面的訊息,可以試著刪除config.dat cache檔案:

sudo rm /var/cache/debconf/config.dat

再執行 sudo dpkg --configure -a 試試能否解決問題。


移除 nutanix guest tools:

sudo python3 /usr/local/nutanix/ngt/python/bin/uninstall_ngt.py


UBUNTU系統更新 apt update && apt upgrade 出現錯誤訊息:
E: Method https has died unexpectedly!
E: Sub-process https received signal 4.

編輯 .bashrc 檔案,在第1行增加:export  GNUTLS_CPUID_OVERRIDE=0x1


停用VEEAM備份軟體服務:
sudo systemctl stop veeamtransport.service veeamdeployment.service

sudo systemctl disable veeamtransport.service veeamdeployment.service


2023年11月17日 星期五

ManageEngine EventLog Analyzer版本更新步驟



先將下載的更新檔上傳到主機裡,再進行下列動作。

切換到 ManageEngine EventLog Analyzer 安裝目錄:
                                                  cd /opt/ManageEngine/EventLog/bin

接著停止EventLog Analyzer服務:
                                                   sudo ./shutdown.sh

EventLog Analyzer服務停止後,執行:
                                                    sudo ./UpdateManager.sh -c

Press i to  Install
      c to  Import Certificate
      v to  View installed ServicePack versions
      e to  Exit
Choose an Option:i

選擇「i」 輸入更新檔路徑進行 PPM更新檔安裝程序:
Enter the patch file to install:/home/xxxxx/ManageEngine_EventLog_Analyzer_12_3_0_SP-12_3_2_8.ppm

更新完成,需要重新啟動服務:
                                                       sudo systemctl start eventloganalyzer
確認一下服務是否正常啟動:
                                                       sudo systemctl status eventloganalyzer

2023年10月11日 星期三

GPO 派送 Powershell script 關閉 Windows 10、11 Wi-Fi 「隨機硬體位址」

適用環境:

Wi-Fi 連線需要固定 Mac Address 位址


缺點:

利用 Wi-Fi 連線,送出的 Mac Address 都是實體位址,不會再隨機產生新的 Mac Address。


作法:

電腦開機登入系統時,執行 Powershell script 取得 Wi-Fi 的實體 Mac Address,再將取得的 Mac Address 寫入機碼。


設定 GPO:

1.將 Script 放入 \\AD_Domain\netlogon 裡。

2.設定GPO Policy 


其他 GPO 項目的設定值,可以自行參考作者文章,測試是否需要調整。

參考文章及引用:

1. Script to Disable "Use Random MAC Addresses" for wifi : r/SCCM (reddit.com)

2. Running PowerShell Startup (Logon) Scripts Using GPO | Windows OS Hub (woshub.com)

2023年3月9日 星期四

利用GPO或CMD關閉Windows 11 工具列小圖示

指令方式調整工具列圖示:

搜尋:

reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v SearchboxTaskbarMode /t REG_DWORD /d 0 /f

工作檢視:

reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton /t REG_DWORD /d 0 /f

聊天:

reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarMn /t REG_DWORD /d 0 /f

小工具:

reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarDa /t REG_DWORD /d 0 /f


GPO方式調整工具列圖示:

將上面的路徑轉換為GPO方式統一派送到使用者電腦



2019年11月19日 星期二

VMWare ESXi 6.5 VLAN 串接 CISCO Port-channel 設定

CISCO Switch 設定
設定 Port-channel 時最好不要接網路線或者把一個 Port shutdown,以免造成 loop
#config terminal
(config)#interface gi1/0/1
(config-if)#channel-group 1 mode on
(config-if)#switchport mode trunk

(config-if)#interface gi1/0/2
(config-if)#channel-group 1 mode on
(config-if)#switchport mode trunk

(config-if)#interface po1
(config-if)#switchport mode trunk

檢查 Switch witch 設定,確認 interface gi1/0/1、interface gi1/0/2 和 Port-channel1 是否為 up
#show ip interface brief

#show etherchannel summary
Group  Port-channel  Protocol    Ports
------+-------------+-----------+-----------------------------------------------
1      Po1(SU)          -        Gi1/0/1(P)  Gi1/0/2(P)

#show interface po1
Port-channel1 is up, line protocol is up (connected) 
  Hardware is EtherChannel, address is 2222.3333.4444 (bia 2222.3333.4444)
  Description: VM_LAB
  MTU 1500 bytes, BW 2000000 Kbit/sec, DLY 10 usec,
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation ARPA, loopback not set
  Keepalive set (10 sec)
  Full-duplex, 1000Mb/s, link type is auto, media type is unknown
  input flow-control is off, output flow-control is unsupported
  Members in this channel: Gi1/0/1 Gi1/0/2


VMware ESXi vSwitch 設定
新增 vSwitch 設定,按【新增上行】可加入多張網路介面到 vSwitch

負載平衡 欄位需選擇【根據 IP 雜湊進行路由


VMware ESXi  VLAN ID 設定
新增 VLAN 連接群組

要新增多個連接埠,重複上圖步驟即可加入多個VLAN到Trunk_vSwitch裡。

設定好的 VLAN 欄位值



如果沒有其他設備的問題,依上面步驟就可設定好 VMWare ESXi VLAN 串接 CISCO Port-channel

我自己是遇到 CISCO Switch 的 VTP mode 被設定為 Server,找了好久才找到問題!!!!!!!!!




2019年5月16日 星期四

Office 365修改單一使用者的OneDrive儲存空間



1.      下載、安裝SharePoint Online套件


2.      輸入連線指令

$adminUPN="hansen@sample.com.tw"

$orgName="sample"

$userCredential = Get-Credential -UserName $adminUPN -Message "Type the password."

Connect-SPOService -Url https://$orgName-admin.sharepoint.com -Credential $userCredential

3.      開啟 Office 365 管理網頁,切換到【使用者】、【作用中使用者】,選擇要修改OneDrive空間的使用者


4.      設定此一使用者OneDrive空間容量為 1T(1048567) 或 5T(5242880),依訂閱的類型可用的儲存空間也不同。
Set-SPOSite -Identity https://sample-my.sharepoint.com/personal/kings01_sample_com_tw -StorageQuota 5242880


2019年4月5日 星期五

釋放 iPhone 記憶體(RAM)

引用網友的小祕訣:
在 iPhone 快速運作過程中,需要記憶體作為暫時存放程式、指令或資料的地方,用來提昇整體的效能。你可能會發現當你開越多 App 在背景執行 iPhone 會變得越來越卡,就是記憶體不足的關係。

快速釋放記憶體操作方式:
1. 長按電源鍵至滑動關機頁面
2. 接著長按 Home 鍵並等待回復至桌面即可自動釋放記憶體。

Nutanix平台虛擬機(UBUNTU),利用Veeam備份移轉至VMware平台,安裝套件、系統更新出現錯誤

 mount: /var/lib/grub/esp: special device /dev/disk/by-id/scsi-SNUTANIX_VDISK_NFS_4_0_7672_2d41cbaa_025e_4fac_849c_9e620eff5bff-part1 does n...