Changes between Initial Version and Version 1 of Ticket #20589
- Timestamp:
- Oct 5, 2021 8:34:25 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20589 – Description
initial v1 4 4 5 5 Workaround: switch to an alternative TFTP server on localhost: 6 7 8 6 {{{ 7 VBoxManage modifyvm SLESInst --nattftpserver1 10.0.2.2 8 }}} 9 9 Steps to reproduce: 10 10 11 11 - Generate Grub dir without grub.cfg or vmlinuz/initrd (they're not needed for testing) 12 13 12 {{{ 13 [root@reallin il]# grub-mknetdir --net-directory=/srv/tftp --subdir=/boot/grub -d /usr/lib/grub/i386-pc 14 14 Netboot directory for i386-pc created. Configure your DHCP server to point to /srv/tftp/boot/grub/i386-pc/core.0 15 15 }}} 16 16 - Copy the files to the default TFTPPrefix 17 18 19 17 {{{ 18 cp -rT /srv/tftp/boot ~/.VirtualBox/TFTP/boot 19 }}} 20 20 - point the VBox DHCP server to the right file 21 22 23 24 21 {{{ 22 # If I use leading slash here boot fails sooner 23 VBoxManage modifyvm MyVM --nattftpfile1=boot/grub/i386-pc/core.0 24 }}} 25 25 - Boot a guest from Network 26 26 … … 30 30 31 31 Additional info: 32 33 34 35 36 37 38 39 40 41 32 {{{ 33 [il@reallin ~]$ atftp 10.0.2.4 34 tftp> get boot/grub/i386-pc/core.0 35 Overwrite local file [y/n]? y 36 tftp> get /boot/grub/i386-pc/core.0 37 Overwrite local file [y/n]? y 38 tftp: error received from server <Access violation> 39 tftp: aborting 40 tftp> 41 }}}