Being more specific about the WSL workaround to upgrade the shell

pull/11/head
Eneru 2024-05-04 12:19:46 +02:00 committed by GitHub
parent ed918fa9cd
commit 305f78bf53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 1 deletions

View File

@ -559,8 +559,14 @@ stty rows <num> columns <cols>
To overcome this issue, run `nc` in a `tmux`, and send a `SIGTSTP` signal to the `nc` process. To overcome this issue, run `nc` in a `tmux`, and send a `SIGTSTP` signal to the `nc` process.
```bash ```bash
# Enter in tmux
tmux
# Do your netcat stuff ...
nc -lnvp 4242
# Create a new window in tmux # Create a new window in tmux
## <ctrl+b> then <c> ctrl+b c
# Find the PID of the nc process (column PID) # Find the PID of the nc process (column PID)
ps aux # | grep -i nc | grep -vi grep ps aux # | grep -i nc | grep -vi grep