The line in Ubuntu 20.04 install tutorial
sudo dpkg -i ~/simple-nfs-gui_1.0.16-0ubuntu1_all.deb && sudo apt-get install -fy
seems wrong. If dependences are not satisfied, dpkg doesn't return 0 after install so apt-get doesn't run.
It should be ; instead of &&.
The line in Ubuntu 20.04 install tutorial
sudo dpkg -i ~/simple-nfs-gui_1.0.16-0ubuntu1_all.deb && sudo apt-get install -fy
seems wrong. If dependences are not satisfied,dpkg
doesn't return 0 after install soapt-get
doesn't run. It should be;
instead of&&
.