Description: QTParted is a Partition Magic clone to graphically manipulate partitions written in C++ using the Qt toolkit.It depends upon libparted, which can be obtained from http://www.gnu.org/software/parted . (BTW, iam not the author of Qtparted. I just added an entry here cos its long due!!!)Last changelog:
Several bugs have been fixed and parts of the code have been cleaned up.
the unsermake path is wrong it should be /usr/bin/unsermake for suse.. and even if you write a symbolic link to unsermake you get the:
/bin/sh: -c: line 0: syntax error near unexpected token `then'
/bin/sh: -c: line 0: `/usr/lib/qt3/bin/uic -L -nounload -i qp_ui_config.h /tmp/kompile-tmp/qtparted-0.4.5/src/qp_ui_config.ui > ./src/qp_ui_config.cpp ; ret=$? if test "$ret" = 0; then echo '#include "qp_ui_config.moc"' >> ./src/qp_ui_config.cpp; else rm -f ./src/qp_ui_config.cpp; exit $ret; fi'
Error creating ./src/qp_ui_config.cpp. Exit status 2.
make: *** [all] Error 2
Error during source build. Installation aborted!
When running unsermake, I get these messages:
creating ./src/qp_ui_config.h
...
...
creating ./src/qp_ui_config.cpp
/bin/sh: -c: line 0: syntax error near unexpected token `then'
/bin/sh: -c: line 0: `/usr/lib/qt/bin/uic -L -nounload -i qp_ui_config.h /home/giancarlo/Download/qtparted-0.4.5/src/qp_ui_config.ui > ./src/qp_ui_config.cpp ; ret=$? if test "$ret" = 0; then echo '#include "qp_ui_config.moc"' >> ./src/qp_ui_config.cpp; else rm -f ./src/qp_ui_config.cpp; exit $ret; fi'
Error creating ./src/qp_ui_config.cpp. Exit status 2.
If anyone here could give me a hint, I would be grateful!
Very annoying bug. You must go to src/ and run corrected lines:
Add ";" before "if test" . and repeat until done :(
Example
/usr/lib/qt/bin/uic -L -nounload -i qp_ui_config.h /home/giancarlo/Download/qtparted-0.4.5/src/qp_ui_config.ui > ./src/qp_ui_config.cpp ; ret=$? ; if test "$ret" = 0; then echo '#include "qp_ui_config.moc"' >> ./src/qp_ui_config.cpp; else rm -f ./src/qp_ui_config.cpp; exit $ret; fi
When I type make I get:
__________________________________________________________________________________________________
XANO0OEAN36:~/Downloads/qtparted-0.4.5/qtparted-0.4.5$ make
WARNING: use unsermake instead of make or use a wrapper script, e.g. makeobj!!!
/usr/share/unsermake/unsermake all
make: /usr/share/unsermake/unsermake: Command not found
make: *** [all] Error 127
__________________________________________________________________________________________________
So, I found unsermake, and installed it, but still no go:
___________________________________________
Traceback (most recent call last):
File "", line 1, in ?
ImportError: No module named unsermake
___________________________________________
It seems kinda weird to require this...was it intentional?
Thanks for the info. It has been a long time since i had to hunt for it, so i thought that the url might have been working. i have changed it at the download page.
Ratings & Comments
11 Comments
http://gparted.sourceforge.net/ They provided a livecd and live-usb.
why it's under your personal copyright (2002-2003)?
the unsermake path is wrong it should be /usr/bin/unsermake for suse.. and even if you write a symbolic link to unsermake you get the: /bin/sh: -c: line 0: syntax error near unexpected token `then' /bin/sh: -c: line 0: `/usr/lib/qt3/bin/uic -L -nounload -i qp_ui_config.h /tmp/kompile-tmp/qtparted-0.4.5/src/qp_ui_config.ui > ./src/qp_ui_config.cpp ; ret=$? if test "$ret" = 0; then echo '#include "qp_ui_config.moc"' >> ./src/qp_ui_config.cpp; else rm -f ./src/qp_ui_config.cpp; exit $ret; fi' Error creating ./src/qp_ui_config.cpp. Exit status 2. make: *** [all] Error 2 Error during source build. Installation aborted!
Does this version allow resizing ext3 partitions?
ITS ALIVE! its been silent for too long :D thanx to see some work on QTparted again!
When running unsermake, I get these messages: creating ./src/qp_ui_config.h ... ... creating ./src/qp_ui_config.cpp /bin/sh: -c: line 0: syntax error near unexpected token `then' /bin/sh: -c: line 0: `/usr/lib/qt/bin/uic -L -nounload -i qp_ui_config.h /home/giancarlo/Download/qtparted-0.4.5/src/qp_ui_config.ui > ./src/qp_ui_config.cpp ; ret=$? if test "$ret" = 0; then echo '#include "qp_ui_config.moc"' >> ./src/qp_ui_config.cpp; else rm -f ./src/qp_ui_config.cpp; exit $ret; fi' Error creating ./src/qp_ui_config.cpp. Exit status 2. If anyone here could give me a hint, I would be grateful!
Very annoying bug. You must go to src/ and run corrected lines: Add ";" before "if test" . and repeat until done :( Example /usr/lib/qt/bin/uic -L -nounload -i qp_ui_config.h /home/giancarlo/Download/qtparted-0.4.5/src/qp_ui_config.ui > ./src/qp_ui_config.cpp ; ret=$? ; if test "$ret" = 0; then echo '#include "qp_ui_config.moc"' >> ./src/qp_ui_config.cpp; else rm -f ./src/qp_ui_config.cpp; exit $ret; fi
When I type make I get: __________________________________________________________________________________________________ XANO0OEAN36:~/Downloads/qtparted-0.4.5/qtparted-0.4.5$ make WARNING: use unsermake instead of make or use a wrapper script, e.g. makeobj!!! /usr/share/unsermake/unsermake all make: /usr/share/unsermake/unsermake: Command not found make: *** [all] Error 127 __________________________________________________________________________________________________ So, I found unsermake, and installed it, but still no go: ___________________________________________ Traceback (most recent call last): File "", line 1, in ? ImportError: No module named unsermake ___________________________________________ It seems kinda weird to require this...was it intentional?
It would be very nice to have a support of LVM into Qtparted. It's the only thing I need to use it !
The link for the parted source [parted 1.6.6.tar.gz] is broken. But it can be downloaded from its makers site at http://members.optusnet.com.au/clausen/parted-1.6.6.tar.gz and the project homepage being at http://www.gnu.org/software/parted/ although you can't download it from there! Hope this helps.
Thanks for the info. It has been a long time since i had to hunt for it, so i thought that the url might have been working. i have changed it at the download page.