Accept a name for dl and include starter script file
[khome.git] / notes-debian.md
index 5cbf062..f60ea30 100644 (file)
@@ -1,12 +1,31 @@
+Package versions
+----------------
+
+### see available
+
+    apt policy dotnet-sdk-3.1 # (since Buster)
+    apt-cache policy dotnet-sdk-3.1
+
+### install specific
+
+    apt install dotnet-sdk-3.1=3.1.100-1
+
+
 Multiarch
 ---------
 
 https://wiki.debian.org/Multiarch/HOWTO
 
+### add
        dpkg --add-architecture i386
        apt update
        apt install $PKG_NAME:i386
 
+### remove
+        apt remove $(dpkg --get-selections | awk '/i386/ {print $1}' | xargs)
+        dpkg --remove-architecture i386
+        apt update
+
 Backports
 ---------
 
This page took 0.019222 seconds and 4 git commands to generate.