Skip to content

Commit

Permalink
content-update
Browse files Browse the repository at this point in the history
  • Loading branch information
BitwiseOperator committed Oct 14, 2024
1 parent 224b9c8 commit a474585
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 23 deletions.
7 changes: 3 additions & 4 deletions docs/Knowledge_Base/OS/Linux/Debian/Commands/DNS_Lookup.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

When installing dnsutils, you will be able to use the following commands

- 'dig'
- 'nslookup'
- 'nsupdate'
- `dig`
- `nslookup`
- `nsupdate`

### Command syntax

Expand All @@ -30,7 +30,6 @@

#reverse lookup
dig -x 1.1.1.1 +short

```

#### nslookup
Expand Down
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
### Kali Linux WSL - [_Reference_](https://www.kali.org/docs/wsl/wsl-preparations/#dism)
!!! info ""

#### Enabling "WSL Windows Subsystem Linux"

Run `cmd` as Admin

Run cmd as Admin
```bash
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all
```

```shell
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all
``
**Reboot**

Reboot
```bash
wsl --set-default-version 2

```shell
wsl --set-default-version 2
```
wsl --install --distribution kali-linux
#Setup the username and password
```

```shell
wsl --install --distribution kali-linux
#Setup the username and password
```
#### Location to move files locally

### Location to move files locally
Change USER_PROFILE

Change USER_PROFILE
```bash
cd /mnt/c/users/USER_PROFILE/downloads
```

```shell
cd /mnt/c/users/USER_PROFILE/downloads
```
!!! info ""

#### Reference(s)
- Kali Linux WSL - [Kali wsl-preparations](https://www.kali.org/docs/wsl/wsl-preparations/#dism)

0 comments on commit a474585

Please sign in to comment.