Download_deb Aug 14th, 2017 12:55 pm ref https://askubuntu.com/questions/47865/how-do-i-use-apt-get-to-only-download-packages 1 2 3 4 5 # dldeb.sh #! /bin/bash PACKAGE=$1 URI=`apt-cache show $PACKAGE | grep "Filename:" | cut -f 2 -d " "` wget http://tw.archive.ubuntu.com/ubuntu/$URI 1 2 3 4 #/etc/udev/rules.d/70-persistent-net.rules SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="79:2B:9E:70:67:4F", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0" SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="C0:E9:F8:12:F6:6A", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan1"