星期四, 11月 13, 2014

[工商服務] KISSRADIO 大眾廣播 全新官方版 APP 正式登場 for iOS / Android (www.kiss.com.tw FM99.9 FM99.7)

【 KISS RADIO 全新官方APP 】

《iOS系統用戶》

Step 1 : 直接到 App Store 中搜尋 KISSRADIO (記得中間不要有空格呦~)


Step 2 : 下載安裝「KISSRADIO 大眾廣播」全新官方版 APP for APPLE用戶
  

  也可從這連 https://itunes.apple.com/us/app/kissradio/id934337342?l=zh&ls=1&mt=8

Step 3 : 打開它好好聽吧!!



《Android系統用戶》

Step 1 : 先將舊有的KISS RADIO APP移除 (收訊不穩定會影響新版使用喔)

Step 2 : 到PLAY商店中搜尋KISSRADIO(記得中間不要有空格呦)

  或 直接拿出手機掃瞄 QR Code直接連結下載。

  也可從這連 https://play.google.com/store/apps/details?id=com.kiss.aacplayer

Step 3 : 下載由「大眾廣播授權發佈」的全新官方版APP

Step 4 : 打開它好好玩吧!!

KISS RADIO 大眾廣播 www.kiss.com.tw FM99.9 FM99.7

星期一, 11月 10, 2014

ubuntu 9.10 移轉至 ESXi 5.0 無法開機 "error loading operating system"

ubuntu 9.10 P2V 成功移轉至 VMware ESXi 5.0 u3

Stage 1 :
一開始先用 VMware vConverter Standalone 將 ubuntu 線上直接轉換到 ESXi
轉換完成後,卻發現無法正常開機,出現 [error loading operating system]
查詢後應該是 grub 開機失敗!!

解決方式 ~ 重新安裝 grub
 1. 用 ubuntu live CD 或 ubuntu live USB 開機 選試用 進入 試用桌面 並開啟 終端機 
2. sudo fdisk -l    # 確定你安裝 ubuntu 的分割區 是 /dev/sdan, a 代表硬碟碼, n 代表分割區順序碼 
3. sudo mount /dev/sdan /mnt 
4. sudo mount --bind /dev /mnt/dev 
5. sudo mount --bind /dev/pts /mnt/dev/pts 
6. sudo mount --bind /proc /mnt/proc 
7. sudo mount --bind /sys /mnt/sys 
8. sudo chroot /mnt    # 切換 root 到 /mnt 下 
9. grub-install /dev/sda    # 注意 不加 sudo 
10. update-grub    # 注意 不加 sudo 
11. update-initramfs -u -k all    # 注意 不加 sudo 
12. exit 
13. sudo reboot
grub 重新安裝後,順利開機成功!!


Stage 2 :
但是,接著又發現磁碟無法讀寫,發現是 磁區 UUID 因為P2V系統重新產生跟舊有UUID不一致,因此無法讀寫!!

解決方式 ~ 查詢正確 UUID 並修改 fstab
1. 用 ubuntu live CD 或 ubuntu live USB 開機 選試用 進入 試用桌面 並開啟 終端機 
2. sudo fdisk -l    # 確定你安裝 ubuntu 的分割區 是 /dev/sdan, a 代表硬碟碼, n 代表分割區順序碼 
3. sudo mount /dev/sdan /mnt 
4. sudo blkid -s UUID    # 可以查到各分割區的UUID,先複製起來,待會需要用到 
5. sudo chroot /mnt    # 切換 root 到 /mnt 下 
6. mount -n -o remount,rw / 
7. vi /etc/fstab    # 將前面的UUID對應分割區一一修正後存檔 
8. dpkg --configure -a    # 重新設定所有安裝過的套件資訊 
9. exit 
10. sudo reboot

修正 fstab 正確的UUID後,系統便可以正常讀寫了!!


Stage 3 :
最後,網路服務無法運作,出現 "No such device eth0" 錯誤訊息

也是因為P2V的緣故,網卡MAC位址已變更為VM虛擬網卡,所以需要重新配置網路服務

解決方式 ~ 刪除網卡設定檔,讓系統重新產生來正確配置網路服務
1. sudo mv /etc/udev/rules.d/70-persistent-net.rules 
2. sudo reboot 
3. ifconfig -a    # 檢查網卡配置是否恢復正常 
4. sudo vi /etc/network/interfaces    # 如有需要請修改網卡IP設定

Finally Done!!


星期五, 5月 09, 2014

Allow Encrypted Attachments in Zimbra

Quote ~ http://www.techknowjoe.com/article/allow-encrypted-attachments-zimbra

To allow encrypted files to pass through to the recipient, The Global AS/AV setting 'Block Encrypted Files' needs to be disabled.  However, with my version of Zimbra 8.06, this setting cannot be set from the Admin GUI screen. The checkbox can be unchecked but clicking on Save doesn't actually save the setting, it just reverts back to being checked. Fortunately, it is possible to set it from the command line (as the zimbra user) with the command: zmprov mcf zimbraVirusBlockEncryptedArchive FALSE and then a restart of the server with: zmcontrol restart.
Note: You may not need to do a full restart of the server. Restarting the anti-virus application with zmamavisdctl reload or zmclamdctl restart should be sufficient. But, for some reason, I ended up with services not restarting properly and since my email server is just for a handful of users, doing a full restart was acceptable.