wiki:wade/linux

note

筆記

  • Number of created screens does not match number of detected devices. Configuration failed.
    • /etc/X11/xorg.conf
         # 調整解析度
         Section "Screen"
         Identifier   "Default Screen"
         Monitor      "Configured Monitor"
         Device      "Configured Video Device"
      
         DefaultDepth    24
         SubSection      "Display"
            Depth           24
            Modes           "800x600" "1440x900" "1360x768" "1280x1024" "1280x960" "1152x864" "1024x768" 
         EndSubSection
      
      EndSection
      
  • 設定 Terminal 顏色:
    • vim ~/.bashrc」
    • 搜尋「#force_color_prompt=yes」這一行字,找到之後將這一行開頭的 # 字號刪除。
    • 重新登入
  • Linux BStandard Base, LSB:規範如檔案路徑。
  • 檔案路徑:
    • /etc:設定檔案
      • 如網路設定:Debian: /etc/netwrok,CentOS: /etc/sysconf。
    • /var
      • /var/run:放置判斷用的 pid。
      • /var/spool:放需要佇列的東西。
  • 影片加速、合併:
    至於快轉的方式,我在linux上是用mencoder來做。
    
    以下這個指令大約快轉1000倍
    
    
        mencoder -ovc lavc -nosound -fps 30000 -ofps 30000/1001 INPUT.MPG -o OUTPUT.MPG;
    
    
    
    因為拍攝後,dv可能把影片分段存檔,所以在個別快轉後,再一起合併成一個檔。
    
    
        mencoder -oac copy -ovc copy -idx -o ALL.MPG 1.MPG 2.MPG 3.MPG 
    

相關資料

distribution

套件

書單

Reference

Last modified 10 years ago Last modified on Dec 16, 2013, 3:29:49 PM