Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
06-03-2014, 05:51 AM
|
#1
|
Member
Registered: May 2014
Location: Europe
Posts: 199
Rep:
|
Gparted
Hello everybody. Someone knows how to install gparted on Slack?
Thank you!
|
|
|
06-03-2014, 06:01 AM
|
#2
|
Member
Registered: May 2007
Distribution: Slackware
Posts: 288
Rep:
|
Use the Slackbuild (you will also need to install gtkmm).
|
|
2 members found this post helpful.
|
06-03-2014, 06:05 AM
|
#3
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,183
Rep:
|
Hello and welcome to LQ.
See here but read the HOWTO first.
|
|
2 members found this post helpful.
|
06-03-2014, 10:35 AM
|
#4
|
Member
Registered: Jan 2011
Location: Germany
Distribution: Slackware64 -current + Multilib
Posts: 411
Rep:
|
Quote:
Originally Posted by saulgoode
|
The full list of dependencies is:
Code:
atkmm
cairomm
glibmm
gparted
gtkmm
libsigc++
mm-common
pangomm
That's some things to build - but still much less than other programs like Banshee I usually run it with "kdesu gparted" after that and it's fine
|
|
3 members found this post helpful.
|
06-03-2014, 11:08 AM
|
#5
|
Senior Member
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
|
Why not a native CLI or live-disk unless you need to use it repeatedly, still?
|
|
2 members found this post helpful.
|
06-03-2014, 01:09 PM
|
#6
|
Member
Registered: May 2014
Location: Europe
Posts: 199
Original Poster
Rep:
|
Quote:
Originally Posted by jamison20000e
Why not a native CLI or live-disk unless you need to use it repeatedly, still?
|
Nah, I prefer Gparted
|
|
|
06-03-2014, 01:13 PM
|
#7
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,183
Rep:
|
Quote:
Originally Posted by Mitt Green
Nah, I prefer Gparted
|
I assume that jamison20000e suggested that you can have GParted on a live CD.
PS Or on an USB stick. I don't know why they don't suggest to simply use the dd command to write it on the USB stick though, assuming that you make the ISO image hybrid first using the isohybrid command (included in Slackware 14.1).
Last edited by Didier Spaier; 06-03-2014 at 01:26 PM.
|
|
2 members found this post helpful.
|
06-03-2014, 02:01 PM
|
#8
|
Senior Member
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
|
I could see if doing lots of partitioning non-stop, G\KParted is nice but if it's pre-installed here at home I maybe use it once if that plus what happens if you can't search for help and have to use the CLI tools?
Last edited by jamison20000e; 06-03-2014 at 04:04 PM.
|
|
|
06-03-2014, 02:40 PM
|
#9
|
LQ 5k Club
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,307
Rep:
|
Get and install sbopkg, there's a queuefile for gparted:
http://www.sbopkg.org/
Then:
Run (as root):
then:
Code:
cp /usr/doc/sbopkg-0.37.0/contrib/sqg /usr/bin/sqg
then:
That gets all the queuefiles.
Then:
Code:
sbopkg -i gparted.sqf -k
Easy.
|
|
2 members found this post helpful.
|
06-03-2014, 03:18 PM
|
#10
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,183
Rep:
|
I just tried, so I confirm the procedure to burn GParted on an USB stick
Download gparted-live here (at time of writing: version 0.18.0-2). Choose the architecture you want: i486 or amd64. To boot on a machine with an EFI firmware you must choose amd64
Go to the directory where you have put the ISO file.
For i486 type:
Code:
isohybrid gparted-live-0.18.0-2-i486.iso
For amd64 type:
Code:
isohybrid -u gparted-live-0.18.0-2-amd64.iso
Insert your USB stick and double check its device name with cat /proc/partitions as all data on it will be erased (you don't want to wipe out your hard disk, do you?)
Issue this command (I'm assuming your USB stick device is named /dev/sdx, replace x with the relevant letter):
Code:
dd if=gparted-live-0.18.0-2-<architecture>.iso of=/dev/sdx bs=1M
Last edited by Didier Spaier; 06-05-2014 at 04:41 AM.
|
|
2 members found this post helpful.
|
06-03-2014, 04:02 PM
|
#11
|
Senior Member
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
|
Quote:
Originally Posted by brianL
|
Slac's just resonantly my other OS for the first time in at lest 8 or more years so this will come in handy! Thx!
|
|
|
06-03-2014, 04:07 PM
|
#12
|
Senior Member
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
|
Not to mention the more we 'make' the more we can break (said with 386,423 files and KDE ) not that I'm worried with Slackware.
Last edited by jamison20000e; 06-03-2014 at 04:47 PM.
|
|
|
06-03-2014, 04:11 PM
|
#13
|
LQ 5k Club
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,307
Rep:
|
It's useful to have gparted both as a live CD, and installed on whatever computer(s) you have.
|
|
|
06-03-2014, 05:10 PM
|
#14
|
Member
Registered: Mar 2011
Distribution: Slackware 64 -current,
Posts: 550
Rep:
|
I had a need for a partition resizer and used the live cd version of gparted. It did the job with no problems. I resized a 500 gig partition to 750 gigs and it took hours. Be prepared to have the machine out of commision for a while if you use the live cd to resize a partition.
|
|
|
06-03-2014, 05:58 PM
|
#15
|
Senior Member
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
|
More than halve the time same here, resizing data partitions that is. Maybe it depends on the data?
|
|
|
All times are GMT -5. The time now is 08:23 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|