LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-03-2002, 12:32 AM   #1
moger
Member
 
Registered: Sep 2002
Distribution: Fedora Core 3
Posts: 247

Rep: Reputation: 30
tgz files


I know that slackware uses .tgz files for it's package management. But I thought .tgz files and tar.gz files were the same (compressed tarballs). So wouldn't you be able to type "installpkg foo.tar.gz" just like you would "installpkg foo.tgz"? I kinda tried that and it didn't work.

Also, let's say you have foo.tar.gz. To get it into "slackware format", could I cheat and change its filename to foo.tgz by "mv foo.tar.gz foo.tgz" ? And then install that foo.tgz using the slackware installer? Or is the slackware .tgz files a special package, kinda like Redhat rpm's?
 
Old 10-03-2002, 01:45 AM   #2
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
No.

Slackware uses the common "tarball", but adds something to it before it
can be considered a "slackware package". If you take a slackware
package, untar, ungzip it, you'll find that there is a file in a directory called
install. This file describes the package, and and tells pkgtool what to do
after putting all the files where they belong (perhaps modify an init script).
 
Old 10-03-2002, 09:41 AM   #3
NSKL
Senior Member
 
Registered: Jan 2002
Location: Rome, Italy ; Novi Sad, Srbija; Brisbane, Australia
Distribution: Ubuntu / ITOS2008
Posts: 1,207

Rep: Reputation: 47
Thats not completely correct, Yes slackware packages have the INSTALL file but what it does is sets permisssions and symlinks. Slackware packages are precompiled binary packages, kinda like RPMs and you can not just installpkg somefile.tar.gz because thats source code.
Confusing thing is that .tar.gz files can be called .tgz as well, like slackware packages, but they are not Slackware packages. They are source.
You can however make slackware packages from .source .tgz and .tar.gz files. Read http://www.linuxorbit.com/modules.ph...icle&artid=467
to find out how.
HTH
-NSKL
 
Old 10-03-2002, 12:53 PM   #4
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
The install file is what sets up symlinks, removes old files; it does whatever
is necessary for the package to be fully usable, as defined by the creator.
THIS is what makes it a Slackware package. I could distribute a
Slackware package that is source, as long as I could get pkgtool to handle
it correctly, it's a valid package.

From "man makepkg":

makepkg creates a new Slackware compatible package. The
package is constructed using the contents of the current directory and all
subdirectories. If symbolic links exist, they will be converted to script code
to recreate them when the package is installed. This code will be
appended to the primary installation script ( install/doinst.sh ) , or, if that
script does not exist it will be created with those contents. The package
will be written out to the file packagename which should be the full name,
including the extension (usually .tgz).

makepkg allows the creator to reset the permissions of the files, so this
is done before any user gets the package.
It says nothing about what has to be in the (sub)directories.

All of the slackpack tools are simply shell scripts, and as such can be read
(or modified) by anyone. Browse through them sometime.
 
Old 10-03-2002, 02:27 PM   #5
NSKL
Senior Member
 
Registered: Jan 2002
Location: Rome, Italy ; Novi Sad, Srbija; Brisbane, Australia
Distribution: Ubuntu / ITOS2008
Posts: 1,207

Rep: Reputation: 47
Yeah, but he asked if he can just do a installpkg foo.tar.gz and he Cant! At least as far as i know. Slackware packages are precompiled binaries, so he has to compile them, put them in correct directory structure, and then run makepkg to create a valid slackware package. Check out the link i posted above.
Try installpkg foo.tar.gz and see for yourself what happens...
-NSKL
 
Old 10-03-2002, 03:12 PM   #6
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Correct, he cannot do a installpkg foo.[tgz|tar.gz] with impunity, he needs to make sure it's a Slackware package.

Slackware packages are NOT necessarily precompiled binaries! They are
packages of files that require a specific installation procedure that installpkg causes to happen. You could make a Slackware package that
installed source files into /usr/local/src/foo, went into that directory, did a
./configure --special-optimizations && make && make install && \
make clean && cd .. && rm -rf foo (all with exception catching, of course)

It would still be a legitimate Slackware package.

makepkg simply bundles all that up, and appends the creation of symlinks
to the installation script in ./install/
 
Old 10-04-2002, 09:45 AM   #7
NSKL
Senior Member
 
Registered: Jan 2002
Location: Rome, Italy ; Novi Sad, Srbija; Brisbane, Australia
Distribution: Ubuntu / ITOS2008
Posts: 1,207

Rep: Reputation: 47
Hey i didnt know that! thanks for the info, and sorry i again for the confusion i made when i missunderstood you in the first post ^ up there.
Thanks again for clarification.
-NSKL
 
Old 10-04-2002, 12:20 PM   #8
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
That's fine. I hope I didn't come off too strong. . . Anyway, did we answer
your question, Moger? =-}
 
Old 10-04-2002, 08:55 PM   #9
moger
Member
 
Registered: Sep 2002
Distribution: Fedora Core 3
Posts: 247

Original Poster
Rep: Reputation: 30
yup
 
Old 10-05-2002, 01:08 AM   #10
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Sweet, and taught a few of us (ok at least me ) something in the process, thanks!

Cool
 
Old 10-05-2002, 01:29 AM   #11
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Yay!!!
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Installing TGZ files Burtonsnow Slackware 5 04-15-2004 11:23 AM
how to install .tgz files? bw8 Linux - Newbie 10 08-21-2003 03:03 PM
.tgz files mohapi Linux - General 2 05-03-2003 10:11 AM
tgz files Chijtska Linux - General 1 02-07-2002 01:44 PM
.tgz files philfighter Linux - Newbie 6 08-22-2001 02:07 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:26 PM.

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