This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| On Proxmox's VM setting: | |
| Add a serial port : serial0 | |
| In Options-> QEMU Guest Agent -> Enable "Use QEMU Guest Agent" and under Advanced, select Type : ISA | |
| Inside the VM: | |
| Insall qemu-guest-agent : pkgin install qemu-guest-agent | |
| Install the service : cp /usr/pkg/share/examples/rc.d/qemu-guest-agent /etc/rc.d/qemu-guest-agent | |
| Enable the service in rc.conf : add the line "qemu_guest_agent=YES" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo msfdb start # if the database is not already running | |
| sudo -u postgres psql | |
| REINDEX DATABASE msf; | |
| ALTER DATABASE msf REFRESH COLLATION VERSION; | |
| REINDEX DATABASE postgres; |