Hello, On Sun, Jun 26, 2022 at 08:44:12AM -0700, Alexander Shenkin wrote: > > On 6/26/2022 8:34 AM, Alexander Shenkin wrote: > > So, any idea how to disable hostonly? I'm not finding it via google... > > I should mention that /etc/dracut.conf doesn't exist on my system, and the > dracut pacakge (if it is a package) doesn't show up in apt list, so I'm > assuming it's not installed. Does that mean I don't have hostonly > installed? This is a Fedora (and maybe other Red Hat-like) thing. On Debian how generic your initramfs is, is set in /etc/initramfs-tools/initramfs.conf: # MODULES: [ most | netboot | dep | list ] # # most - Add most filesystem and all harddrive drivers. # # dep - Try and guess which modules to load. # # netboot - Add the base modules, network modules, but skip block devices. # # list - Only include modules from the 'additional modules' list # MODULES=most I think "dep" might be equivalent to this "hostonly" thing, the point being to include only modules needed for the current hardware configuration. Which might hamper an effort to move that install into different hardware. It's not the default. update-initramfs after changing. Cheers, Andy