problem with packages that have .tar.gz in the extention


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers problem with packages that have .tar.gz in the extention
# 1  
Old 09-22-2011
problem with packages that have .tar.gz in the extention

Hi Everybody ,
I want to install some packages on sun Solaris , I download the packages it was for example openssl.tar.gz it is not data stream or sun packages , so I search and I found command called make solve this problem , but the packages of this command not found on my machine, so I download it bu it was also .tar.gz packages .
what is the solution ? how can I install those types of packages on the machine ?
Regards.
# 2  
Old 09-22-2011
hello, check your man pages for Solaris you may already have the ability to compress or expand files on your system.

man gzip, gunzip, zcat

else The gzip home page
heres a toot Zip and unzip files on Solaris (Jyothi's Weblog)
# 3  
Old 09-22-2011
Thank you for your response ,
it is not about the uncompressed it , it just about how to install a packages on Solaris that is not file system or data stream packages .
Thank you again.
# 4  
Old 09-22-2011
make is a GNU utility to compile and install from source.. it reads the file called Makefile which is the part of your source file downloaded ..

there are 3 steps

1) $ ./configure it configures your sys environment ( Read the Readme or install file of the source)

2) $make ( it searches for the Makefile for set of rules and then compiles your source code to object code )

3) $make install ( it will now makes the binaries out of object code of step 2)

4) $make clean ( to clear any temp files used)
# 5  
Old 09-22-2011
Quote:
Originally Posted by rakeshkumar
make is a GNU utility to compile and install from source..
GNU didn't invent it, they just built their own version of it. Most UNIXes have their own optionally available somewhere.

Building from source also requires you to have a compiler of some sort installed, and header files. Usually these are supplied by your distributor.

Last edited by Corona688; 09-22-2011 at 03:23 PM..
# 6  
Old 09-22-2011
yes that what I mean how can I install the make command packages, please if you have a link to it , provide me with it and how i can install it on Solaris 10 machine.
# 7  
Old 09-25-2011
please I want a solution to this problem , I want to install the packages of open ldap and most of them are in binary form so I want to install it . thank you in advance.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Ubuntu

Encountering problem on upgrading the packages

Hi folks, Ubuntu 9.04 I have an old box not running for years. I just dig it out from the store room. On running; $ sudo aptitude update ...... ...... Err http://hk.archive.ubuntu.com jaunty/main Packages 404 Not Found Err http://hk.archive.ubuntu.com jaunty/restricted Packages ... (1 Reply)
Discussion started by: satimis
1 Replies

2. Shell Programming and Scripting

add a extention to all files

I'm working on implementing a mail indexer and it currently saves every file with a series of numbers with no extension. ex. 021545545544 I was wondering if someone could point me in the correct direction for a script that would check all the files and give it a .eml extension if it doesn't... (1 Reply)
Discussion started by: binary-ninja
1 Replies

3. Shell Programming and Scripting

Program to tar files to packages less then 200000 bytes

Trying to write program to archive files from a file system. I got some problem with appropriate selection of files in regard to size. Algorithm basic : ----------------- 1. Remotely executes on machine ls cmd and its output redirects and sorts by size of a files : # cd... (0 Replies)
Discussion started by: presul
0 Replies

4. Shell Programming and Scripting

Listing files in a given directory with given extention

for some reason my code does not give the right number of files. can omeone help me please? (2 Replies)
Discussion started by: andrew1400
2 Replies

5. Shell Programming and Scripting

Add extention to files recursively.

I want to add a .txt extension to all files in a directory and it's sub directories. So far I have managed to come up with this for the current directory but how do I do this recursively? for e in *; do mv "$e" "`echo $e | sed -e 's/\ /_/g'`.txt"; done Thanks (5 Replies)
Discussion started by: lewk
5 Replies

6. UNIX for Dummies Questions & Answers

tar -cvf test.tar `find . -mtime -1 -type f` only tar 1 file

Hi all, 4 files are returned when i issue 'find . -mtime -1 -type f -ls'. ./ora_475244.aud ./ora_671958.aud ./ora_934052.aud ./ora_934050.aud However, when I issued the below command: tar -cvf test.tar `find . -mtime -1 -type f`, the tar file only contains the 1st file -... (2 Replies)
Discussion started by: ahSher
2 Replies

7. Shell Programming and Scripting

tar doubts - problem with tar

The below tar command works fine for me, tar -cvf - `find ./srcdir -type d` | (cd ./destdir ; tar -xvf - ) but this version is giving error to me: cd ./srcdir && tar -cf - . | gzip -9 | cd ../destdir && gzip -d | tar -xf - error is: gzip: compressed data not read from a terminal.... (2 Replies)
Discussion started by: royalibrahim
2 Replies

8. Shell Programming and Scripting

Strip extention from filename

Hey, How to strip the extention from filename? MY_XML.xml -> MY_XML MY_TEST_FILE.txt -> MY_TEST_FILE HELLO_WORLD.xls -> HELLO_WORLD Thanks in advance! (2 Replies)
Discussion started by: mpang_
2 Replies

9. UNIX for Dummies Questions & Answers

Uninstalling packages (.tar.gz)

Hi, I still don't know if there's a standard way to do this. I'm hoping there's a *more or less* standard way to do this across linux platforms but the platform in question is Gentoo. Let's say I download a source tarball as tar.gz and I do the typical gunzip app_to_install.tar.gz tar xvf... (2 Replies)
Discussion started by: d11wtq
2 Replies
Login or Register to Ask a Question