How can I see the list of installed programs?
-
Hi, there is not enough free space on my Omega, how can I see the list of installed programs to remove unnecessary ones?
-
@CAP-33 Here you are a few CLI commands:
df -h
opkg update
opkg list-installed
ls -alR / | less
or
ls -alR / > full_list.txt
and browse the full_list.txt file with any editor.Good luck!
-
Thank you. I want to remove Python 3 and replace it with Python 3 Light, but when I enter the Python 3 in the console, the console writes "No packages removed".
-
@CAP-33 Try these commands please:
df -h
opkg update
opkg list-installed | grep python3
opkg --force-removal-of-dependent-packages remove python3*
opkg list-installed | grep python3
df -h
-
@György-Farkas
Thanks, all worked well!