• 當你要管理的機器越來越多,而且經常需要透過遠端桌面連線管理時,是不是常常忘記 "現在在哪裡?"
    今天要介紹一個好用的工具叫做 BGInfo。
    這是一個微軟提供的工具,可以到這邊下載 http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx
     
    這是一個 standalone 的小程式,下載後解開就可以了!
    使用非常簡單,點兩下執行,然後選擇看你要呈現那些資訊
    aa2a1206d8bebaffb31d85ff59e15e28.png
    Windows | 8408 觀看 | 2014-08-26 | 洪國恩 上傳
  • 34b0d965e552f53009b28e4cb6d23d8b.png如果想要在 Win7 上設定 Port forwarding,似乎沒有 UI 介面可以設定,所以可能就需要透過 netsh 指令來設定了!
     
    以下為範例
    把 Local 的 8080 對應到 192.168.216.138:80
    netsh interface portproxy add v4tov4 listenport=8080 listenaddress=192.168.1.27 connectport=80 connectaddress=192.168.216.138
     
    要刪除的話則 
    netsh interface portproxy delete v4tov4 listenport=8080 listenaddress=192.168.1.27
     
    記得要使用系統管理者權限執行喔!
    Windows | 14419 觀看 | 2014-08-26 | 洪國恩 上傳
  • db20553b1e582ccadd0709e61af6dce2.png由於 HTML5 針對 MPEG Streaming 越來越細緻,也需要做得好,所以紀錄一下研究的結果!
     
    MPEG-DASH (Dynamic Adaptive Streaming over HTTP) 是一個可調整 bitrate 的 streaming 技術。透過這樣的技術,可以在收看 streaming 時,針對網路的流量來調整最適合的品質播放。最常見的就是 youtube,如果仔細觀察就會發現,品質是可以根據用戶的網路速度來調整的。如果想要觀察這樣的行為,可以直接用這個網址測試!
     
    這樣就可以直接切換不同的頻寬的影片了。
    使用 DASH 的好處是,不僅可以切換不同品質的影片,也能夠把聲音跟影像分開!這樣才能夠保證在切換的時候不會造成聲音停頓的問題!
    Web 相關 | 7313 觀看 | 2014-08-20 | 標籤: mpeg, dash, MPEG-DASH, cat_networking | 洪國恩 上傳
  • 使用最小安裝的 CentOS 是不包含 nfs 的 mount util 的! 所以如果下 mount nfs 的指令就會出現
    # mount -t nfs 192.168.1.101://storage /mnt/storage
    mount: wrong fs type, bad option, bad superblock on 192.168.1.101://storage,
           missing codepage or helper program, or other error
           (for several filesystems (e.g. nfs, cifs) you might
           need a /sbin/mount.<type> helper program)
           In some cases useful info is found in syslog - try
           dmesg | tail  or so
    
     
    使用 dmesg | tail 則會看到類似下面的訊息
    # dmesg | tail
    e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
    RPC: Registered named UNIX socket transport module.
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    RPC: Registered tcp NFSv4.1 backchannel transport module.
    Slow work thread pool: Starting up
    Slow work thread pool: Ready
    FS-Cache: Loaded
    NFS: Registering the id_resolver key type
    FS-Cache: Netfs 'nfs' registered for caching
     
    此時只要安裝 nfs-utils 即可!
    yum install nfs-utils
     
    如果是 Window 網芳則加入 cifs 即可
    yum install cifs-utils
    
     
    加好後就可以正常 mount 了!
     
    別忘了在 /etc/fstab 加入設定,這樣開機才會自動 mount 喔!
    Linux | 13184 觀看 | 2014-08-16 | 洪國恩 上傳
  • 這是個滿特別的錯誤,雖然不是在我遇到的,不過記錄一下,以後遇到就知道怎麼解決囉!
     
    PHP Warning: require_once(): Unable to allocate memory for pool. in .....
    這是主要出現的錯誤訊息。從訊息上看起來不太知道問題是甚麼,因為即使把 php.ini 中的 memory_limit 加大也沒甚麼用處!
    因為主要的問題是出現在 APC (Alternative PHP Cache) ,原因不明,但是解決方法很簡單,修改 apc.ini 即可.
    ; 確認產生 tmp 的路徑及規則
    apc.mmap_file_mask=/tmp/apc.XXXXXX
    
    ; Shared memory 的大小
    apc.shm_size=96M
    
    ; Cache 的存活時間
    apc.ttl=3600
    
    ; User cache 的存活時間
    apc.user_ttl=3600
    
    ; Garbage-collection 的時間
    apc.gc_ttl=3600
    
    
    
     
    修改完之後再重新啟動 httpd 就可以囉!
    PHP | 4042 觀看 | 2014-08-13 | 標籤: php, httpd.conf, apc, Unable To Allocate Memory For Po, require_once, cat_web_development | 洪國恩 上傳
  • 46d8d217469b28f76fec6c621ec16a26.jpg
    最近申請了中華電信的 hicloud ,新掛載 storage 時需要自己動手 fdisk & mount
     
    很久沒手動做這個事情了!~ 記錄一下免得忘記!
    Linux | 6517 觀看 | 2014-07-31 | 標籤: linux, fdisk, hicloud, mount, ext4, cat_operating_system | 洪國恩 上傳
  • 數位學習 | 8380 觀看 | 2014-07-21 | 標籤: mooc, expectation, reality, cat_guides_tutorials | 洪國恩 上傳