본문 바로가기

작업일지/Embedded Linux

Portable Ubuntu

가상머신 없이 Windows에서 Ubuntu사용.


[Portable Ubuntu]
http://portableubuntu.demonccc.com.ar

[최신버전 업데이트]
http://honeyperl.tistory.com/61

[용량 늘리기]
http://portableubuntu.demonccc.com.ar/wiki/index.php/How_to_change_the_file_system_size_-_Method_2
위 사이트의 내용을 번역해 보았다.

원문
 

How to change the file system size - Method 2

From Portable Ubuntu Remix Wiki

Jump to: navigation, search

This method was shared by Angelo Compagnucci. This is more fast and we don't need use dd.

  • If you are executing Portable Ubuntu, you must close it.
  • Open a Windows console with the cmd command.
  • Go to the folder where are Portable Ubuntu installed. Go to images folder.
  • Create a new image file with:
1.fsutil file createnew more_space.img SIZE_TO_ADD_IN_BYTES

For example, if you want to add 4Gb more:

1.fsutil file createnew more_space.img 4294967296
  • In this step you need join this file with the root filesystem image:
1.copy /b rootfs.img+more_space.img rootfs_.img
  • After join the files, you need rename rootfs_.img to rootfs.img
  • Now run Portable Ubuntu (Execute run_portable_ubuntu.bat)
  • When Portable Ubuntu is ready, type in a terminal:
1.sudo su
2.resize2fs -f /dev/cobd0
  • Now you have more space in Portable Ubuntu!

번역문
 

파일시스템의 사이즈 변경 방법 2

Angelo Compagnucci가 공유 하였습니다. 이 방법은 'dd'명령어를 사용하지 않으며 더욱 빠릅니다.

  • 우분투가 실행되어 있다면 필히 종료 시켜야 합니다.
  • windows에서 console를 엽니다.(실행->'cmd')
  • 우분투 설치 경로로 이동 합니다.(images폴더..)
  • 아래와 같이 새로운 이미지를 생성 합니다.:
fsutil file createnew more_space.img SIZE_TO_ADD_IN_BYTES

예를들어 4Gb의 경우 아래와 같습니다.

fsutil file createnew more_space.img 4294967296
  • 새로 생성한 것과 기존의 파일 시스템을 병합 합니다:
copy /b rootfs.img+more_space.img rootfs_.img
  • 병합후 rootfs_.imgrootfs.img로 파일 이름을 변경 합니다.
  • 우분투를 실행 합니다.(Execute run_portable_ubuntu.bat)
  • 우분투가 샐행되었으면 터미널에서 아래와 같은 작업을 수행 합니다:
sudo su
resize2fs -f /dev/cobd0
  • 이제 우분투의 공간이 넓어 졌습니다!


[Portable_Ubuntu에 다른 물리 드라이브 mount시키기!]
http://vohrmana.egloos.com/2287740