My goal is to make my OS lean as much as possible: only basic OS (kernel) and applications I need.
- Kernel, apt, basic bins.
- Network manager.
- Xfce (terminal, file manager).
- Evolution.
- Chromium.
What is the best way to manage packages and all dependencies?
apt list --installed
or
dpkg -l
shows me all installed packages. Is there any command to show this list with dependency structure? For example as a tree?
Or when I uninstall application, is possible to show me what could be disturbed?
Or what is the best way to make leanest ubuntu with xfce for example.
I tried to install Ubuntu mini, but I have problem with wifi driver not being detected: see my question here. But I think better to learn administrate os then reinstalling.
dpkg
) – guiverc Oct 09 '19 at 10:30cp
only those files? I didn't mean that. Rather than copying/lib/modules/5.3.0-13-generic/kernel/net/wireless/cfg80211.ko
(a file picked at random from a like directory in your other post), I mean installing the package that provides it, ie.linux-modules-extra-5.3.0-13-generic
– guiverc Oct 09 '19 at 10:48dpkg -i
;apt
can install from local too - but you must provide all dependencies or it'll want to go to internet, ie. same limitations asdpkg
) – guiverc Oct 09 '19 at 11:27dpkg
orapt
in shell. And withoutnetwork access
you can't install even basic kernel. That's why I copiedko
files. Could you tell me how can I installmini.iso
and load wifi driver step by step then? Thank you. – genderbee Oct 09 '19 at 12:51