mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-05 00:00:51 +00:00
413 B
413 B
Notes for video: http://www.youtube.com/watch?v=MhdE_3Ws5Jo
Offline update install packages:
- Refresh your repository list
sudo apt-get update
- Makes a list of apps/security that needs to be update from your system
sudo apt-get --print-uris -y upgrade | grep "'" | cut -d' -f2 > mylist.txt
- downloads all the debs
wget -i mylist.txt
- installs all the deb files at once
sudo dpkg -i *.deb