Issues I have come across thus far installing and using Linux Lite as a new user - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: General (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=4) +--- Forum: Suggestions and Feedback (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=13) +--- Thread: Issues I have come across thus far installing and using Linux Lite as a new user (/showthread.php?tid=7722) |
Issues I have come across thus far installing and using Linux Lite as a new user - MCReaves - 04-05-2021 First off, hello. I am new to Linux Lite but not new to Linux in general. This post is my first and is aimed at bringing attention to little issues I have spotted during multiple installations of and the use of Linux Lite. I might alter this post if/when I find other issues or have other suggestions. * (issue/oversight?) There is no "python" command, only python2. Scripts looking for "python" fail due to this. One example is youtube-dl. * (suggestion) ffmpeg is not install by default. Using youtube-dl as another example, it needs it. * (issue/usability) The grub boot menu after you hit "e" to edit is very difficult to impossible to read due to the feather logo. Redoing the boot design might be a good idea for usability. * (issue) Ctrl+C doesn't cancel filesystem checks when booting from USB despite it saying it will. * (issue/annoyance) Right before the login prompt when starting, the audio "pops". This pop also happens right before playing videos in a browser, every video. I have not verified if it happens with videos from the hard drive. * (suggestion) I came from MX Linux and I found their "quick system info" tool to be very useful. When ran, it would gather all the needed system info, redact private bits, format the output to be able to be pasted right into a forum post, and copy it to the clipboard all without the user dealing with it. Something similar might be useful for Linux Lite. See attachment for hardware information. EDIT: I found the "quick system info" tool that MX uses and it is a bash script. https://pastebin.com/raw/X3FEDqbe Re: Issues I have come across thus far installing and using Linux Lite as a new user - Moltke - 04-06-2021 (04-05-2021, 09:04 PM)MCReaves link Wrote: First off, hello. I am new to Linux Lite but not new to Linux in general. This post is my first and is aimed at bringing attention to little issues I have spotted during multiple installations of and the use of Linux Lite. I might alter this post if/when I find other issues or have other suggestions.What version of Linux Lite? 1. There is no python command anywhere since python2 reached EOL, people should use now python3 instead when running .py files. Code: $ python3 my_python.py 3. Linux Lite ships with inxi and system info tools, one is a CLI tool you can run from the terminal to gather system info, and the other a GUI tool you can access in whisker menu. About the ctlr+c, the "e" thing and the "pop" sound not sure. Re: Issues I have come across thus far installing and using Linux Lite as a new user - MCReaves - 04-06-2021 I'm using Linux Lite 5.4. Re: Issues I have come across thus far installing and using Linux Lite as a new user - Moltke - 04-06-2021 Ah, that's weird. I remember using FFmpeg to cut some videos, so I thought it was installed by default, perhaps I installed and forgot about that. But that's weird because LL has VLC, which needs FFmpeg too ... Did you upgrade from 5.2 or use 5.4 .iso to install? Re: Issues I have come across thus far installing and using Linux Lite as a new user - MCReaves - 04-06-2021 Fresh install via 5.4 iso. I've only been using Linux Lite for a few days at most. Re: Issues I have come across thus far installing and using Linux Lite as a new user - firenice03 - 04-06-2021 [member=48169]MCReaves[/member] If I recall .... FFMPEG is installable as part of the RESTRICTED EXTRAS with in LITE SOFTWARE... Lite Software - Install - Choose Restricted Extras and/or what else you like Lite Software contains a listing of those more often installed... Re: Issues I have come across thus far installing and using Linux Lite as a new user - Valtam - 04-06-2021 Default package list ootb - https://distrowatch.com/table.php?distribution=lite&pkglist=true&version=5.4#pkglist Re: Issues I have come across thus far installing and using Linux Lite as a new user - Valtam - 04-06-2021 (04-05-2021, 09:04 PM)MCReaves link Wrote: First off, hello. I am new to Linux Lite but not new to Linux in general. This post is my first and is aimed at bringing attention to little issues I have spotted during multiple installations of and the use of Linux Lite. I might alter this post if/when I find other issues or have other suggestions. Older Pythons are no longer in use (known by those who use linux regularly) People use 'python3' now. (04-05-2021, 09:04 PM)MCReaves link Wrote: * (suggestion) ffmpeg is not install by default. Using youtube-dl as another example, it needs it. We need to be very careful about what we include. It's too easy to spill over in size with every suggestion we get and avoid becoming 'Linux Heavy'. Each program must meet several criteria including mass appeal. ffmpeg is not required by most who use LL. (04-05-2021, 09:04 PM)MCReaves link Wrote: * (issue/usability) The grub boot menu after you hit "e" to edit is very difficult to impossible to read due to the feather logo. Redoing the boot design might be a good idea for usability. We'll see if more people report about this. (04-05-2021, 09:04 PM)MCReaves link Wrote: * (issue) Ctrl+C doesn't cancel filesystem checks when booting from USB despite it saying it will. It does, you have to be very quick because once it gets to the filesystem.squashfs file, you can't cancel right in the middle of a file scan. (04-05-2021, 09:04 PM)MCReaves link Wrote: * (issue/annoyance) Right before the login prompt when starting, the audio "pops". This pop also happens right before playing videos in a browser, every video. I have not verified if it happens with videos from the hard drive. That issue will be related specifically to your hardware. You should start a separate threads in the appropriate forum section for that. (04-05-2021, 09:04 PM)MCReaves link Wrote: * (suggestion) I came from MX Linux and I found their "quick system info" tool to be very useful. When ran, it would gather all the needed system info, redact private bits, format the output to be able to be pasted right into a forum post, and copy it to the clipboard all without the user dealing with it. Something similar might be useful for Linux Lite. Lite System Report, Lite Info (for the web). Re: Issues I have come across thus far installing and using Linux Lite as a new user - Valtam - 04-08-2021 Further to this, I will set Python3 as the default in 5.6 going forward. To set: Code: sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10 |