Warning: session_start(): open(/tmp/sess_v528bseg1j11o1hovokl7drut0, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
Qtparted openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans  .- Knowledge Base  . 

Qtparted

   0.4.5  

KDE System Tool

Score 83%
Qtparted
zoom


Qtparted
zoom


Link:  Link
Downloads:  8520
Submitted:  Feb 3 2004
Updated:  Aug 20 2005

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!!!)




Changelog:

Several bugs have been fixed and parts of the code have been cleaned up.




LicenseGPL
Send to a friend
Subscribe
Other  Content  from sarath
Report inappropriate content



goto page:  1  2 

-

 parted source

 
 by sharon63 on: Feb 3 2004
 
Score 50%

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.


Sharon.
Reply to this

-
.

 Re: parted source

 
 by sarath on: Feb 4 2004
 
Score 50%

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.


Reply to this

-
.

 LVM support

 
 by pinaraf on: Jul 1 2004
 
Score 50%

It would be very nice to have a support of LVM into Qtparted.
It's the only thing I need to use it !


Written under Konqueror, of course !
Reply to this

-
.

 Can't compile

 
 by AndrewJ on: Aug 21 2005
 
Score 50%

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?


Reply to this

-
.

 Compilation error

 
 by SWaN on: Aug 21 2005
 
Score 50%

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!


Reply to this

-
.

 Re: Compilation error

 
 by xarafaxz on: Aug 21 2005
 
Score 50%

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


Reply to this

-

 thank god

 
 by Superstoned on: Aug 21 2005
 
Score 50%

ITS ALIVE! its been silent for too long :D thanx to see some work on QTparted again!


Reply to this

-
.

 resizing ext3?

 
 by ibc on: Aug 21 2005
 
Score 50%

Does this version allow resizing ext3 partitions?


Reply to this

goto page:  1  2 

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team