首页 > 系统相关 >VirtIO drivers for Linux, Windows and etc.

VirtIO drivers for Linux, Windows and etc.

时间:2024-06-16 09:43:03浏览次数:13  
标签:VirtIO network Windows drivers here etc Linux

Why do you need VirIO driver?

It's useful when you use Linux/Windows VMs in PVE.

Usually when you attach a network to the VM, you would click the "Hardware" -> "Network Device" -> "Bridge" -> "vmbr0" or "vmbr1" -> Choose Model: VirtIO (paravirtualized)

vmbr0 or vmbr1 is the network bridge you created in the PVE and it will bridge the VM with the router which your PVE connected with.

 

After you boot the VM, try to download the latest VirtIO drivers for Linux or Windows. More info can be found here: https://pve.proxmox.com/wiki/Windows_VirtIO_Drivers

 

What can VirtIO drivers give you? 

For faster ethernet. Mode VirtIO (paravirtualized) can bring up 10Gbps network speed.

The default Mode Intel e1000 can work fine on Linux and Windows at 1Gbps which is slow.

 

Tips

1) For selecting the default network adapter on Windows, please read here: https://services.northwestern.edu/TDClient/30/Portal/KB/ArticleDet?ID=1563

Also here's a video: 

How to Change Network Priority of Connection on Windows 10

 https://www.youtube.com/watch?v=ig6gtgIW6As

E.g. Windows can choose adapter #2 as default while adapter #1 will be used only if #2 is down.

 

标签:VirtIO,network,Windows,drivers,here,etc,Linux
From: https://www.cnblogs.com/spaceship9/p/18250209

相关文章

  • Windows中搭建centos虚拟机和MySQL
    背景前一段时间,博主为了在家里搭建学习环境,想模拟一个生产环境,尝试了Windows安装WSL、Vmwareworkstationplayer安装Ubuntu、把Window删了直接装Ubuntu、把Ubuntu删了装回Windows(Windows一直无法安装到SSD,最后拆了电脑拔了机械硬盘才装成功)的多个阶段,发现还是Windows用的习惯......
  • 代码随想录 算法训练营 day10 leetcode232 用栈实现队列 Leetcode225 用队列实现栈 Le
    Leetcode232用栈实现队列题目链接讲解用两个栈实现队列每次需要出队列或者查看队头元素时,将输入栈的所有元素放到输出栈classMyQueue{Stack<Integer>stackIn;Stack<Integer>stackOut;publicMyQueue(){stackIn=newStack<>();//负责进......
  • WPF Stretch None,Fill,Uniform,UnformToFill
    None, Thecontentpreservesitsoriginalsize.<ImageSource="/WpfApp169;component/cl.jpg"Stretch="None"/> Fill,Thecontentisresizedtofillthedestinationdimensions.Theaspectratioisnotpreserved.<ImageSource=......
  • CLFS驱动程序(clfs.sys)是Windows操作系统中的一个组件,它提供了日志记录和恢复功能,以增
    clfs.sys是Windows操作系统中的一个系统文件,它是CLFS(CommonLogFileSystem)驱动程序的一部分。CLFS是Windows操作系统中用于管理日志文件的文件系统,它提供了日志记录和恢复功能。CLFS驱动程序(clfs.sys)具有以下功能和作用:日志记录:CLFS可以记录系统的操作、事件和错误等信息到......
  • 零基础-零成本搭建个人博客-Hexo-基于windows10
    下载nodejs #1、访问官网:https://nodejs.org/en-下载LTS版本下载后安装下一步、选择安装路径即可、注意要选择addtopath(这是npm下载包的路径)安装hexo安装成功后在cmd中输入npm验证一下:按Win+R键、弹出后输入cmd创建workspace:需要安装hexo下载的nmp包F:\worksp......
  • 算法训练(leetcode)第九天 | 232. 用栈实现队列、225. 用队列实现栈、20. 有效的括号、1
    刷题记录232.用栈实现队列225.用队列实现栈20.有效的括号1047.删除字符串中的所有相邻重复项232.用栈实现队列leetcode题目地址考察栈与队列之间的特性。栈:后进先出(先进后出)——FILO。队列:先进先出——FIFO。所以使用两个栈模拟队列,分别为in和out。当入队新......
  • 微软Windows 10系统安全标识符(SID)与Sysprep使用指南
    一、了解SID在Windows操作系统中,安全标识符(SID)是用于唯一标识安全主体(如用户账户、计算机账户等)的字符串。对于域环境中的计算机和用户,SID的生成具有特定的规则。在域中,对象的SID由域范围的SID和具有唯一性的相对标识符(RID)组成,其中RID由域中的RIDMaster分配。工作组计算机和用户......
  • 在windows笔记本电脑部署GLM4大模型
    (笔记本电脑:intel处理器i9-13900HX、64G内存、NVIDIARTX4080(12G)、操作系统windows11家庭版)一、下载anaconda31.清华镜像源下载anaconda3。下载地址:Indexof/anaconda/archive/|清华大学开源软件镜像站|TsinghuaOpenSourceMirror在网页上找到Anaconda3-2024.02-1-......
  • 4-字符串-11-反转字符串-LeetCode344
    4-字符串-11-反转字符串-LeetCode344LeetCode:题目序号344更多内容欢迎关注我(持续更新中,欢迎Star✨)Github:CodeZeng1998/Java-Developer-Work-Note技术公众号:CodeZeng1998(纯纯技术文)生活公众号:好锅(Lifeismorethancode)CSDN:CodeZeng1998其他平台:CodeZeng1998、......
  • OpenGL3.3_C++_Windows(10)
    最终演示​demo演示Assimp模型渲染模型导入库Assimp:导入很多种不同的模型文件格式,加载至Assimp的通用数据结构(树形)中,不论导入的是什么种类的文件格式,用同一种方式访问我们需要的数据。Assimp库配置:premake5.lua:cmake构建出sln,对于assimpproject构建动态库......