2012年2月12日 星期日

破解Philips DVP3850播放器成全區的方法

剛在http://www.videohelp.com/dvdhacks/philips-dvp3850/11393找到的,可以破解Philips DVP3850限第三區成全區的方法。還沒試驗,但先記錄一下。
如下:
The old crack for PET7402/PET721 and the PD7012 works for 3850
1. 將機器的光碟片取出,並將電源開啟。
2. 點選設定(SETUP),並選取偏好(Preferences)
3. 在偏好(preferences)選取時,接著壓選|, PREVIOUS CHAPTER |<, NEXT CHAPTER>|,PREVIOUS CHAPTER |<
4. OSD 將會顯示目前的區碼
5. 壓選 Navigation Up 或 Navigation Down 的按鈕來選擇你的區碼
零(0) 表示全區開放.
6. 最後,按下 OK 確認你的區碼選擇。

注意:這區碼修改不知道可有多少次,希望沒有限制!

2012年2月3日 星期五

指令模式FTP無法看到回傳字串

怪哉!學校換了防火牆後,發現原本可以從server下指令ftp抓packages的方式,似乎會卡住。出現下面藍色的命令結果出來。查詢了一下,才發現老外早就有人討論!

EXTENDED PASSIVE MODE AND FIREWALLS
     Some firewall configurations do not allow ftp to use extended passive
     mode.  If you find that even a simple ls appears to hang after printing a
     message such as this:

           229 Entering Extended Passive Mode (|||58551|)

     then you will need to disable extended passive mode with epsv4 off.  See
     the above section The .netrc File for an example of how to make this
     automatic.

Above it states:

     epsv4       Toggle the use of the extended EPSV and EPRT commands on IPv4
                 connections; first try EPSV / EPRT, and then PASV / PORT.
                 This is enabled by default.  If an extended command fails
                 then this option will be temporarily disabled for the dura-
                 tion of the current connection, or until epsv4 is executed
                 again.

You can use this setting either via .netrc or as an interactive command.

意思就是,學校裡的防火牆應該設定不讓IPv4傳輸使用extended passive mode,你必須在傳輸前,手動下指令epsv4 off,或者採用如下設定方式,就可以一勞永逸。

在登入目錄下,開啟一個 .netrc設定檔,內容存成:
 default
 macdef init
 epsv4 off
再次連線試看看,就可以看到ftp server內容了。