Author Archive
Wie löscht man alle Mails aus der Mail Queue ?
Um alle mails in der Queue anzuzeigen kann man folgenden Befehl verwenden:root@hostname:~:>mailq Zum löschen einer Mail aus der Queue muß man die ID haben:root@hostname:~:>awk ‚/^[0-9A-Z]{8}/ {print $1}‘ <<<$(mailq)3A6D03DB8A016449855C942383B023C38E17C4270430743A5855F44DC0C8C446 Um alle mails aus der Queue zu entfernen kann man folgenden Befehl verwenden:root@hostname:~:>for i in $(awk ‚/^[0-9A-Z]{8}/ {print $1}‘ <<<$(mailq)); do postsuper -d ${i}; done
Understanding LTE Signal Strength
Signal Strength Understanding LTE signal strength can be confusing. We crafted a simple chart below to make it a little easier to understand. The graphic below shows what approximate values may considered good and bad signal quality scores for various communication wave lengths. RSSI SINR (dB) RSRQ (dB) RSRP (dBm) EC/lo (db) Technology LTE and […]