Install GNURadio into a VM for use.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
540 B

  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "hashicorp/bionic64"
  3. config.ssh.forward_x11 = true
  4. config.vm.provider 'virtualbox' do |v|
  5. #v.customize ["modifyvm", :id, '--audio', 'coreaudio', '--audiocontroller', 'hda']
  6. v.customize ['modifyvm', :id, '--usb', 'on']
  7. v.customize ['modifyvm', :id, '--usbehci', 'on']
  8. v.customize ["usbfilter", "add", "0",
  9. "--target", :id,
  10. "--name", "RTLSDR1",
  11. "--manufacturer", "Realtek",
  12. "--product", "RTL2838UHIDIR"]
  13. end
  14. config.vm.provision :shell, path: "bootstrap.sh"
  15. end