LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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, 01:15 AM   #1
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373
Blog Entries: 2

Rep: Reputation: 32
Looking for a very simple linux distro


I'm looking for some very simple linux distro that is not based on any other linux (debian/slackware etc) and that doesn't use any package manager.. something very simple...

I wanted to go with Damn Small Linux but It is based on Debian distribution..

Any suggestions?
 
Old 02-19-2009, 01:29 AM   #2
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
QueenZ

Your question basically contradicts itself. Normally what makes a distro simple is the package management. If you do not have packages that means that you have to compile everything. Compiling a lot of stuff CAN be a royal PITA. As far as it not being based on anything else, you are kind of asking somebody to reinvent the wheel.
 
Old 02-19-2009, 01:29 AM   #3
Junior Hacker
Senior Member
 
Registered: Jan 2005
Location: North America
Distribution: Debian testing Mandriva Ubuntu
Posts: 2,687

Rep: Reputation: 61
This is an exellent place to start, click on the link called "Distributions" and select category and arch. on the next page to narrow your search.
 
Old 02-19-2009, 01:33 AM   #4
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by lazlow View Post
QueenZ

Your question basically contradicts itself. Normally what makes a distro simple is the package management. If you do not have packages that means that you have to compile everything. Compiling a lot of stuff CAN be a royal PITA. As far as it not being based on anything else, you are kind of asking somebody to reinvent the wheel.
huh?? What's a package manager then??
 
Old 02-19-2009, 01:36 AM   #5
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
Quote:
Originally Posted by QueenZ View Post
huh?? What's a package manager then??
It's a program that makes installing/updating/removing other programs really simple.
 
Old 02-19-2009, 01:37 AM   #6
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by win32sux View Post
It's a program that makes installing/updating/removing other programs really simple.
well from previous post it seemed like it's a compiler Am i wrong?
 
Old 02-19-2009, 01:38 AM   #7
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by lazlow View Post
QueenZ

Your question basically contradicts itself. Normally what makes a distro simple is the package management. If you do not have packages that means that you have to compile everything. Compiling a lot of stuff CAN be a royal PITA. As far as it not being based on anything else, you are kind of asking somebody to reinvent the wheel.
Package manager is installer remover and updater.. why do i need to compile everything from source?
 
Old 02-19-2009, 01:40 AM   #8
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
A package manager does just what it says it does, it handles the packages. On a rpm based system the root package manager is rpm (yum depends on rpm, and MOST other rpm package mangers(RH based) depend on yum). Packages are precompiled binaries with built in directions as to what they require and where they should be installed. Basically Debs are the same thing, just handled with different tools.

Edit: a couple of post were made while I was typeing.

Last edited by lazlow; 02-19-2009 at 01:41 AM.
 
Old 02-19-2009, 01:40 AM   #9
Ranguvar
Member
 
Registered: Oct 2008
Location: Upstate NY
Distribution: Arch Linux
Posts: 99

Rep: Reputation: 17
A piece of software that installs and uninstalls software for you, and other things dealing with software.

For example, on my distro (Arch), I run

pacman -S firefox

And Firefox, plus all its other software required to run, is downloaded and installed in the proper place.

pacman -R firefox

Removes it. The process is similar in other distros. Debian and those based on it have apt-get, which I'd say is the best binary package manager (read: easy, fast to install) outside of pacman. There's often graphical front-ends that make things easier for new users. Some are different - Gentoo, notably, and some others download source automatically and compile it, giving you more customization and speed at the expense of time to compile and related complications. Slackware does not do dependencies - it doesn't automatically download other packages required for the one you want to work. This can be a feature, or a weakness - depends on what you want in a distro.



If you want a simple distro, I'd recommend Arch. I can tell that's NOT what you want though - Arch is simple as in being clean and easy to dig into the internals. You want easy to use. *ubuntu, Mandriva, PCLinuxOS, Mint, openSUSE, etc.

Why don't you want a distro based on another distro?
 
Old 02-19-2009, 01:42 AM   #10
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
One of your requirement was "that doesn't use any package manager.. ". At some point somebody has to compile the code. If you do not use a package manager, that somebody is you.

Edit: Have to learn to type faster. I would point out that the distros suggested by Ranguvar(in that last paragraph) all use package managers. Other than that they are all good choices.

Last edited by lazlow; 02-19-2009 at 01:45 AM.
 
Old 02-19-2009, 01:45 AM   #11
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
Quote:
Originally Posted by QueenZ View Post
well from previous post it seemed like it's a compiler Am i wrong?
Yes, you are wrong. A compiler is a totally separate program. Some package managers will work with source-based packages (and will automatically use your compiler to compile the packages prior to installing them). Most package managers, however, use binary packages, in which case a compiler isn't necessary at all.
 
Old 02-19-2009, 01:46 AM   #12
QueenZ
Member
 
Registered: Sep 2008
Distribution: openSUSE, Ubuntu
Posts: 373

Original Poster
Blog Entries: 2

Rep: Reputation: 32
Quote:
Originally Posted by lazlow View Post
One of your requirement was "that doesn't use any package manager.. ". At some point somebody has to compile the code. If you do not use a package manager, that somebody is you.

Edit: Have to learn to type faster. I would point out that the distros suggested by Ranguvar(in that last paragraph) all use package managers. Other than that they are all good choices.
why in the world would i have to compile the code??
 
Old 02-19-2009, 01:48 AM   #13
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
As I said before:

Quote:
At some point somebody has to compile the code.
That is assuming that you do not use a package manager.
 
Old 02-19-2009, 01:57 AM   #14
Laserman
LQ Newbie
 
Registered: Jun 2008
Distribution: Fedora 10, DSL, Zenwalk
Posts: 27

Rep: Reputation: 17
Hmmmmm....sometimes it is hard to see when you are being trolled.....
 
Old 02-19-2009, 02:08 AM   #15
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
Laserman

Thanks for pointing it out. I have a habit of believing in the good nature of people a little more than I should.
 
  


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 08:47 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