Hack-A-N900/Resize vfat partition: Unterschied zwischen den Versionen
aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springenAmir (Diskussion | Beiträge) (Die Seite wurde neu angelegt: == Build parted == #get parted source wget http://ftp.gnu.org/gnu/parted/parted-2.2.tar.gz tar -xzf parted-2.2.tar.gz cd parted-2.2/ #get e2fsprogs source apt-get sou...) |
Ra (Diskussion | Beiträge) |
||
(6 dazwischenliegende Versionen von einem anderen Benutzer werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
== Build parted == | == Build parted == | ||
− | + | <pre> | |
− | #get parted source | + | # get parted source |
wget http://ftp.gnu.org/gnu/parted/parted-2.2.tar.gz | wget http://ftp.gnu.org/gnu/parted/parted-2.2.tar.gz | ||
tar -xzf parted-2.2.tar.gz | tar -xzf parted-2.2.tar.gz | ||
cd parted-2.2/ | cd parted-2.2/ | ||
− | #get e2fsprogs source | + | # get e2fsprogs source |
apt-get source e2fsprogs | apt-get source e2fsprogs | ||
ln -s /lib/libuuid.so.1 /lib/libuuid.so | ln -s /lib/libuuid.so.1 /lib/libuuid.so | ||
− | CPPFLAGS="-I | + | CPPFLAGS="-I`pwd`/e2fsprogs-1.41.3/lib/" \ |
+ | CFLAGS="-I`pwd`/e2fsprogs-1.41.3/lib/ -L/lib/" LDFLAGS="-L/lib/" \ | ||
+ | ./configure --disable-dynamic-loading --without-readline --disable-device-mapper | ||
make | make | ||
+ | </pre> | ||
== Resize vfat partition == | == Resize vfat partition == | ||
− | + | Example: | |
+ | <pre> | ||
+ | # resize the vfat partition to 27G | ||
parted resize 1 0G 27G | parted resize 1 0G 27G | ||
− | # reboot now because the kernel can't re-read the partition table | + | # reboot now(!) because the kernel can't re-read the partition table |
reboot | reboot | ||
+ | </pre> | ||
+ | |||
+ | [[Kategorie:N900]] |
Aktuelle Version vom 20. Juli 2010, 01:48 Uhr
Build parted
# get parted source wget http://ftp.gnu.org/gnu/parted/parted-2.2.tar.gz tar -xzf parted-2.2.tar.gz cd parted-2.2/ # get e2fsprogs source apt-get source e2fsprogs ln -s /lib/libuuid.so.1 /lib/libuuid.so CPPFLAGS="-I`pwd`/e2fsprogs-1.41.3/lib/" \ CFLAGS="-I`pwd`/e2fsprogs-1.41.3/lib/ -L/lib/" LDFLAGS="-L/lib/" \ ./configure --disable-dynamic-loading --without-readline --disable-device-mapper make
Resize vfat partition
Example:
# resize the vfat partition to 27G parted resize 1 0G 27G # reboot now(!) because the kernel can't re-read the partition table reboot