Explorar el Código

Add process to create bootable stick

DricomDragon hace 5 años
padre
commit
0f5117ff74
Se han modificado 2 ficheros con 33 adiciones y 9 borrados
  1. 33 0
      Guides/os.md
  2. 0 9
      Guides/ubuntu.md

+ 33 - 0
Guides/os.md

@@ -0,0 +1,33 @@
+# OS
+
+Tips related to exploitation systems
+
+## Install iso
+
+### Ubuntu or debian
+
+Use `startup disk creator` under ubuntu.
+
+### Command line
+
+Check what is you USB drive with `lsblk`
+
+Unmount with `sudo umount /dev/sdb1`
+
+Install iso with
+
+```sh
+sudo dd bs=4M if=dsl-4.4.10.iso of=/dev/sdb status=progress oflag=sync
+```
+
+## Ubuntu
+
+Tips to set Ubuntu desktop.
+
+### Change default terminal to Xfce terminal
+
+Install xfce terminal with **Ubuntu software**.
+
+Use the command : `sudo update-alternatives --config x-terminal-emulator`
+
+

+ 0 - 9
Guides/ubuntu.md

@@ -1,9 +0,0 @@
-# Ubuntu
-
-Tips to set Ubuntu desktop.
-
-## Change default terminal to Xfce terminal
-
-Install xfce terminal with **Ubuntu software**.
-
-Use the command : `sudo update-alternatives --config x-terminal-emulator`