亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊(cè) 查看新帖 |

Chinaunix

  平臺(tái) 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 51138 | 回復(fù): 114
打印 上一主題 下一主題

[FreeBSD] Basic FreeBSD Setup as Desktop (FreeBSD占有率99.8% ^_^) [復(fù)制鏈接]

論壇徽章:
13
15-16賽季CBA聯(lián)賽之同曦
日期:2016-01-28 19:52:032015亞冠之北京國安
日期:2015-10-07 14:28:19NBA常規(guī)賽紀(jì)念章
日期:2015-05-04 22:32:03處女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午馬
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56獅子座
日期:2013-09-08 08:37:52
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2012-06-09 15:51 |只看該作者 |倒序?yàn)g覽
本帖最后由 ulovko 于 2013-04-06 11:14 編輯

官方簡體中文安裝手冊(cè):http://www.freebsd.org/doc/zh_CN/books/handbook/
官方en_US安裝手冊(cè):http://www.freebsd.org/doc/en_US ... handbook/index.html
官方簡體中文安裝手冊(cè) 下載: ftp://ftp.freebsd.org/pub/FreeBSD/doc/zh_CN/books/handbook/

FROM: http://blog.chinaunix.net/uid-25256412-id-2939430.html
1: 使用 USB 安裝 FreeBSD(設(shè)備編號(hào)自行修改)
  1. # dd if=9.1-RELEASE-amd64-memstick.img of=/dev/da1 bs=10240 conv=sync
復(fù)制代碼
Tips: Windows環(huán)境下如何將 *.img 寫入U(xiǎn)SB ?
Image Writer for Windows:  https://launchpad.net/win32-image-writer/+download
win32diskimager-binary.zip (5.4 MB, 下載次數(shù): 6987)


安裝過程中會(huì)詢問關(guān)于網(wǎng)絡(luò)配置,會(huì)許有的人配置不正確導(dǎo)致無法連接internet!
給出兄弟我的配置:

  1. > more /etc/rc.conf
  2. hostname="ko.kotzu.org"
  3. defaultrouter="192.168.1.1"

  4. ifconfig_alc0="inet 192.168.1.5 netmask 255.255.255.0"
  5. ifconfig_alc0_ipv6="inet6 accept_rtadv"

  6. # Wireless
  7. #wlans_ath0="wlan0"
  8. #ifconfig_wlan0="WPA DHCP"
  9. #ifconfig_wlan0="WPA inet 192.168.1.5 netmask 255.255.255.0"
  10. #ifconfig_wlan0_ipv6="inet6 accept_rtadv"

復(fù)制代碼
還有一點(diǎn)關(guān)于WIFI !
著個(gè)其實(shí)不用寫什么了!
官方文檔有簡體中文,寫的非常詳細(xì)!

下載頁面:ftp://ftp.freebsd.org/pub/FreeBS ... 312/books/handbook/
在線觀看:http://docs.freebsd.org/doc/9.0- ... twork-wireless.html


安裝source 和 ports
等待重啟完成 ...
  1. # vi /boot/loader.conf
  2. loader_logo="beastie"                (boot menu logo)
  3. autoboot_delay="3"                (boot delay)
  4. :wq

  5. # vi /etc/rc.conf
  6. blanktime="600"
  7. saver="daemon"
  8. hald_enable="YES"
  9. dbus_enable="YES"
  10. powerd_enable="YES"  
  11. powerd_flags="-a adaptive -b adaptive -n adaptive"   # 保持溫度不會(huì)過高就是了
  12. :wq

  13. # kldload coretemp
  14. # sysctl -a | grep temper
  15. hw.acpi.thermal.tz0.temperature: 60.0C
  16. dev.cpu.0.temperature: 59.0C
  17. dev.cpu.1.temperature: 59.0C
  18. dev.cpu.2.temperature: 59.0C
  19. dev.cpu.3.temperature: 59.0C
  20. dev.cpu.4.temperature: 61.0C
  21. dev.cpu.5.temperature: 62.0C
  22. dev.cpu.6.temperature: 59.0C
  23. dev.cpu.7.temperature: 59.0C
復(fù)制代碼
檢查一下硬件信息
  1. # dmesg | grep attached        (列出沒有被驅(qū)動(dòng)的硬件)
  2. # pciconf -lv                (更加詳細(xì))          /var/run/dmesg.boot        (see also)
  3.                         (找到聲卡 和 顯卡加載相應(yīng)驅(qū)動(dòng))
  4. # dmidecode                 (DMI table decoder)
復(fù)制代碼
聲卡 驅(qū)動(dòng)
  1. # kldload snd_driver        (加載所有聲卡驅(qū)動(dòng)自動(dòng)匹配)
  2. # cat /dev/sndstat        (查看聲卡驅(qū)動(dòng)信息)
  3. # dmesg | grep hdac
  4. # cat filename > /dev/dsp        (測試聲卡,filename為任意文件產(chǎn)生噪音說明正常工作)

  5. # vi /boot/device.hints
  6. hint.pcm.0.vol="50"        (pcm Module加載時(shí),音量默認(rèn)為50)
  7. :wq

  8. # Microphone     (話筒)
  9. # mixer

  10. # sysctl dev.pcm.0.play.vchans=4
  11. # sysctl dev.pcm.0.rec.vchans=4                ( 虛擬聲道(Virtual Sound Channels)4個(gè)音源能夠同時(shí)播放)
  12. # sysctl hw.snd.maxautovchans=4

  13. # less /boot/defaults/loader.conf
  14. /snd                        (找到所有聲卡驅(qū)動(dòng)支持項(xiàng))
  15. # pciconf -lv | egrep -i -A3 -B5 'audio|multimedia'        (查看device 類型)
  16. # vi /boot/loader.conf
  17. snd_hda_load="YES"        (啟動(dòng)時(shí)加載 聲卡驅(qū)動(dòng)/添加自己的聲卡驅(qū)動(dòng))
  18. :wq
復(fù)制代碼
2: 時(shí)間校準(zhǔn) (很重要)
  1. # tzsetup                        (時(shí)區(qū)設(shè)置 CST)
  2. # ntpdate cn.pool.ntp.org        (校準(zhǔn))

  3. # vi /etc/rc.conf
  4. ntpd_enable="YES"                (配置開機(jī)啟動(dòng) ntpd)
  5. ntpd_sync_on_start="YES"
  6. :wq
  7. # /etc/rc.d/ntpd start

  8. # vi /etc/ntp.conf
  9. server 1.cn.pool.ntp.org
  10. server 1.asia.pool.ntp.org
  11. server 2.asia.pool.ntp.org        (配置time server)
  12. :wq
  13. # /etc/rc.d/ntpd restart
復(fù)制代碼
3:更新 source 和 doc
  1. # cp /usr/share/examples/cvsup/standard-supfile /etc
  2. # cd /etc/; vi standard-supfile
  3. *default host=cvsup.tw.freebsd.org (修改此項(xiàng))
  4. *default base=/var/db
  5. *default prefix=/usr
  6. *default release=cvs tag=RELENG_9_0
  7. *default delete use-rel-suffix
  8. *default compress
  9. src-all
  10. doc-all tag=.   (添加此項(xiàng))
  11. :wq
  12. # csup /etc/standard-supfile
復(fù)制代碼
4:ports 和 package 文件下載地址設(shè)置

  1. # vi /etc/make.conf                (詳情:man make.conf)
  2. MASTER_SITE_BACKUP?=        \
  3.         ftp://ftp.hk.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/\
  4.         ftp://ftp.tw.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/\
  5.         ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/        (注意這里沒換行了)
  6. MASTER_SITE_OVERRIDE?= ${MASTER_SITE_BACKUP}
  7. CPUTYPE?=core2                (根據(jù)情況調(diào)整,起到優(yōu)化作用:me -> i7)
  8. # sysctl hw.model        (more /usr/share/example/etc/make.conf)
  9. INSTALL=install -C        (比對(duì)已安裝文件與最新文件 版本號(hào),低于新版本才安裝)
  10. :wq

  11. 查看CPU支持指令集合:
  12. # grep -i features /var/run/dmesg.boot
  13. Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
  14.   Features2=0x98e3fd<SSE3,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,POPCNT>
  15.   AMD Features=0x28100800<SYSCALL,NX,RDTSCP,LM>
  16.   AMD Features2=0x1<LAHF>

  17. 查看當(dāng)前操作系統(tǒng)開啟的指令集合:
  18. # cd /usr/share/mk
  19. # make -V CPUTYPE
  20. core2
  21. # make -V MACHINE_CPU
  22. ssse3 sse3 amd64 sse2 sse mmx

  23. tcsh/csh:
  24. # vi ~/.cshrc
  25. setenv        PACKAGEROOT        ftp://ftp.tw.freebsd.org
  26. setenv        PKG_TMPDIR        /var/garbage        (package安裝后來這里看看:/var/db/pkg)
  27. :wq
  28. # exit            (注銷生效)


  29. sh/bash:
  30. $ vi ~/.profile
  31. export PACKAGEROOT=ftp://ftp.tw.freebsd.org
  32. export PKG_TMPDIR=/var/garbage
  33. :wq
  34. # exit            (注銷生效)

  35. #
  36. # pkg_add -r vim                (使用遠(yuǎn)程服務(wù)器安裝)
  37. # pkg_version -v  (list outdated ports that have a newer version available in the Ports)

  38. # pkg_version -v |grep vim        (首先查出版本號(hào))
  39. # pkg_delete vim-7.3.81
  40. 或者:
  41. # pkg_delete /var/db/pkg/vim-7.3.81
  42. # pkg_delete xchat\*                (使用通配符)

  43. # pkg_info |grep -i vim        (首先查出版本號(hào))
  44. # pkg_info -L vim-7.3.81 |less        (顯示這個(gè)軟件包安裝的所有文件)
  45. # pkg_info vim-7.3.81

復(fù)制代碼
5: 更新 ports ( portmaster)
  1. # portsnap fetch extract          (首次更新port使用此命令)
  2. # portsnap fetch update                (日后更新port使用此命令)
  3. vi /etc/crontab
  4. 0 5 * * * root /usr/sbin/portsnap cron update  (自動(dòng)更新port)
  5. :wq
復(fù)制代碼
安裝 portmaster 用于更新 軟件包:

  1. # cd /usr/ports/ports-mgmt/portmaster && make install clean
  2. ----------------------------------------------------------------------
  3. # ls /usr/local/etc/portmaster.rc.sample
  4. # vim /usr/local/etc/portmaster.rc
  5. # Do not create temporary backup packages before pkg_delete (-B)
  6. NO_BACKUP=Bopt

  7. # Always delete stale distfiles without prompting (-d)
  8. ALWAYS_SCRUB_DISTFILES=dopt

  9. # Do not run 'make config' for ports that need updating (-G)
  10. PM_NO_MAKE_CONFIG=Gopt

  11. # Be verbose (-v)
  12. PM_VERBOSE=vopt

  13. # Save copies of old shared libraries (recommended) (-w)
  14. SAVE_SHARED=wopt

  15. :wq
  16. ----------------------------------------------------------------------
  17. # /usr/local/sbin/portmaster -L > portmaster.out        (列出可更新的軟件)
  18. ===>>> linux_base-fc-4_8
  19. ===>>> New version available: linux_base-fc-4_9

  20. # /usr/local/sbin/portmaster linux_base-fc-4_8                (更新 某軟件)
  21. # /usr/local/sbin/portmaster -e openoffice.org-2.2.0        (卸載某軟件與其依賴)
  22. #
  23. # portmaster -a                        (升級(jí)所有已安裝的 ports)
  24. # portmaster -af                (always rebuild ports overrides -i)
  25. # portmaster -r

  26. [-R] -r name/glob of port directory in /var/db/pkg
  27.          rebuild the specified port, and all ports that depend on it.  The
  28.          list of dependent ports is built according to origin (i.e.,
  29.          category/portname) not by the version number of the installed port.
  30.          So if you do portmaster -r fooport-1.23 and it is necessary to
  31.          restart using -R but the newly installed port is now fooport-1.24 you
  32.          can do portmaster -R -r fooport-1.24 and it should pick up where you
  33.          left off.  The -r option can be specified more than once.

  34. # cd /usr/ports/sysutils/bsdadminscripts/ && make install clean
  35. > pkg_libchk                   (檢查缺失的動(dòng)態(tài)庫,找出有問題的 ports)
  36. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-sbr.so misses libpng.so.6
  37. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-sbr.so misses libpng.so.6
  38. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-uca.so misses libpng.so.6
  39. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-uca.so misses libpng.so.6
  40. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-uca.so misses libpng.so.6
  41. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-uca.so misses libpng.so.6
  42. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-wallpaper-plugin.so misses libpng.so.6
  43. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-wallpaper-plugin.so misses libpng.so.6
  44. Thunar-1.3.0: /usr/local/lib/thunarx-2/thunar-wallpaper-plugin.so misses libpng.so.6
  45. Thunar-1.3.0: /usr/local/lib/xfce4/panel/plugins/libthunar-tpa.so misses libpng.so.6
  46. Thunar-1.3.0: /usr/local/lib/xfce4/panel/plugins/libthunar-tpa.so misses libpng.so.6
  47. Thunar-1.3.0: /usr/local/lib/xfce4/panel/plugins/libthunar-tpa.so misses libpng.so.6
  48. ...
  49. ...
  50. 另一種更新 軟件包 的方法:
  51. # make deinstall && make install clean        (前提是你的ports 已經(jīng)更新!)

  52. 下面方法多用于 測試不同版本軟件:
  53. # make install                                        (注意沒有:clean ,保留下載的源碼!)
  54. # make deinstall && make reinstall                (前提是下載的源碼沒有被清理!)

  55. # make PREFIX=/usr/pkg install clean                (Changing the Install Path)

  56. Cleaning Up Ports:
  57. # make install clean        (clean a port immediately upon install)

  58. You might also want to remove the original distfiles, stored in /usr/ports/distfiles.
  59. # make distclean         (removes the distfiles for the current port and all dependencies)
  60. OR:
  61. # portmaster --clean-distfiles
  62. To clean the entire ports tree:
  63. # make clean -DNOCLEANDEPENDS         (  run directly under /usr/ports)

  64. Building Packages:

  65. # make package
  66. This installs the program on the local machine and creates a package in the port’s directory.
  67. Simply copy this package to other systems and run pkg_add(1) to install it.
  68. If you create the directory /usr/ports/packages, the Ports Collection will
  69. create a packages tree in that location. Instead of placing the new package
  70. in the port’s directory, the port will place the package in the appropriate
  71. category under /usr/ports/packages.
  72. --------------------------------------------------------------------------------
  73. LOCAL PACKAGE REPOSITORIES
  74. Remember the PACKAGESITE environment variable? Set that to a path on your local
  75. anonymous FTP server (Chapter 17) or an NFS share (Chapter 8) and put your custom
  76. packages there. You can then use pkg_add -r on your other machines, and they will
  77. automatically grab packages from your local repository.
復(fù)制代碼
6:Binary Updates ( only provides patches to the GENERIC kernel)

  1. # freebsd-update fetch                (download the latest updates to your errata branch)
  2.                                 ( files stored in /var/db/freebsd-update)
  3. # freebsd-update install        (install the downloaded files)
  4. #
  5. # vi /etc/crontab
  6. 0 5 * * * root /usr/sbin/freebsd-update cron (自動(dòng)更新至 errata-branch)
  7. :wq
  8. Reboot your system ..
復(fù)制代碼
7:安裝 Vim
  1. # cd /usr/ports/editors/vim/
  2. # make WITHOUT_X11=yes install clean
  3. # exit        (注銷)

  4. # vim ~/.vimrc
  5. set nomodeline                (這個(gè)一定要寫,目前有這個(gè)安裝漏洞)
  6. set nocp
  7. set hls is
  8. set ic
  9. set cindent
  10. set autoindent
  11. set backspace=2
  12. set nobackup
  13. set noswapfile
  14. set shiftwidth=2    ( 縮進(jìn)為2個(gè)空格)
  15. set tabstop=2       (TAB 為2個(gè)空格)
  16. set softtabstop=2  (軟制表符 為2個(gè)空格)
  17. set expandtab        (縮進(jìn) 和 制表符用空格代替)
  18. set ruler
  19. set mouse=v
  20. syntax on
  21. "set bg=dark                (更改背景色調(diào)/默認(rèn)為light, " 為注釋!)
  22. :wq                        (詳情:vimtutor)

  23. # vim ~/.cshrc
  24. setenv        EDITOR        vim
  25. :wq
復(fù)制代碼
8:使用本地化語言
  1. 方法一:Class Definitions
  2. # vim /etc/login.conf
  3. chinese:Chinese Users Account:\
  4.         :charset=UTF-8:\
  5.         :lang=zh_CN.UTF-8:\
  6.         :tc=default:
  7. :wq
  8. # cap_mkdb /etc/login.conf        (rebuilds the database file /etc/login.conf.db)
  9. pw usermod jacky -L chinese        (修改 jacky 的 語言環(huán)境)
  10. pw useradd jacky -L chinese        (添加 jacky 并使用中文)

  11. # pw usershow jacky
  12. jacky:*:1001:1001:chinese:0:0:jacky:/home/jacky:/bin/tcsh
  13. # su - jacky
  14. > locale
  15. LANG=zh_CN.UTF-8
  16. LC_CTYPE="zh_CN.UTF-8"
  17. LC_COLLATE="zh_CN.UTF-8"
  18. LC_TIME="zh_CN.UTF-8"
  19. LC_NUMERIC="zh_CN.UTF-8"
  20. LC_MONETARY="zh_CN.UTF-8"
  21. LC_MESSAGES="zh_CN.UTF-8"
  22. LC_ALL=

  23. 方法二:User Definitions
  24. # vim ~/.login_conf
  25. me:\
  26.         :lang=zh_CN.UTF-8:\
  27.         :setenv=LC_CTYPE=zh_CN.UTF-8:\                (字符類型)
  28.         :setenv=LC_COLLATE=zh_CN.UTF-8:\        (字符對(duì)比規(guī)則)
  29.         :setenv=LC_TIME=zh_CN.UTF-8:\                (時(shí)間類型)
  30.         :setenv=LC_NUMERIC=zh_CN.UTF-8:\        (數(shù)字類型)
  31.         :setenv=LC_MONETARY=zh_CN.UTF-8:\        (貨幣類型)
  32.         :setenv=LC_MESSAGES=zh_CN.UTF-8:\        (消息/提示類型)
  33.         :setenv=LC_ALL=zh_CN.UTF-8:\
  34.         :charset=UTF-8:
  35. :wq

  36. PS: 自定義 prompt 和 alias

  37. 方法一:全局設(shè)置

  38. vim /etc/csh.cshrc
  39. set prompt = "%B%n@%m [%/] $ "        (詳情:man csh /%m)
  40. set autolist                        (TAB命令補(bǔ)全功能)
  41. 方法二:自定義設(shè)置
  42. vim ~/.cshrc
  43. set prompt = "%B%n@%m [%/] # "        (注意空格)
  44. set autolist                (TAB 命令補(bǔ)全功能)
  45. alias cl        clear
  46. alias vi        vim       
  47. alias df        df -h


  48. History:                (默認(rèn)記錄文件:~/.history)
  49. # history -c                (清理當(dāng)前歷史記錄)
  50. # history -S                (保存當(dāng)前歷史記錄)
復(fù)制代碼
9: Axel / Aria2下載大文件利器 (MP3、影片、軟件等)   wget
  1. # cd /usr/ports/ftp/axel && make install clean
  2. # axel -a -n 3 ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-2.4.17.tar.bz2        (詳情:man axel)

  3. # axel -S4 ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-2.4.17.tar.bz2                (自動(dòng)尋找 4 個(gè)最快mirror進(jìn)行下載)

  4. 通常我用 wget 下網(wǎng)站        (找到資料就下吧!說不準(zhǔn)那天站點(diǎn)沒了,還是弄下來方便!)
  5. # wget -r -np -p -k --level=2 http://tldp.org/HOWTO/Linux+IPv6-HOWTO/                (wget默認(rèn)安裝)

  6. Aria2 :多鏈接下載,輕量,平均4-9MB內(nèi)存使用量,BitTorrent下載速度2.8MiB/s時(shí)CPU占用約6%
  7. # cd /usr/ports/www/aria2 && make install clean

  8. (詳情:man aria2c)
  9. # aria2c "http://example.org/mylinux.iso"                (直接下載)

  10. # aria2c "http://host/file.zip" "ftp://host2/file.zip"        (同時(shí)從 2 個(gè)不同源下載 某文件)

  11. # aria2c -x2 -k1M "http://host/file.zip"                        (-x2:一個(gè)server只建立 2 個(gè)連接 -k1M:man很詳細(xì))

  12. # aria2c -s4 http://host/file.zip                                        (-s:總共啟用多少個(gè)連接)

  13. # aria2c http://example.org/mylinux.torrent                (BT 下載)

  14. # aria2c 'magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C'         (BT Magent URI)

  15. # aria2c http://example.org/mylinux.metalink                (Metalink)

  16. # aria2c -i files.txt -j2                                                        (Download URIs found in text file -j:同時(shí)進(jìn)行任務(wù)數(shù))

  17. Resuming Download:
  18. Usually, you can resume transfer by just issuing same command        (aria2c URI)
  19. if the previous transfer is made by aria2.
  20. If the previous transfer is made by a browser or wget like sequential download manager,
  21. then use -c option to continue the transfer        (aria2c -c URI)

  22. BitTorrent Download:

  23. # aria2c --follow-torrent=mem "http://host/file.torrent"        (download files from remote BT file)
  24. # aria2c --max-upload-limit=40k file.torrent         (download using a local torrent file)

  25. Using Proxy:
  26. For HTTP
  27. aria2c --http-proxy="http://proxy:8080" "http://host/file"
  28. aria2c --http-proxy="http://proxy:8080" \
  29. --no-proxy="localhost,127.0.0.1,192.168.0.0/16" "http://host/file"
  30. For FTP
  31. aria2c --ftp-proxy="http://proxy:8080" "ftp://host/file"
  32. Proxy with Authorization
  33. aria2c --http-proxy="http://username:password@proxy:8080" "http://host/file"
  34. aria2c --http-proxy="http://proxy:8080" \
  35. --http-proxy-user="username" --http-proxy-passwd="password" "http://host/file"

  36. -------------------------------------------------------------------------------------------------------
  37. 也可以應(yīng)用到ports下載中!(非必需,一般來說FreeBSD的 fetch夠用了)
  38. # vim /etc/make.conf
  39. FETCH_CMD=/usr/local/bin/axel -a -S4                (-a:顯示每個(gè)線程狀態(tài)信息  -n:連接數(shù))
  40. DISABLE_SIZE=yes                (開啟 此功能!)
  41. :wq

  42. 穿越模式:
  43. FETCH_ENV=http_proxy=ur address
  44. FETCH_ENV=ftp_proxy=ur address

  45. 或者 使用其他工具:        (proxychains / runsocks)
  46. FETCH_CMD=proxychains axel
  47. FETCH_CMD=runsocks axel

  48. PS:wget  axel aria2 配置均一樣!

  49. FETCH_CMD=/usr/local/bin/wget -c -t 3                (-c:繼續(xù)以前的下載  -t:默認(rèn)tries =20)
  50. DISABLE_SIZE=yes                (開啟 此功能!)

  51. FETCH_CMD=/usr/local/bin/aria2c -s 4                                (-s:開啟4 個(gè)連接)
  52. DISABLE_SIZE=yes                (開啟 此功能!)

  53. (在Aria2速度不行的時(shí)候,我發(fā)現(xiàn)Axel速度確實(shí)可以!正常情況匹敵!)
復(fù)制代碼
10:Scim-pinyin (fcitx-sunpinyin) (ibus-pinyin)輸入法
  1. # cd /usr/ports/chinese/scim-pinyin && make install clean
  2. > vim ~/.cshrc
  3. # set scim as the XIM  input server
  4. setenv        XMODIFIERS        @im=SCIM
  5. :wq

  6. # xfce環(huán)境下,支持中文默認(rèn)用英文情況下(Terminal內(nèi)右鍵 Input Methods -SCIM)

  7. # cd /usr/ports/chinese/fcitx-sunpinyin && make install clean
  8. > vim ~/.cshrc
  9. setenv        XMODIFIERS        @im=fcitx
  10. setenv        GTK_IM_MODULE        xim
  11. setenv        QT_IM_MODULE        xim
  12. :wq
  13. > vim ~/.xinitrc
  14. #!/bin/sh
  15. /usr/local/bin/fcitx &    # 確保比xfce提前運(yùn)行!
  16. /usr/local/bin/startxfce4
  17. /usr/home/ko/start-compiz
  18. :wq

  19. # cd /usr/ports/chinese/ibus-pinyin && make install clean
  20. # more /usr/ports/textproc/ibus/pkg-message
  21. -------------------------------------------------------------------
  22. ibus installation finished. To use ibus, please do the following:

  23. If you are using bash, please add following lines to your $HOME/.bashrc:

  24. export XIM=ibus
  25. export GTK_IM_MODULE=ibus
  26. export QT_IM_MODULE=xim
  27. export XMODIFIERS=@im=ibus
  28. export XIM_PROGRAM="ibus-daemon"
  29. export XIM_ARGS="--daemonize --xim"

  30. If you are using tcsh, please add following lines to your $HOME/.cshrc:

  31. setenv XIM ibus
  32. setenv GTK_IM_MODULE ibus
  33. setenv QT_IM_MODULE xim
  34. setenv XMODIFIERS @im=ibus
  35. setenv XIM_PROGRAM ibus-daemon
  36. setenv XIM_ARGS "--daemonize --xim"

  37. If you are using KDE4, you may create a shell script in $HOME/.kde4/env,
  38. and add following lines:

  39. #!/bin/sh
  40. export XIM=ibus
  41. export GTK_IM_MODULE=ibus
  42. export QT_IM_MODULE=xim
  43. export XMODIFIERS=@im=ibus
  44. export XIM_PROGRAM="ibus-daemon"
  45. export XIM_ARGS="--daemonize --xim"

  46. Following input methods/engines are available in ports:

  47. chinese/ibus-chewing            Chewing engine for IBus
  48. chinese/ibus-pinyin             The PinYin input method
  49. japanese/ibus-anthy             Anthy engine for IBus
  50. japanese/ibus-mozc              Mozc engine for IBus
  51. japanese/ibus-skk               SKK engine for IBus
  52. korean/ibus-hangul              Hangul engine for IBus
  53. textproc/ibus-kmfl              KMFL IMEngine for IBus framework
  54. textproc/ibus-m17n              The m17n IMEngine for IBus framework
  55. textproc/ibus-table             Table based IM framework for IBus

  56. and QT4 input method module, textproc/ibus-qt.

  57. If ibus cannot start or the panel does not appear, please ensure
  58. that you are using up-to-date python.
  59. There's a bug in python 2.5, which may prevent the panel from appearing.
  60. -------------------------------------------------------------------
  61. # vim ~/.xinitrc
  62. #!/bin/sh
  63. /usr/local/bin/ibus-daemon --xim -d    # 確保比xfce提前運(yùn)行!
  64. /usr/local/bin/startxfce4
  65. :wq

  66. # vim ~/.cshrc
  67. setenv XIM ibus
  68. setenv GTK_IM_MODULE ibus
  69. setenv QT_IM_MODULE xim
  70. setenv XMODIFIERS @im=ibus
  71. setenv XIM_PROGRAM ibus-daemon
  72. setenv XIM_ARGS "--daemonize --xim"
  73. :wq
復(fù)制代碼
PS:
目前運(yùn)行fcitx總是時(shí)不時(shí)的無法使用,切換到scim或者ibus沒有任何問題!
這里所說不能使用是,無法進(jìn)行輸入操作! 悲劇。。O_o

論壇徽章:
13
15-16賽季CBA聯(lián)賽之同曦
日期:2016-01-28 19:52:032015亞冠之北京國安
日期:2015-10-07 14:28:19NBA常規(guī)賽紀(jì)念章
日期:2015-05-04 22:32:03處女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午馬
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56獅子座
日期:2013-09-08 08:37:52
2 [報(bào)告]
發(fā)表于 2012-06-09 15:52 |只看該作者
本帖最后由 ulovko 于 2012-06-09 16:07 編輯

11:Xorg 和 WQY 字庫
  1. # cd /usr/ports/x11/xorg && make BATCH=YES install clean       

  2. (BATCH=YES: 啟用默認(rèn)配置選項(xiàng), 不會(huì)出現(xiàn)對(duì)話框來煩你!)

  3. # Xorg -configure
  4. # mv xorg.conf.new /etc/X11/xorg.conf        (生成 xorg 配置文件)

  5. # vim /etc/rc.conf        (使用 HAL 自動(dòng)檢測鍵盤和鼠標(biāo))
  6. hald_enable="YES"       
  7. dbus_enable="YES"
  8. :wq

  9. # cd /usr/ports/x11-fonts/wqy && make install clean
  10. # vim /etc/X11/xorg.conf
  11. Section "Files"
  12.         FontPath        "/usr/local/lib/X11/fonts/wqy"        (添加 wqy 路徑支持)
  13. EndSection

  14. Section "Monitor"
  15.         Identifier        "Monitor0"
  16.         VendorName        "Monitor Vendor"
  17.         ModelName        "Monitor Modle"
  18.         HorizSync        30-107                (水平刷新頻率)
  19.         VertRefresh        48-120                (垂直刷新頻率)
  20.         Option                "DPMS"                (能源之星/EnergyStar)
  21. EndSection
  22. Section "Screen"
  23.         Identifier        "Screen0"
  24.         Device                "Card0"
  25.         Monitor                "Monitor0"
  26.         DefaultDepth        24
  27.         SubSection        "Display"
  28.                 Viewport        0 0
  29.                 Depth        24
  30.               Modes        "1024x768"
  31.               Virtual   1366 768
  32.         EndSubsection
  33. EndSection
  34. :wq

  35. PS: 使用 GTF 命令輸出刷新頻率 如下! 一定要安裝 nvidia-settings 否則分辨率永遠(yuǎn)是 50Hz!
  36. # gtf 1366 768 60

  37. # 1366x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 85.86 MHz
  38. Modeline "1366x768_60.00"  85.86  1366 1440 1584 1800  768 769 772 795  -HSync +Vsync

  39. # vim /etc/X11/xorg.conf
  40. Section "Monitor"
  41.         Identifier        "Monitor0"
  42.         VendorName        "Monitor Vendor"
  43.         ModelName        "Monitor Modle"
  44. #        HorizSync        30-107                (水平刷新頻率)
  45. #       VertRefresh        48-120                (垂直刷新頻率)
  46. #       1368x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 85.86 MHz
  47.         Modeline "1368x768_60.00"  85.86  1368 1440 1584 1800  768 769 772 795  -HSync +Vsync
  48.         Option                "DPMS"                (能源之星/EnergyStar)
  49. EndSection
  50. Section "Screen"
  51.         Identifier        "Screen0"
  52.         Device                "Card0"
  53.         Monitor                "Monitor0"
  54.         DefaultDepth        24
  55.         SubSection        "Display"
  56.                 Viewport        0 0
  57.                 Depth        24
  58.               Modes        "1366x768"
  59.               Virtual   1366 768
  60.         EndSubsection
  61. EndSection
  62. :wq

  63. PS:啟用 ctrl+alt+backspace 退出 Xorg        (默認(rèn)已關(guān)閉該功能)
  64. 方法一:
  65. # setxkbmap -option terminate:ctrl_alt_bksp

  66. 方法二:
  67. # vim /usr/local/etc/hal/fdi/policy/x11-input.fdi        (hald 會(huì)讀取該文件)
  68. <?xml version="1.0" encoding="ISO-8859-1"?>
  69. <deviceinfo version="0.2">
  70.   <device>
  71.     <match key="info.capabilities" contains="input.keyboard">
  72.       <merge key="input.x11_options.XkbOptions" type="string">terminate:ctrl_alt_bksp</merge>
  73.     </match>
  74.   </device>
  75. </deviceinfo>

  76. #  vim /etc/X11/xorg.conf
  77.         Section        "ServerLayout"
  78.                         Option        "DontZap"        "off"
  79.         EndSection
  80. :wq

  81. 方法三:使用 Xfce4-session-logout
  82. # vim ~/.cshrc
  83. alias        logout        xfce4-session-logout --logout
  84. alias   lock    xflock4
  85. :wq
  86. # source ~/.cshrc
復(fù)制代碼
12:Nvidia 驅(qū)動(dòng)

  1. # cd /usr/ports/x11/nvidia-driver && make BATCH=YES install clean
  2. # vim /boot/loader.conf
  3. nvidia_load="YES"                (啟動(dòng)時(shí)加載 driver)
  4. linux_enable="YES"
  5. :wq

  6. # cd /usr/ports/x11/nvidia-xconfig/ && make install clean
  7. # rehash

  8. 方法一:不開啟 compiz-fusion
  9. # nvidia-xconfig        (自動(dòng)替換/etc/X11/xorg.conf 并備份原文件為:org.conf.backup)

  10. 方法二:開啟 compiz-fusion
  11. # nvidia-xconfig --add-argb-glx-visuals        (Enable OpenGL)
  12. # nvidia-xconfig --composite                (Enable Composite X extension)
  13. # nvidia-xconfig --depth=24

  14. 顯卡信息查看 和 分辨率 刷新頻率 查看與修改!
  15. (Xorg 內(nèi) 配置無法起作用,只能通過nvidia-settings來調(diào)整!)

  16. # cd /usr/ports/x11/nvidia-settings && make install clean
  17. # rehash
  18. # nvidia-settings
復(fù)制代碼
13:xfce4
  1. # cd /usr/ports/x11-wm/xfce4 && make BATCH=YES install clean
  2. # vim /usr/local/etc/PolicyKit/PolicyLit.conf                (允許用戶在 xfce4模式下 reboot 和 shutdown)
  3. <config version="0.1">

  4.         <match action="org.freedesktop.hal.power-management.reboot">
  5.                     <return result="yes"/>
  6.         </match>
  7.         <match action="org.freedesktop.hal.power-management.shutdown">
  8.                  <return result="yes"/>
  9.         </match>
  10. </config>


  11. 還需要進(jìn)行如下操作:
  12. # vim /usr/local/etc/polkit-1/localauthority/50-local.d/.pkla

  13. [Restart]
  14. Identity=unix-group:wheel
  15. Action=org.freedesktop.consolekit.system.restart
  16. ResultAny=yes
  17. ResultInactive=yes
  18. ResultActive=yes

  19. [Shutdown]
  20. Identity=unix-group:wheel
  21. Action=org.freedesktop.consolekit.system.stop
  22. ResultAny=yes
  23. ResultInactive=yes
  24. ResultActive=yes


  25. % vim ~/.xinitrc                (告訴X 下次啟動(dòng)時(shí)執(zhí)行 Xfce4)
  26. #!/bin/sh
  27. /usr/local/bin/startxfce4
  28. #exec startxfce4        (也可這樣寫)
  29. :wq


  30. PS: 如果使用了 XDM
  31. % vim ~/.xsession
  32. #!/bin/sh
  33. /usr/local/bin/startxfce4
  34. :wq
  35. % chmod +x ~/.xsession
  36. ---------------------------------------------------
  37. Xfce4 回收站地址: ~/.local/share/Trash/files

  38. Xfce4 注銷命令:
  39. # vim ~/.cshrc
  40. alias        logout        xfce4-session-logout --logout
  41. alias   lock    xflock4
  42. :wq
  43. # source ~/.cshrc
  44. ---------------------------------------------------
  45. Xfce 4 Setting Manager
  46. Themes/Shortcuts/:  Window Manager
  47. Background/Icons/display: Desktop Display
  48. File Manager:Display-date
  49. Style: Appearance -xfce dust
  50. Desktop Panel Setup

  51. Terminal Preferences
  52. Appearance - Font - Background(Transparent)
  53. 滾動(dòng) 滑輪 - 收起(打開)終端窗口
復(fù)制代碼
----------------------------------------------------------------
How to install new themes:
  http://wiki.xfce.org/howto/install_new_themes
----------------------------------------------------------------
Xfce4 Plugins:
http://goodies.xfce.org/projects/panel-plugins/start

  1. #安裝 Ristretto        (微型圖片查看工具)
  2. # cd /usr/ports/graphics/ristretto && make install clean

  3. 安裝 Task        (圖形任務(wù)管理器)
  4. # cd /usr/ports/x11/xfce4-taskmanager && make install clean

  5. 安裝 Power        (電源管理)
  6. # cd /usr/ports/sysutils/xfce4-power-manager && make install clean
  7. # cd /usr/ports/sysutils/xfce4-battery-plugin && make install clean

  8. 安裝 Notes        (便簽)
  9. # cd /usr/ports/deskutils/xfce4-notes-plugin && make install clean

  10. 安裝 Netload         (網(wǎng)絡(luò)負(fù)載)
  11. # cd /usr/ports/sysutils/xfce4-netload-plugin && make install clean

  12. 安裝 Weather        (天氣預(yù)報(bào))
  13. # cd /usr/ports/misc/xfce4-weather-plugin && make install clean

  14. 安裝 Wavelan        (無線上網(wǎng))
  15. # cd /usr/ports/sysutils/xfce4-wavelan-plugin && make install clean

  16. PS: 將以上項(xiàng)目在 panel上右鍵 添加 new item 才可以顯示出來!!

  17. 我的桌面這樣漂亮, 我想做個(gè)截屏!在Xfce里怎么做呢?

  18. # cd /usr/ports/
  19. # make quicksearch name=xfce4-screenshooter-plugin
  20. # cd /usr/ports/x11/xfce4-screenshooter-plugin && make install clean
  21. # touch ~/.config/xfce4/xfce4-screenshooter                (沒有他工作不了!)
  22. # 進(jìn)入 keyboard 設(shè)置 shotcut        (PrtScr) 或 從菜單欄點(diǎn)擊程序


  23. 安裝 Xfburn        (CD/DVD 刻錄工具)
  24. # cd /usr/ports/sysutils/xfburn && make install clean

  25. 強(qiáng)大的 命令行刻錄工具:                                        (建議使用)
  26. # cd /usr/ports/sysutils/dvd+rw-tools && make install clean
  27. # growisofs -dvd-compat -Z /dev/cd0 -J -R /path/to/data        (刻錄 數(shù)據(jù)DVD)
  28. # growisofs -dvd-compat -Z /dev/cd0=imagefile.iso        (刻錄 映像文件)

  29. 詳情:18.7 創(chuàng)建和使用光學(xué)介質(zhì)(DVD) ==> 官方簡體中文教程!

復(fù)制代碼

論壇徽章:
13
15-16賽季CBA聯(lián)賽之同曦
日期:2016-01-28 19:52:032015亞冠之北京國安
日期:2015-10-07 14:28:19NBA常規(guī)賽紀(jì)念章
日期:2015-05-04 22:32:03處女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午馬
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56獅子座
日期:2013-09-08 08:37:52
3 [報(bào)告]
發(fā)表于 2012-06-09 15:53 |只看該作者
本帖最后由 ulovko 于 2012-09-03 09:36 編輯

14:Mplayer/Office/Reader/Gimp/Ristretto/Galculator/Thunderbird/Pidgin/VirtualBox/unix2dos
  1. # cd /usr/ports/editors/libreoffice        (安裝libreoffice)
  2. # make LOCALIZED_LANG=zh-CN install clean                (添加中文支持)

  3. # cd /usr/ports && make search key=adobe|less                (安裝AdobeReader)
  4. # cd /usr/ports/chinese/acroread8-zh_CN && make install clean
  5. # cd /usr/ports/graphics/mupdf && make install clean    (安裝mupdf)
  6. # cd /usr/ports/graphics/epdfview && make install clean    (安裝epdfview)

  7. # cd /usr/ports/graphics/gimp-help && make config        (保留:EN 和 ZH_CN)
  8. # cd /usr/ports/graphics/gimp && make BATCH=YES install clean         (安裝圖像處理)
  9. # cd /usr/ports/graphics/gimp-manual-pdf && make install clean

  10. # cd /usr/ports/graphics/ristretto && make install clean        (安裝微型圖片查看工具)
  11. # cd /usr/ports/math/galculator && make install clean        (安裝圖形計(jì)算器)

  12. # cd /usr/ports/mail/thunderbird && make BATCH=YES install clean (安裝雷鳥)
  13. # cd /usr/ports/mail/thunderbird-i18n && make install clean

  14. # cd /usr/ports/net-im/pidgin/ && make install clean        (IM Client 注意端口用8001)
  15. # 成功登陸IRC(irc.freenode.net)之后:
  16. /cs register #ChannelName Password  ChannelDescription  (注冊(cè)自己的Channel)

  17. # cd /usr/ports/converters/unix2dos && make install clean   (unix2dos and dos2unix)

  18. unix2dos and dos2unix are utilities that convert
  19. ASCII files from the DOS cr/lf format to the UNIX
  20. lf format..
復(fù)制代碼
VirtualBox:
  1. # cd /usr/ports/emulators/virtualbox-ose && make install clean

  2. # kldload vboxdrv
  3. or
  4. # echo 'vboxdrv_load="YES"'>>/boot/loader.conf
  5. # pw groupmod vboxusers -m yourusername
  6. % VirtualBox &

  7. =============================================================================

  8. VirtualBox was installed.

  9. You need to load the vboxdrv kernel module via /boot/loader.conf:

  10. vboxdrv_load="YES"

  11. You also have to add all users to your vboxusers group in order to use vbox.

  12. % pw groupmod vboxusers -m jerry

  13. Reboot the machine to load the needed kernel modules.


  14. Bridging Support:
  15. =================

  16. For bridged networking please add the following line to your /etc/rc.conf:

  17. vboxnet_enable="YES"


  18. USB Support:
  19. ============

  20. For USB support your user needs to be in the operator group and needs read
  21. and write permissions to the USB device.

  22. % pw groupmod operator -m jerry

  23. Add the following to /etc/devfs.rules (create if it doesn't exist):

  24. [system=10]
  25. add path 'usb/*' mode 0660 group operator

  26. To load these new rule add the following to /etc/rc.conf:

  27. devfs_system_ruleset="system"

  28. Then restart devfs to load the new rules:

  29. % /etc/rc.d/devfs restart
  30. =============================================================================

復(fù)制代碼
Qemu:
  1. # cd /usr/ports/emulators/qemu && make install clean (add kqemu option)
  2. # kldload {kqemu,if_bridge,if_tap,aio}  (必備module)
  3. # kldstat

  4. Create a 10GB qcow2 image to install Windows XP
  5. # qemu-img create -f qcow2 winxp.img 20G

  6. Installing Windows XP ...
  7. # qemu -m 1024 -hda winxp.img -cdrom xp_sp3_vol_x86.iso -boot d -localtime

  8. Boot Windows XP ...
  9. # qemu-system-x86_64  -m 1500 -hda winxp.img -cdrom xp_sp3_vol_x86.iso \
  10. -localtime -M pc -smp 2 -soundhw es1370 -usb -enable-kqemu -kernel-kqemu  -name winxp

  11. PS: Windows XP 占用CPU 100% 很無奈,所以還是模擬 Windows2000吧(這個(gè)速度是最快的!)
  12. 或者 用 VirtualBox 安裝 Windows XP ...

  13. Qemu 模擬 Win2000
  14. # qemu-img create -f qcow2 win2000.img 10G
  15. # qemu -m 1024 -hda win2000.img -cdrom win2000.iso -boot d -win2k-hack
  16. # qemu-system-x86_64  -m 1500 -hda win2000.img -cdrom win2000.iso \
  17. -localtime -M pc -smp 2 -soundhw es1370 -usb -enable-kqemu -kernel-kqemu  -name win2000
復(fù)制代碼
Qemu : http://forums.freebsd.org/showthread.php?t=175

Mplayer 具體使用:

1. xdpyinfo        (獲得使用您的顯卡的X服務(wù)器所支持的擴(kuò)展列表)
  1. 常見圖像接口列表:
  2. X11: 一般性的使用共享內(nèi)存的X11輸出。
  3. XVideo: 一種X11接口擴(kuò)展,支持任何X11圖像的可拖拉。
  4. SDL: 簡單直接媒體層。
  5. DGA: 直接圖片存取。
  6. SVGAlib: 低層次掌控圖片層。

  7. XVideo        (X11擴(kuò)展接口,用于提高 畫面質(zhì)量)
  8. # xvinfo
  9. X-Video Extension version 2.2
  10. screen #0
  11. no adapters presnet                (表示顯卡不支持 XVideo)
復(fù)制代碼
2. 安裝
  1. # cd /usr/ports/multimedia/mplayer                (安裝mplayer)
  2. # make WITH_LANG=zh_CN install clean        (選中vdpau顯卡加速等需要的選項(xiàng)!)
復(fù)制代碼
3. 第一次啟動(dòng)前
  1. % cd /usr/ports/multimedia/mplayer
  2. % make install-user                (自動(dòng)建立: ~/.mplayer)


  3. 要播放一個(gè)文件,如 testfile.avi, 可以通過各種視頻接口當(dāng)中的某一個(gè)去設(shè)置 -vo 選項(xiàng):

  4. % mplayer -vo xv testfile.avi
  5. % mplayer -vo sdl testfile.avi
  6. % mplayer -vo x11 testfile.avi
  7. # mplayer -vo dga testfile.avi
  8. # mplayer -vo 'sdl:dga' testfile.avi
  9.                                         (詳情:man mplayer /-vo)
  10. # mplayer -gui -vo x11 testfile.avi        (圖形界面, 我保證你不會(huì)用)
復(fù)制代碼
常用命令:
  1. # mplayer -fs -zoom -vo xv,x11 testfile.avi        (全屏模式,不支持xv 則使用x11,你會(huì)不支持xv?)
  2. # mplayer -ontop -vo xv testfile.avi                (置頂播放)
  3. # mplayer -vf screenshot -vo xv testfile.avi        (屏幕截圖,截圖保存到當(dāng)前目錄,按鍵:s)
  4. # mplayer -ss 01:33:00 -vo xv testfile.avi        (選擇播放起始位置)

  5. # mplayer -osdlevel 3        testfile.avi                (音量 + 搜索 + 計(jì)時(shí)器 + 百分比 + 總時(shí)間)
  6. # mplayer -cache 4096 testfile.avi                (設(shè)定緩沖區(qū):KBytes)

  7. # cd ~/audio/;ls |cut -d' ' -f1 > music.lst        (制作文件列表,文件名不要留空格)
  8. # mplayer -loop 0 -playlist ~/audio/music.lst        (無限循環(huán)播放列表)

  9. # mplayer \
  10. [url]http://file2.top100.cn/201110042113/A3C42BFC4C75FAC143DC3DDBEF3D821D/[/url]\
  11. Special_40202/M0040202001.mp3                        (Stream From HTTP)

  12. # mplayer 不支持 SWF,建議拖到 瀏覽器里播放!

  13. KeyBoard Control:
  14. up and down        (Seek forward/backward 1 minute)
  15. pgup and pgdown        (Seek forward/backward 10 minutes)
  16. [ and ]                (Decrease/Increase current playback speed by 10%)
  17. { and }                (Halve/Double current playback speed)
  18. BACKSPACE        (Reset playback speed to normal)

  19. Playlist:
  20. < and >                (Go backward/forward in the playlist)
  21. ENTER                (Go forward in the playlist, even over the end)
  22. p / SPACE        (Pause, pressing agin unpauses)
  23. q / ESC                (Stop playing and quit)

  24. Sound:
  25. 9 and 0                (Decrease/Increase volume)
  26. ( and )         (Adjust audio balance in favor of left/right channel)
  27. m                (Mute sound)

  28. OSD States:
  29. o                (Toggle OSD states: none/ seek/ seek+ timer/seek+ timer+ total time)
  30. # mplayer -osdlevel 3        testfile.avi
  31. -------------------------------------------------------------
  32. 設(shè)定開始的OSD模式.

  33. 0      只有字幕
  34. 1      音量 + 搜索(默認(rèn))
  35. 2      音量 + 搜索 + 計(jì)時(shí)器 + 百分比
  36. 3      音量 + 搜索 + 計(jì)時(shí)器 + 百分比 + 總時(shí)間

  37. Subtitle:
  38. v                (Toggle subtitle visibility)
  39. j                (Cycle through the available subtitles)
  40. y and g                (Step forward/backward in the subtile list)
  41. F                (Toggle displaying "forced subtitles")
  42. a                (Toggle subtitle alignment: top/ middle/ bottom)
  43. r and t                (Move subtitles up/ down)

  44. ScreenShot:
  45. s                (-vf screenshot only)
  46. S                (-vf screentshot only, Start/ Stop taking screenshots)
  47. I                (Show filename on the OSD)
  48. P                (show progression bar, elapsed time and total duration on the OSD)

  49. FullScreen & Stay-On-Top :
  50. f                (Toggle fullscreen, also see -fs -zoom)
  51. T                (Toggle stay-on-top, also see -ontop)
復(fù)制代碼
-------------------------------------------------------------
為了讓 mplayer 的命令行不是太長,使用者可以通過建立一個(gè)文件  
來設(shè)定如下默認(rèn)選項(xiàng):
  1. # vim ~/.mplayer/config
  2. vo=vdpau        # 使用 vdpau 輸出設(shè)備播放
  3. fs=yes                # 全屏
  4. ontop=yes        # 置頂
  5. zoom=yes        # 允許改變窗口大小
  6. noaspect=yes        # 縮放時(shí)保持高寬比
  7. osdlevel=3        # 顯示 當(dāng)前播放時(shí)間 和 總時(shí)間
  8. :wq
復(fù)制代碼
-------------------------------------------------------------
  1. 要播放 DVD, 需要把 testfile.avi 改為 dvd://N -dvd-device DEVICE。
  2. 這里 N 是要播放的節(jié)目編號(hào), 而 DEVICE 則是 DVD-ROM 的設(shè)備節(jié)點(diǎn)。例如,要播放 /dev/dvd 的第三個(gè)節(jié)目

  3. # mplayer -vo xv dvd://3 -dvd-device /dev/dvd

  4. 注意: 可以在編譯 MPlayer 時(shí), 通過 WITH_DVD_DEVICE 來指定默認(rèn)的 DVD 設(shè)備。
  5. 系統(tǒng)內(nèi)定的默認(rèn)設(shè)備是 /dev/acd0。 更多細(xì)節(jié), 請(qǐng)參考 port 的 Makefile。
  6. 最后,mplayer 可以把DVD題目(title)抓取成為 .vob 文件。
  7. 為了從DVD中導(dǎo)出第二個(gè)題目,請(qǐng)輸入:

  8. # mplayer -dumpstream -dumpfile out.vob dvd://2 -dvd-device /dev/dvd
  9.   輸出文件 out.vob 將是 MPEG 并且可以被這部份描述的其它 “包” 利用。
  10. --------------------------------------------------------------------
  11. 文件:

  12. /etc/mplayer/mplayer.conf

  13.                 系統(tǒng)范圍的設(shè)置

  14. ~/.mplayer/config

  15.                 用戶設(shè)置

  16. ~/.mplayer/input.conf

  17.         輸入綁定(完整按鍵列表參見’mplayer −input keylist’的輸出)

  18. ~/.mplayer/gui.conf

  19.         GUI配置文件

  20. ~/.mplayer/gui.pl
  21.                
  22.         GUI播放列表

  23. ~/.mplayer/font/

  24.         字體目錄(里面必須有一個(gè)font.desc文件和.RAW后綴的文件)

  25. ~/.mplayer/DVDkeys/

  26.         破解的CSS密鑰

  27. 字幕文件按以下順序搜索(比如播放/mnt/movie/movie.avi文件):

  28. /mnt/cdrom/movie.sub
  29. ~/.mplayer/sub/movie.sub
  30. ~/.mplayer/default.sub
復(fù)制代碼

論壇徽章:
13
15-16賽季CBA聯(lián)賽之同曦
日期:2016-01-28 19:52:032015亞冠之北京國安
日期:2015-10-07 14:28:19NBA常規(guī)賽紀(jì)念章
日期:2015-05-04 22:32:03處女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午馬
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56獅子座
日期:2013-09-08 08:37:52
4 [報(bào)告]
發(fā)表于 2012-06-09 15:53 |只看該作者
本帖最后由 ulovko 于 2012-07-20 11:09 編輯

15:Using Linux Mode        (MacromediaFlash插件沒有FBSD版,用Linux wrapper運(yùn)行其flash版本)
  1. # kldload linux                (加載進(jìn)來一會(huì)用)
  2. # cd /usr/ports/emulators/linux_base-f10 && make BATCH=YES install distclean
  3. # vim /etc/rc.conf
  4. linux_enable="YES"
  5. :wq
復(fù)制代碼
PS: 說良心話,著個(gè)FLASH 在firefox里面跑 倒是比較穩(wěn)定的,在chromium里面跑 特容易崩潰 O_o ..

16:Firefox 和 MacromediaFlash 和 Add-ons  and Chromium
  1. # cd /usr/ports/www/firefox/ && make BATCH=YES install clean
  2. vim /boot/loader.conf
  3. sem_load="YES"                        (加載module)
  4. :wq

  5. # cd /usr/ports/www/firefox-i18n/ && make install clean        (中文支持)
  6. # cd /usr/ports/www/nspluginwrapper && make install clean        (提供flash支持)
  7. # cd /usr/ports/www/linux-f10-flashplugin10 && make install clean        (安裝flash插件)

  8. # 安裝版本11的話不需要 掛載 linproc , 我安裝的11 ..
  9. # cd /usr/ports/www/linux-f10-flashplugin11 && make install clean        (安裝flash插件)

  10. #  ln -s /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so \
  11. /usr/local/lib/browser_plugins/        (做個(gè)symbolic Link,官方文檔:browser_plugins是個(gè)目錄,沒有的話要?jiǎng)?chuàng)建)
  12.                                                                 (目錄不行:請(qǐng)直接連接,我就是 直接鏈接的!)
  13. # rehash                                                (Updates FreeBSD's path environment variables)
  14. <For instance when you have installed software you may not be able
  15. to run the executables without specifying the path.
  16. rehash solves your problem most of the times>

  17. % nspluginwrapper -v -a -i                        (插件必須由每個(gè)用戶運(yùn)行 nspluginwrapper 安裝)
  18. <上面的命令會(huì)復(fù)制 browser_plugins目錄下生成的文件 到:~/.mozilla/plugins/npwrapper.libflashplayer.so>

  19. # 安裝版本11(linux-f10-flashplugin11)的話不需要 進(jìn)行下面的操作 掛載 linproc , 我安裝的11 ..

  20. 實(shí)現(xiàn)播放flash 動(dòng)畫效果:
  21. # mount         -t linprocfs linproc /usr/compat/linux/proc        (掛載 linproc ,事實(shí)上 procfs存在安全問題FBSD早就廢棄了)

  22. # vim /etc/fstab
  23. linproc                /usr/compat/linux/proc        linprocfs                rw        0        0        (開機(jī)自動(dòng)掛載)
  24. :wq

  25. Add-ons:
  26. firefox - Edit - Preferences - Manage Add-ons - Search
  27. Ease Link:                                        (轉(zhuǎn)換迅雷、QQ旋風(fēng)、快車專用鏈接)
  28. Adblock Plus:                                (屏蔽廣告)
  29. Adblock Plus Preferences - Filters -Add filter subscription - Update all subscriptions

  30. NetVideoHunter Video Downloader:                (視頻地址檢測)
  31. NetVideoHunter Options - Show in statusbar - Enable the capturing of SWF files
  32. epubreader for firefox

  33. PS: npviewer.bin 該進(jìn)程為flash進(jìn)程,當(dāng)關(guān)閉flash后不會(huì)自動(dòng)結(jié)束,

  34. # sockstat |grep npviewer.bin

  35. 會(huì)看到N多 占用內(nèi)存超多 我的辦法是:

  36. # echo 'alias killflash killall npviewer.bin'>>~/.cshrc

  37. Chromium
  38. # cd /usr/ports/www/chromium/ && make install clean
  39. echo 'alias        chrome        chrome --incognito'>>~/.cshrc

復(fù)制代碼
17:compiz-fusion (3D效果)
  1. # cd /usr/ports/x11-wm/compiz-fusion && make BATCH=YES install clean

  2. % vim start-compiz
  3. #!/bin/sh
  4. compiz --replace --sm-disable --ignore-desktop-hints ccp &
  5. emerald --replace &
  6. :wq
  7. % chmod +x start-compiz
  8. % echo "start-compiz" >> ~/.xinitrc

  9. PS: 如果使用了 XDM
  10. % echo "start-compiz" >> ~/.xsession
  11. % startx
  12. 簡單設(shè)置:
  13. 在CompizConfig設(shè)置管理器>首選項(xiàng)>在后端選擇GConf Configuration Backed (開啟即時(shí)生效)
  14. 接著> 啟用 最小化效果、窗口裝飾、震顫窗口、移動(dòng)窗口、調(diào)整窗口大小、應(yīng)用程序切換條,基本的3D桌面竣工!
復(fù)制代碼
官方教程(Installing and using Compiz Fusion):http://www.freebsd.org/doc/en/articles/compiz-fusion/index.html
18:Security
監(jiān)視ports所有軟件包安全:
  1. # cd /usr/ports/ports-mgmt/portaudit && make all install clean        (portaudit)
  2. # portaudit -Fda                (更新數(shù)據(jù)庫, periodic每天自動(dòng)更新!)
  3. # portaudit -a                (開始檢查)
  4. 輸出如下:

  5. Affected package: cups-base-1.1.22.0_1
  6. Type of problem: cups-base -- HPGL buffer overflow vulnerability.
  7. Reference: <http://www.FreeBSD.org/ports/portaudit/40a3bca2-6809-11d9-a9e7-0001020eed82.html>
  8. 1 problem(s) in your installed packages found.
  9. You are advised to update or deinstall the affected package(s) immediately.
  10. <如果你執(zhí)意要安裝不安全的軟件請(qǐng):make install DISABLE_VULNERABILITIES=YES clean>
  11. ----------------------------------------------------------------------------------------------------------
  12. # cd /usr/ports/ports-mgmt/pkg_cleanup && make install clean       (關(guān)于刪除冗余ports )
復(fù)制代碼
FROM: http://wiki.freebsdchina.org/software/p/pkg_cutleaves

  1. RootKit:
  2. # cd /usr/ports/security/rkhunter && make install clean                (rkhunter )

  3. Sudo:
  4. # cd /usr/ports/security/sudo && make install clean
  5. # visudo
  6. ko ALL=(root) !/usr/bin/passwd, /usr/bin/passwd [A-Za-z]*, !/usr/bin/passwd root, /usr/bin/su -

  7. Integrity:
  8. # cd /usr/ports/security/aide && make install clean                        (aide )
  9. # cd /usr/ports/security/tripwire && make install clean                (tripwire )

  10. 可用 mtree檢查完整性:
  11. # mtree -x -ic -K cksum -K md5digest -K sha256digest -p / \
  12. -X /home/mwlucas/mtree-exclude > /tmp/mtree.savedspec
  13. (Use -X  to specify a file containing a list of paths not to match)

  14. # mtree -f savedspec -f newspec > mtree.differences

  15. AntiVirus:
  16. # cd /usr/ports/security/clamav && make install clean                        (clamav )
  17. # cd /usr/ports/security/squidclamav && make install clean        (squidclamav )

  18. Monitor:
  19. # cd /usr/ports/net-mgmt/cacti && make install clean                        (cacti)
  20. # cd /usr/ports/net-mgmt/nagios && make install clean                (nagios)
  21. # cd /usr/ports/security/nessus && make install clean                (nessus)
  22. # cd /usr/ports/sysutils/lsof && make install clean                        (lsof)
  23. # cd /usr/ports/sysutils/pidof && make install clean                        (pidof)
  24. # cd /usr/ports/security/nmap && make install clean                        (nmap)
  25. # cd /usr/ports/net/wireshark && make install clean                        (wireshark)
  26. # cd /usr/ports/net/tcpdump && make install clean                        (tcpdump: 系統(tǒng)自帶)

  27. Unix Password Cracker:
  28. # cd /usr/ports/security/crack && make install clean                        (/usr/local/crack/Crack)

  29. Rar Zip 7Z Password Cracker:
  30. # cd /usr/ports/security/rarcrack && make install clean                (rarcrack )

  31. Ciphertext Cracker:
  32. # cd /usr/ports/security/rainbowcrack && make install clean        (rainbowcrack )

  33. ----------------------------------------------------------------------------------------------------------
  34. Tweaking User Security
  35. # vim /etc/login.access                                (Rules are checked on a first-fit basis)
  36. -:ALL EXCEPT wheel:console               
  37. -:ALL EXCEPT wheel dns webmasters:ALL

  38. # vim /etc/login.conf                                        (Restricting System Usage)
  39. :maxproc-cur: 30:\                                        (Current Resource Limits)
  40. :maxproc-max: 60:\                                        (Maximum Resource Limits)

  41. :passwd_format=md5:\                                (md5 or  blf)
  42. :minpasswordlen=28:\                                (Password length Limits)
  43. :mixpasswordcase=true:\                                (Password case Limits)
  44. :wq
  45. If present, FreeBSD complains if the user changes his password to an all lowercase word.
  46. # cap_mkdb /etc/login.conf        (rebuilds the database file /etc/login.conf.db)

  47. PS:
  48. in fact, /etc/hosts.equiv and its related services have bitten even
  49. top-notch security experts who thought they could use it safely. I suggest
  50. leaving this file empty and perhaps even making it immutable !
復(fù)制代碼
19:SSH
  1. Client:
  2. ssh user@host                                (需要密碼 ,遠(yuǎn)程主機(jī)信息保存在:~/.ssh/known_hosts)
  3. scp filename user@host:~/
  4. sftp user@host

  5. # ssh-keygen -lf /etc/ssh/ssh_host_dsa_key.pub        (檢查SSH 主機(jī) PubKey 的 fingerprint,Client端會(huì)自動(dòng)下載并比對(duì))

  6. 用戶密碼被強(qiáng)制到28位怎么記得住?                (用PubKey實(shí)現(xiàn)無密碼登錄 !)

  7. Client:
  8. ssh-keygen -t rsa -b 2048                                                (為本機(jī) 生成 一對(duì)密匙)
  9. scp .ssh/id_rsa.pub user@host:~/                                (把PubKey 發(fā)到Server 用戶家目錄)

  10. Server:
  11. cd ~user; mkdir .ssh                                                       
  12. cat id_rsa.pub >> .ssh/authorized_keys                        (Server 把Client端 PubKey添加到 授權(quán)文件內(nèi))

  13. Client:
  14. ssh user@host                                                                        (現(xiàn)在可以無密碼登錄嘍!)
復(fù)制代碼
20:Insecure Console (Single-user mode)

When you boot FreeBSD in single-user mode, you get a root command
prompt. This is fine for your laptop and works nicely for servers in your
corporate datacenter, but what about machines in untrusted facilities?
  1. # vim /etc/ttys
  2. console none                 unknown off secure
復(fù)制代碼
To make the console require a root login when booted into single-usermode,
change the secure to insecure.
  1. # vim /etc/ttys
  2. console none                 unknown off insecure
  3. :wq
復(fù)制代碼
  1. # 平衡球 Neverball (http://neverball.org/download.php) 支持Windows/Linux/BSD/Mac
  2. # cd /usr/ports/games/neverball && make install clean
  3. #
復(fù)制代碼
配置文件一覽:

  1. > cat ~/.cshrc
  2. alias h                history 25
  3. alias j                jobs -l
  4. alias la        ls -a
  5. alias lf        ls -FA
  6. alias ll        ls -lA -G -D "%D\ %T"
  7. #> man strftime
  8. # %T    is equivalent to “%H:%M:%S”.
  9. # %F    is equivalent to “%Y-%m-%d”.
  10. # %D    is equivalent to “%m/%d/%y”.

  11. setenv        EDITOR        vim

  12. # added by ko BEGIN
  13. setenv        PACKAGEROOT        ftp://ftp.freebsd.org
  14. setenv        PKG_TMPDIR        /var/garbage
  15. setenv        XMODIFIERS        @im=fcitx
  16. setenv        GTK_IM_MODULE        xim
  17. setenv        QT_IM_MODULE        xim
  18. set        autolist
  19. alias        cl        clear
  20. alias        df        df -h
  21. alias        lock        xflock4
  22. alias        chrome        chrome --incognito
  23. alias        adobe        acroread8
  24. alias        killflash        killall npviewer.bin
  25. # ps axo pid,comm,pcpu,pmem
  26. # history -c        (clear history)
  27. # wget -r -np -p -k --level=2 http://freebsd.org/handbook/
  28. # added by ko END
復(fù)制代碼

論壇徽章:
13
15-16賽季CBA聯(lián)賽之同曦
日期:2016-01-28 19:52:032015亞冠之北京國安
日期:2015-10-07 14:28:19NBA常規(guī)賽紀(jì)念章
日期:2015-05-04 22:32:03處女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午馬
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56獅子座
日期:2013-09-08 08:37:52
5 [報(bào)告]
發(fā)表于 2012-06-09 16:08 |只看該作者
本帖最后由 ulovko 于 2012-09-08 19:57 編輯

21: PF Basic Setup
詳見 CU Blog: http://blog.chinaunix.net/uid-25256412-id-3223143.html


還有一點(diǎn)關(guān)于WIFI !
著個(gè)其實(shí)不用寫什么了!
官方文檔有簡體中文,寫的非常詳細(xì)!

下載頁面:ftp://ftp.freebsd.org/pub/FreeBS ... 312/books/handbook/
在線觀看:http://docs.freebsd.org/doc/9.0- ... twork-wireless.html

10> Reserved for future use....


Basic FreeBSD Setup as Desktop: http://72891.cn/thread-3751834-1-1.html
Basic NetBSD Setup as Desktop: http://72891.cn/thread-3751787-1-1.html
Basic OpenBSD Setup as Desktop: http://72891.cn/thread-3751016-1-1.html
Basic Debian Setup as Desktop: http://72891.cn/thread-3751791-1-1.html
Basic Ubuntu Setup as Desktop: http://72891.cn/thread-3746337-1-1.html
Basic Fedora Setup as Desktop: http://72891.cn/thread-3761672-1-1.html
Basic PC-BSD Setup as Desktop: http://72891.cn/thread-3751857-1-1.html

一個(gè)有意思的命令,或許您用的到! ^_^

論壇徽章:
2
獅子座
日期:2013-08-26 15:25:32金牛座
日期:2013-09-05 15:45:36
6 [報(bào)告]
發(fā)表于 2012-06-09 17:38 |只看該作者
樓主不錯(cuò)哦~發(fā)了好多安裝文檔

論壇徽章:
13
15-16賽季CBA聯(lián)賽之同曦
日期:2016-01-28 19:52:032015亞冠之北京國安
日期:2015-10-07 14:28:19NBA常規(guī)賽紀(jì)念章
日期:2015-05-04 22:32:03處女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午馬
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56獅子座
日期:2013-09-08 08:37:52
7 [報(bào)告]
發(fā)表于 2012-06-09 17:58 |只看該作者
回復(fù) 6# kisswen


    互聯(lián)網(wǎng)的實(shí)質(zhì)就是 信息共享麼,順便推廣BSD  讓后來的人 好入門!

論壇徽章:
0
8 [報(bào)告]
發(fā)表于 2012-06-09 19:54 |只看該作者
很好很強(qiáng)大嚴(yán)重支持!{:2_172:}

論壇徽章:
224
2022北京冬奧會(huì)紀(jì)念版徽章
日期:2015-08-10 16:30:32操作系統(tǒng)版塊每日發(fā)帖之星
日期:2016-02-18 06:20:00操作系統(tǒng)版塊每日發(fā)帖之星
日期:2016-03-01 06:20:00操作系統(tǒng)版塊每日發(fā)帖之星
日期:2016-03-02 06:20:0015-16賽季CBA聯(lián)賽之上海
日期:2019-09-20 12:29:3219周年集字徽章-周
日期:2019-10-01 20:47:4815-16賽季CBA聯(lián)賽之八一
日期:2020-10-23 18:30:5320周年集字徽章-20	
日期:2020-10-28 14:14:2615-16賽季CBA聯(lián)賽之廣夏
日期:2023-02-25 16:26:26CU十四周年紀(jì)念徽章
日期:2023-04-13 12:23:1015-16賽季CBA聯(lián)賽之四川
日期:2023-07-25 16:53:45操作系統(tǒng)版塊每日發(fā)帖之星
日期:2016-05-10 19:22:58
9 [報(bào)告]
發(fā)表于 2012-06-12 16:42 |只看該作者
ulovko 發(fā)表于 2012-06-09 15:51
FROM: http://blog.chinaunix.net/uid-25256412-id-2939430.html
1: 使用 USB 安裝 FreeBSD(設(shè)備編號(hào)自行 ...



lz,其他可以先放一放,麻煩設(shè)置一個(gè)快速好用的url源放到較前的章節(jié)

論壇徽章:
13
15-16賽季CBA聯(lián)賽之同曦
日期:2016-01-28 19:52:032015亞冠之北京國安
日期:2015-10-07 14:28:19NBA常規(guī)賽紀(jì)念章
日期:2015-05-04 22:32:03處女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午馬
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56獅子座
日期:2013-09-08 08:37:52
10 [報(bào)告]
發(fā)表于 2012-06-12 16:45 |只看該作者
回復(fù) 11# action08


    謝謝提議,不過還是要從頭開始,上來就寫這個(gè)不合適!^_^
您需要登錄后才可以回帖 登錄 | 注冊(cè)

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號(hào)-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號(hào):11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專區(qū)
中國互聯(lián)網(wǎng)協(xié)會(huì)會(huì)員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請(qǐng)注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP