LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Closed Thread
  Search this Thread
Old 02-19-2009, 06:55 AM   #31
rich_c
Member
 
Registered: Apr 2008
Location: UK
Distribution: PeppermintOS
Posts: 387
Blog Entries: 74

Rep: Reputation: 81

This may be a good place to start. Looks like there may be some more useful info in the 'See Also' section.
 
Old 02-19-2009, 07:03 AM   #32
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,883
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
Linux package formats - Wikipedia, the free encyclopedia
http://en.wikipedia.org/wiki/Linux_package_formats

Package management system - Wikipedia, the free encyclopedia
Quote:
A package, for package managers, denotes a specific set of files bundled with the appropriate metadata for use by a package manager. This can be confusing, as some programming languages often use the word "package" as a specific form of software library. Furthermore, that software library can be distributed in a package of files bundled for a package manager.


Package management systems are charged with the task of organizing all of the packages installed on a system and maintaining their usability. Typical functions of a package management system include:

* Verifying file checksums to ensure correct and complete packages.
* Verifying digital signatures to authenticate the origin of packages.
* Applying file archivers to manage encapsulated files.
* Upgrading software with latest versions, typically from a software repository.
* Grouping of packages by function to help eliminate user confusion.
* Managing dependencies to ensure a package is installed with all packages it requires.

Some additional challenges are met by only a few package management systems.
Advanced Packaging Tool - Wikipedia, the free encyclopedia
http://en.wikipedia.org/wiki/Advanced_Packaging_Tool
 
Old 02-19-2009, 07:19 AM   #33
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
So.. as far as i understand, even .rar and .zip are package formats, right?
 
Old 02-19-2009, 07:36 AM   #34
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by QueenZ View Post
So.. as far as i understand, even .rar and .zip are package formats, right?
No. (maybe) (it depends)

Packages are nothing more than collections of files bundled in some way. The format is typically tailored to a specific package manager---eg .rpm, .deb, etc.

.rar and .zip are archiving/compression formats. For example a .zip file might contain some .rpm packages, but it could just as well contain the complete works of William Shakespeare.

To cloud the issue a bit, the Slackware package format is "tgz". I think these are actually just tar.gz archives----by using the suffix ".tgz", the Slackware package tools know what to do.
(You could of course write a package manager to automatically use ANY file/archive format)
 
Old 02-19-2009, 07:40 AM   #35
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by pixellany View Post
No. (maybe) (it depends)

Packages are nothing more than collections of files bundled in some way. The format is typically tailored to a specific package manager---eg .rpm, .deb, etc.

.rar and .zip are archiving/compression formats. For example a .zip file might contain some .rpm packages, but it could just as well contain the complete works of William Shakespeare.

To cloud the issue a bit, the Slackware package format is "tgz". I think these are actually just tar.gz archives----by using the suffix ".tgz", the Slackware package tools know what to do.
(You could of course write a package manager to automatically use ANY file/archive format)
exactly my thoughts.. It's just that there is no packgage manager that takes .zip or .rar as it's format

ok.. so.. maybe for me to get a better understanding of all this package system and how it works..

Can you help me to install Opera (i just downloaded opera 9.6 and it was in .deb) without using a package manager? I already unarchived .deb to a folder and now i got 3 files..

1. control.tar.gz
2. data.tar.gz
3. debian-binary

what's next?
 
Old 02-19-2009, 07:56 AM   #36
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
IMHO, you are chasing your tail. You are not going to understand package management by taking apart a .deb package and attempting to install the thing manually. Much better to find the developer's site for .deb packages and read up on how it works.

To install something without using a package manager, get it in a generic format (in some cases, this will mean source code which must be compiled)
 
Old 02-19-2009, 08:16 AM   #37
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
why do i need to get it's source? I think i can install it anyway..

btw, i think i have already found dependencies..
Depends: libc6 (>= 2.1.3), xlib6g (>= 3.3.6) | xlibs | libxmu6, libqt3-mt (>= 3.3.4), libstdc++6
 
Old 02-19-2009, 09:38 AM   #38
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
You don't unarchive .deb files, install with (for Ubuntu):
Code:
sudo dpkg -i whateveritscalled.deb
 
Old 02-19-2009, 09:42 AM   #39
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by brianL View Post
You don't unarchive .deb files, install with (for Ubuntu):
Code:
sudo dpkg -i whateveritscalled.deb
i want to install it manually.. without using it..
 
Old 02-19-2009, 09:51 AM   #40
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
what is the sound of one hand clapping?
 
Old 02-19-2009, 09:51 AM   #41
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Quote:
Originally Posted by QueenZ View Post
i want to install it manually.. without using it..
How are you going to do that? Enlighten us.
 
Old 02-19-2009, 09:54 AM   #42
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
I've no idea you should enlighten me i'm a newbie ..
 
Old 02-19-2009, 09:55 AM   #43
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
Quote:
Originally Posted by QueenZ View Post
I've no idea you should enlighten me i'm a newbie ..
You seem resistant to attempts to enlighten.
There is some great advice already in this thread.
 
Old 02-19-2009, 09:56 AM   #44
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by snowpine View Post
You seem resistant to attempts to enlighten.
There is some great advice already in this thread.
compiling from source? Now why would i do that if i have it compiled ??
 
Old 02-19-2009, 10:40 AM   #45
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Quote:
Originally Posted by QueenZ View Post
I've no idea you should enlighten me i'm a newbie ..
Perhaps, but also:
http://en.wikipedia.org/wiki/Internet_troll
 
  


Closed Thread



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
recommend me simple linux distro dumm_newbie Linux - Newbie 4 02-08-2008 09:11 AM
Simple distro for a server (a simple guy) dwmartini Linux - Distributions 2 02-03-2006 11:08 AM
A simple Linux on a Floppy distro... brianbek Linux - Distributions 4 10-07-2005 05:29 PM
Simple n Perfect Linux Distro abimanyu007 Linux - Software 4 10-30-2004 05:59 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:58 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