Changes between Version 131 and Version 132 of wireless/modem
- Timestamp:
- 06/17/2025 07:03:58 PM (12 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
wireless/modem
v131 v132 2417 2417 2418 2418 USB 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 2422 Ubuntu has auto updates enabled by default and may download a lot of data, which can be bad for some cellular plans. 2423 2424 Use the below to disable auto updates: 2425 {{{ 2426 # disable Ubuntu auto-updates 2427 sudo systemctl disable unattended-upgrades 2428 sudo systemctl stop unattended-upgrades 2429 vi /etc/apt/apt.conf.d/20auto-upgrades # set all values to 0 2430 }}}