No, the PLS83W, as it's even pin-compatibleGreat! That should make assembly much easier for you! Is it the Quectel EG25-G?
No, the PLS83W, as it's even pin-compatibleGreat! That should make assembly much easier for you! Is it the Quectel EG25-G?
Have you also muted the microphone inputs in alsamixer? I wonder also, how you set the game volume to 50%; is there a system app that sets some volume on some system or other, or did you use pavucontol or alsamixer for that?Any news regarding the audio issues ? I tried to set the output volume down to ~50% but to no avail.
I just left clicked on the speakers icon in the Mate taskbar, and lowered the output volume to ~50%. Alsamixer on the CLI reports the volume is down to 49%.Have you also muted the microphone inputs in alsamixer? I wonder also, how you set the game volume to 50%; is there a system app that sets some volume on some system or other, or did you use pavucontol or alsamixer for that?
Nevermind @EvilDragon , I managed to disable microphone input with alsamixer
eating issue (at least on my unit) are somehow related. I believe the system is drawing too much juice out of the battery, causing it to heat up.
Is my assumption correct-ish ?
htop has a -d (--delay) option which allows you to tell how frequently you want it to update (see manpage for details).Plain old top only updates every three seconds rather than every second like htop does. It still uses some power, but a lot less.
#!/bin/sh
cpu_sym=' '
mem_sym=' '
empty=
while :; do
/bin/ps -eo %cpu,%mem,cmd \
| awk -v prefix="$prefix" -v cpu_sym="$cpu_sym" -v mem_sym="$mem_sym" -v empty="$empty" '
BEGIN { cpu_max = 1; mem_max = 1; }
$1 > cpu_max { cpu_cmd = $3; cpu_max = $1; }
$2 > mem_max { mem_cmd = $3; mem_max = $2; }
END {
print prefix cpu_sym, cpu_cmd, cpu_max, mem_sym, mem_cmd, mem_max
}
'
sleep 3
done
#!/bin/bash
while true ; do echo `date` ; sleep 60 ; done
./test.sh >> test.out 2>&1 &