From 1d96d74ce30037987225ececbdb7f48215df0d62 Mon Sep 17 00:00:00 2001 From: gotbletu Date: Sat, 20 Dec 2014 01:56:00 -0800 Subject: [PATCH] offline install pkg --- offline_install.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 offline_install.md diff --git a/offline_install.md b/offline_install.md new file mode 100644 index 0000000..a4aab01 --- /dev/null +++ b/offline_install.md @@ -0,0 +1,16 @@ +Notes for video: http://www.youtube.com/watch?v=MhdE_3Ws5Jo + +# Offline update install packages: +1) Refresh your repository list +> sudo apt-get update + +2) 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 + + +3) downloads all the debs +> wget -i mylist.txt + +4) installs all the deb files at once +> sudo dpkg -i *.deb +