'ext3'에 해당되는 글 2건

  1. 2010.03.19 ext(리눅스 파티션)를 윈도우에서! 4
  2. 2008.11.21 mkfs - ext2 & ext3 4
Microsoft/Windows2010. 3. 19. 10:56
일단 요약부터
1. 윈도우에서 read/write하는 툴이나 드라이버는 존재한다.
2. 하지만 format 을 윈도우에서 하는 툴은 없는것으로 보인다.


EXT2 IFS(Installable FileSystem)는 별도의 프로그램은 설치되지 않고 제어판에 추가된다.

제어판의 IFS Drives 아이콘을 누르면

위와 같은 화면이 뜬다. 여기서 포맷은 할수없다.(윈도우 포맷에서도 EXT는 뜨지 않음)

[링크 : http://ko.wikipedia.org/wiki/Ext3]
    [링크 : http://www.fs-driver.org/] vista는 된다는데 win7은 안 된다 -_-
    [링크 : http://gparted.sourceforge.net/]
    [링크 : http://www.chrysocome.net/explore2fs] win7에서 드라이브를 인식하지 않음
    [링크 : http://sourceforge.net/projects/ext2fsd/]




2010.04.03 추가

윈도우에서 포맷은 불가능 하지만, ext2로 포맷된 USB를 인식했다.
꼽으니 바로 보이는"lost+found" !! 오~~ 감동이야~

파일 삭제/ 제거 작동이 아무런 문제없이 잘된다.



Posted by 구차니
Linux2008. 11. 21. 11:29

일단 mkfs는 DOS로 치자면 format 명령인데
linux에서는 ext2는 이제 잘 안쓰고 ext3를 주로 쓴다.

흥미롭게도 mkfs 과정중에 mkfs.ext2 와 mkfs.ext3 의 결과의 차이가 한줄 뿐이라는 사실을 발견했다.
그리고 부가적으로는 자동으로 체크하는 mount 횟수의 차이도 있다.


[root@localhost mnt]# mkfs.ext2 /dev/sda2
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
3842720 inodes, 7679070 blocks
383953 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=0
235 block groups
32768 blocks per group, 32768 fragments per group
16352 inodes per group
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000

Writing inode tables: done                            
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 39 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.

 [root@localhost mnt]# mkfs.ext3 /dev/sda3
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
2093056 inodes, 4178908 blocks
208945 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4282384384
128 block groups
32768 blocks per group, 32768 fragments per group
16352 inodes per group
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000

Writing inode tables: done                            
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 28 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.





사진 : 클릭하면 크게 보입니다!
Posted by 구차니