Changes between Version 131 and Version 132 of wireless/modem


Ignore:
Timestamp:
06/17/2025 07:03:58 PM (12 hours ago)
Author:
Ryan Erbstoesser
Comment:

add disable auto updates

Legend:

Unmodified
Added
Removed
Modified
  • wireless/modem

    v131 v132  
    24172417
    24182418USB Modems are especially susceptible to USB auto-suspend issues as they can detach from the USB bus automatically once or twice while powering up.
     2419
     2420== Disable Unbuntu Auto-Updates
     2421
     2422Ubuntu has auto updates enabled by default and may download a lot of data, which can be bad for some cellular plans.
     2423
     2424Use the below to disable auto updates:
     2425{{{
     2426# disable Ubuntu auto-updates
     2427sudo systemctl disable unattended-upgrades
     2428sudo systemctl stop unattended-upgrades
     2429vi /etc/apt/apt.conf.d/20auto-upgrades # set all values to 0
     2430}}}