A typical Ubuntu (or any Linux) installation is not just a kernel, it's a bunch of things- a file system, a windows manager, a set of tools and other frameworks. I would like to know what Ubuntu (or any other Linux distro for that matter) is assembled from. Where do I find this information (or alternatively- perhaps someone here could produce the list themselves)?
Asked
Active
Viewed 454 times
2
-
Although not Ubuntu specific, reading the documentation from Linux from Scratch is useful in general for learning about how an installation could be built from the ground up. – Nov 24 '12 at 00:31
-
Ubuntu Packages Search: http://packages.ubuntu.com lets you browse the available packages by category. – Brent Bradburn Dec 15 '13 at 22:29
1 Answers
3
Simplest method - install Ubuntu, open up the Terminal, and dpkg --get-selections > /tmp/packagelist.txt
. Peruse /tmp/packagelist.txt
at your leisure. If you wonder what any of those things are, apt-cache show packagename
. If that's not enough information, start Googlin'.

Jim Salter
- 4,343