Issue 1:
Was attempting to install using Vagrant on Windows with VirtualBox as the provider, kept receiving an error about SSH agent not working. I ended up having to run:
vagrant halt
vagrant destroy -f
vagrant up comnetsemu
When none of those options worked, I ended up having to open VirtualBox, and then running vagrant up commnetsemu, and the SSH error went away and I was able to vagrant ssh comnetsemu
Issue 2:
when running install.sh from ~/comnetsemu/util/
I kept getting an error:
./install.sh: line 9: $'\r'
Basically, the install.sh script does not have unix endings.
Had to run: sed $'s/\r$//' ./install.sh > ./install.Unix.sh
then I ran: bash ./install.Unix.sh -u
everything worked...I guess I'm asking to please be careful editing bash files in windows! :)
Issue 1: Was attempting to install using Vagrant on Windows with VirtualBox as the provider, kept receiving an error about SSH agent not working. I ended up having to run: vagrant halt vagrant destroy -f vagrant up comnetsemu
When none of those options worked, I ended up having to open VirtualBox, and then running vagrant up commnetsemu, and the SSH error went away and I was able to vagrant ssh comnetsemu
Issue 2: when running install.sh from ~/comnetsemu/util/ I kept getting an error: ./install.sh: line 9: $'\r'
Basically, the install.sh script does not have unix endings. Had to run: sed $'s/\r$//' ./install.sh > ./install.Unix.sh then I ran: bash ./install.Unix.sh -u everything worked...I guess I'm asking to please be careful editing bash files in windows! :)