Ubuntu ‘-bash: nano: command not found’
Try running sudo apt-get install nano It appears nano isn’t installed on your machine
Try running sudo apt-get install nano It appears nano isn’t installed on your machine
Try following command sequence on Ubuntu terminal:
Try following command sequence on Ubuntu terminal:
Instead, use: sudo service redis-server start I had the same problem, stopping/starting other services from within Ubuntu on WSL. This worked, where systemctl did not. And one could reasonably wonder, “how would you know that the service name was ‘redis-server’?” You can see them using service –status-all
I’ve faced the exactly same problem but I’ve fixed it with another approache. Using Ubuntu 18.04, first disable systemd-resolved service. sudo systemctl disable systemd-resolved.service Stop the service sudo systemctl stop systemd-resolved.service Then, remove the link to /run/systemd/resolve/stub-resolv.conf in /etc/resolv.conf sudo rm /etc/resolv.conf Add a manually created resolv.conf in /etc/ sudo vim /etc/resolv.conf Add your prefered DNS server there nameserver 208.67.222.222 I’ve tested this … Read more