Short:"Access Linux-native file system infrastructure (including LVM and LUKS) on macOS and Linux. Powered by a lightweight Alpine Linux VM and FTP.",
Long:`Linsk is a utility that allows you to access Linux-native file system infrastructure, including device mapping technologies like LVM and LUKS without compromise on other operating systems that have little `+
`to no support for Linux's wide range of file systems, mainly aiming macOS and Windows. Linsk does not reimplement any file system. Instead, Linsk `+
`utilizes a lightweight Alpine Linux VM to tap into the native Linux software ecosystem. The files are then exposed to the host via fast and widely-supported FTP, `+
rootCmd.PersistentFlags().BoolVar(&vmDebugFlag,"vm-debug",false,"Enables the VM debug mode. This will open an accessible VM monitor. You can log in with root user and no password.")
rootCmd.PersistentFlags().BoolVar(&unrestrictedNetworkingFlag,"vm-unrestricted-networking",false,"Enables unrestricted networking. This will allow the VM to connect to the internet.")
rootCmd.PersistentFlags().Uint32Var(&vmMemAllocFlag,"vm-mem-alloc",512,"Specifies the VM memory allocation in KiB")
rootCmd.PersistentFlags().Uint32Var(&vmOSUpTimeoutFlag,"vm-os-up-timeout",30,"Specifies the VM OS-up timeout in seconds.")
rootCmd.PersistentFlags().Uint32Var(&vmSSHSetupTimeoutFlag,"vm-ssh-setup-timeout",60,"Specifies the VM SSH server setup timeout in seconds. This cannot be lower than the OS-up timeout.")
rootCmd.PersistentFlags().StringVarP(&dataDirFlag,"data-dir","d",defaultDataDir,"Specifies the data directory (folder) to use. VM images and related work files will be stored here.")