トップページ  Index  Search  Changes  Login

gnupackのセットアップ

工事中

展開先についての注意

パスにスペースを含まないこと

desktop.ini の修正

アイコン指定を相対パスから絶対パスに変更

Before
up0182.png
[.ShellClassInfo]
IconIndex=0
IconFile=.\folder.ico
After
up0181.png
[.ShellClassInfo]
IconIndex=0
IconFile=C:\gnupack_devel-12.02-2015.01.17\folder.ico

startup_config.iniの修正

app\cygwin\cygwin\etc\fstab の問題回避用

ntfs→vfat 及びセミコロンの手前の余計なスペースを削除

Before
# ################################################################
# cygwinマウントテーブル
# - 変数名は任意.同名可.
# - システムの環境変数に加え,[reserved variable],[local variable],
#   [environment variable]で定義した変数が利用可能.
# - /etc/fstabの書式に準拠.区切り文字は「;」.
#   5番目,6番目のエントリーは「0」で固定のため定義不要.

 [Mount Table]
    Point = none            ; /         ; cygdrive; binary,nouser,noacl,posix=0;
    Point = %HOME%          ; /home     ; ntfs    ; binary,nouser,noacl,posix=0;
    Point = %TEMP%          ; /tmp      ; ntfs    ; binary,nouser,noacl,posix=0;
    Point = %LOCAL_DIR%     ; /usr/local; ntfs    ; binary,nouser,noacl,posix=0;
    Point = %ROOT_DIR%      ; /root     ; ntfs    ; binary,nouser,noacl,posix=0;
    Point = %ROOT_DIR%\app  ; /app      ; ntfs    ; binary,nouser,noacl,posix=0;
    Point = %DESKTOP_DIR%   ; /desktop  ; ntfs    ; binary,nouser,noacl,posix=0;
    Point = %DESKTOP_DIR%   ; /top      ; ntfs    ; binary,nouser,noacl,posix=0;
After
# ################################################################
# cygwinマウントテーブル
# - 変数名は任意.同名可.
# - システムの環境変数に加え,[reserved variable],[local variable],
#   [environment variable]で定義した変数が利用可能.
# - /etc/fstabの書式に準拠.区切り文字は「;」.
#   5番目,6番目のエントリーは「0」で固定のため定義不要.

 [Mount Table]
    Point = none; /; cygdrive; binary,nouser,noacl,posix=0;
    Point = %HOME%; /home; vfat; binary,nouser,noacl,posix=0;
    Point = %TEMP%; /tmp; vfat; binary,nouser,noacl,posix=0;
    Point = %LOCAL_DIR%; /usr/local; vfat; binary,nouser,noacl,posix=0;
    Point = %ROOT_DIR%; /root; vfat; binary,nouser,noacl,posix=0;
    Point = %ROOT_DIR%\app; /app; vfat; binary,nouser,noacl,posix=0;
    Point = %DESKTOP_DIR%; /top; vfat; binary,nouser,noacl,posix=0;
    Point = %DESKTOP_DIR%; /desktop; vfat; binary,nouser,noacl,posix=0;
Otherwise
さもないと、ntfsじゃねーってエラー。
及び、app\cygwin\cygwin\etc\fstab が \040 だらけになり、果ては存在しないディレクトリを指定することに。
# For a description of the file format, see the Users Guide
# http://cygwin.com/cygwin-ug-net/using.html#mount-table
# This is default anyway:
# none /cygdrive cygdrive binary,posix=0,user 0 0
none\040\040\040\040\040\040\040\040\040\040 / cygdrive binary,nouser,noacl,posix=0 0 0
C:/test/gnupack_devel-12.02-2015.01.17/home\040\040\040\040\040\040\040\040 /home ntfs binary,nouser,noacl,posix=0 0 0
C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/gnupack\040\040\040\040\040\040\040\040 /tmp ntfs binary,nouser,noacl,posix=0 0 0
C:/test/gnupack_devel-12.02-2015.01.17/app/cygwin/local\040\040\040 /usr/local ntfs binary,nouser,noacl,posix=0 0 0
C:/test/gnupack_devel-12.02-2015.01.17\040\040\040\040 /root ntfs binary,nouser,noacl,posix=0 0 0
C:/test/gnupack_devel-12.02-2015.01.17/app /app ntfs binary,nouser,noacl,posix=0 0 0
C:/Documents\040and\040Settings/Administrator/デスクトップ\040 /top ntfs binary,nouser,noacl,posix=0 0 0
C:/Documents\040and\040Settings/Administrator/デスクトップ\040 /desktop ntfs binary,nouser,noacl,posix=0 0 0
Last modified:2018/04/21 14:33:42
Keyword(s):
References:[動作するプログラミング言語及び開発環境] [NetBeansのセットアップ]