-
Notifications
You must be signed in to change notification settings - Fork 89
Closed
Labels
Description
Vagrant version 2.4.3. vagrant-parallels version 2.4.2. Mac M3 Pro.
==> default: Mounting shared folders...
default: /.../vm/hosted => /vagrant
Vagrant was unable to mount Parallels Desktop shared folders. This is usually
because the filesystem "prl_fs" is not available. This filesystem is
made available via the Parallels Tools and kernel module.
Please verify that these guest tools are properly installed in the
guest. This is not a bug in Vagrant and is usually caused by a faulty
Vagrant box. For context, the command attempted was:
mount -t prl_fs -o uid=1000,gid=1000,_netdev vagrant /vagrant
The error output from the command was:
mount: /vagrant: unknown filesystem type 'prl_fs'.
I don't specify the file system type in the Vagrantfile:
# -*- mode: ruby -*-
# vi: set ft=ruby :
BOX = "hosted"
NAME = "hosted"
MEMORY = 12288
CPUS = 2
Vagrant.require_version ">= 2.4.1"
Vagrant.configure(2) do |config|
# To register a box file with vagrant, run:
# vagrant add box dev dev-parallels-desktop-arm64.box
config.vm.box = BOX
config.vm.hostname = NAME
config.ssh.forward_agent = true
config.vm.synced_folder "~/git", "/host/home/git"
config.vm.provider :parallels do |vm, override|
vm.name = NAME
vm.linked_clone = false
vm.memory = MEMORY
vm.cpus = CPUS
vm.customize ["set", :id, "--on-window-close", "keep-running"]
vm.customize ["set", :id, "--startup-view", "headless"]
# vm.update_guest_tools = true
end
config.vm.provider :virtualbox do |vm, override|
vm.name = NAME
vm.linked_clone = false
vm.memory = MEMORY
vm.cpus = CPUS
vm.customize ["modifyvm", :id, "--vram", 256]
vm.gui = false
end
end
Reactions are currently unavailable