![]() |
Updates via GUI - no indicator - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Installing Software (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=18) +--- Thread: Updates via GUI - no indicator (/showthread.php?tid=5948) |
Re: Updates via GUI - no indicator - Valtam - 05-01-2019 Ok, thanks to [member=7644]DeepThought[/member] we may be one step closer. What I need from folk in this thread and from any others that experience this issue is what CPU they are running. Just run: Code: inxi -C from your Terminal, and paste the output here. Cheers ![]() Re: Updates via GUI - no indicator - stevef - 05-01-2019 Jerry, The machine showing the problem has a Quad core Intel Core i5-4460. Code: stephen ~ inxi -C Steve Re: Updates via GUI - no indicator - Searchernow - 05-01-2019 Jerry, inxi -C CPU: Dual core Intel Core i5-3320M (-MT-MCP-) cache: 3072 KB clock speeds: max: 3300 MHz 1: 1197 MHz 2: 1204 MHz 3: 1200 MHz 4: 1199 MHz I can't access the other laptop right now, but it also has an i5. Edit: both laptops have the problem. Re: Updates via GUI - no indicator - Valtam - 05-02-2019 Thanks folks ![]() Re: Updates via GUI - no indicator - DeepThought - 05-02-2019 Dell Inspiron M5040 using Linux-Lite 4.4 64bit Code: $ inxi -C Dell Inspiron 1501 using Linux-Lite 4.4 64bit Code: $ inxi -C Re: Updates via GUI - no indicator - pblack - 02-28-2021 This still seems to be an issue under Linux lite 5.2. Running lite-updates via the command line I get awk: cmd. line:1: (FILENAME=- FNR=34) fatal: division by zero attempted Also get the same issue running Linux lite on Virtualbox. Hacking the lite-updates bash script to test for 0 division when totoal is zero is a workaround. awk ' BEGIN { FS=" "; total=1;end_download=0} /upgraded/ {total= $1 + $3;FS="[ :]" } /^Get:[[:digit:]]+/ {printf "#Downloading %s %s %s\n",$7,$(NF-1),$NF;if(total >0){print int(($2 - 1) * 100 / total);} But never done any bash programming and pretty new to linux so no idea why the upgraded match is not being hit? |