LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 10-17-2005, 06:53 AM   #1
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Rep: Reputation: 47
Help installing parted program


I have downloaded the 'parted' program. The program is ' parted-1.6.24.tar.gz '

As soon as the downloading was finished, it opened on Awk. Why is that?

I have to decompress this tar file.

I must write the following commands to install it.

$ ./configure
$ make


It is landed in the tmp folder.
------------------------------------------------------------------------------------------

[nissanka@c83-250-90-204 nissanka]$ find ./ -name 'parted-1.6.24.tar.gz'
./tmp/parted-1.6.24.tar.gz
[nissanka@c83-250-90-204 nissanka]$


What shall I do now? How do I install the program? Why did it open it AWK?

Last edited by Gins; 10-17-2005 at 08:08 AM.
 
Old 10-17-2005, 07:26 AM   #2
mjuhannus
Member
 
Registered: Sep 2004
Location: Finland
Distribution: Ubuntu 10.04, Debian 5, OpenSUSE 11.3
Posts: 60

Rep: Reputation: 15
You'll have check your file associatons for the awk problem, but for the installation part do:

go to /tmp dir and untar the archive:

tar -xfv parted-1.6.24.tar.gz

Then go to dir /tmp/parted-1.6.24 and install with ./configure && make

Or you could just get the rpm-package and install it.
 
Old 10-17-2005, 07:43 AM   #3
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
I downloaded again and decompressed it. It worked fine. The following is a part of the output.


[root@c83-250-90-204 nissanka]# tar -xzvf parted-1.6.24.tar.gz
parted-1.6.24/
parted-1.6.24/m4/
parted-1.6.24/m4/gettext.m4
parted-1.6.24/m4/iconv.m4
parted-1.6.24/m4/lib-ld.m4
parted-1.6.24/m4/lib-link.m4
parted-1.6.24/m4/lib-prefix.m4
parted-1.6.24/m4/nls.m4
parted-1.6.24/m4/po.m4
parted-1.6.24/m4/progtest.m4
parted-1.6.24/m4/Makefile.am
parted-1.6.24/m4/Makefile.in


checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
appending configuration tag "F77" to libtool

checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking whether NLS is requested... yes
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for dlopen in -ldl... yes
checking for uuid_generate in -luuid... no
configure: error: GNU Parted requires libuuid - a part of the e2fsprogs package (but
sometimes distributed separately in uuid-devel or similar)
This can probably be found on your distribution's CD or FTP site or at:
http://web.mit.edu/tytso/www/linux/e2fsprogs.html
Note: if you are using precompiled packages you will also need the development
package as well (which may be called e2fsprogs-devel or something similar).
If you compile e2fsprogs yourself then you need to do 'make install' and
'make install-libs'.

-------------------------------------------------------------------------------

Then I wrote the following ' ./ configure ' command. It worked fine. The following is a part of the output:

[root@c83-250-90-204 parted-1.6.24]# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file n
------------------------------------------------------------------------------------------------


However, the make command didn't work.

[root@c83-250-90-204 parted-1.6.24]# make
make: *** No targets specified and no makefile found. Stop.
[root@c83-250-90-204 parted-1.6.24]# make install
make: *** No rule to make target `install'. Stop.
[root@c83-250-90-204 parted-1.6.24]# 'make install'
bash: make install: command not found
[root@c83-250-90-204 parted-1.6.24]#
[root@c83-250-90-204 parted-1.6.24]#

What is the problem?

Last edited by Gins; 10-17-2005 at 08:12 AM.
 
Old 10-17-2005, 09:03 AM   #4
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
I went to the following site and downloaded the e2fsprogs and installed successfully. However, the problem remains.


http://web.mit.edu/tytso/www/linux/e2fsprogs.html
Please help me.
 
Old 10-17-2005, 03:56 PM   #5
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
I urge someone to look at this when possible.
 
Old 10-18-2005, 03:41 PM   #6
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
It seems none of our experts is capable of answering this question.
 
Old 10-19-2005, 08:38 AM   #7
slackie1000
Senior Member
 
Registered: Dec 2003
Location: Brasil
Distribution: Arch
Posts: 1,037

Rep: Reputation: 46
hi there,
after the installation of e2fsprog, what is the output of .configure from parted?
what is the error message?
regards,
slackie1000
 
Old 10-19-2005, 10:20 AM   #8
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
Slackie thanks for the reply.
I had some big problems with the computer. It simply didn't work. The Linux was dead. I made a reinstallation. So I lost everything. I have to start from the scratch.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Installing program? quaylet MEPIS 8 05-23-2005 08:36 PM
need help installing a program shadizzle Linux - Newbie 10 01-08-2005 01:54 PM
Using a program after installing it stab Linux - Newbie 3 09-17-2004 06:21 AM
Installing a program PhuckFonix Linux - Newbie 6 05-29-2004 01:36 PM
Installing a program newuser455 Linux - Hardware 3 05-23-2004 09:46 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 06:40 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration