1. 查看所有本地分支
1 | git branch |
2. 删除本地分支
1 | git branch -D branch_name |
其中,branch_name为要删除的分支名称。
3. 查看所有远程分支
1 | git branch -r |
4. 删除远程分支
1 | git push origin --delete branch_name |
A wanderer capable of grasping the beauty of the grass, with a heart full of ancient charm, and a fondness for playful wit. Those who understand my words are knowledgeable individuals; those who decipher my code truly comprehend the essence. I am a wandering code swordsman, carrying my skills and riding freely through the digital world.
QEMU是一个通用的开源机器仿真器和虚拟机。当用作机器仿真器时,QEMU可以在不同的机器(例如您自己的PC)上运行针对一台机器(例如ARM板)的操作系统和程序。通过使用动态翻译,它获得了非常好的性能。比如模拟嵌入式开发环境!
ubuntu 22.04 桌面版本已经默认安装了,所以无需额外安装。
win10镜像下载地址:
https://next.itellyou.cn/Original/#cbp=Product?ID=f905b2d9-11e7-4ee3-8b52-407a8befe8d1
建立一个虚拟机文件夹,如win10,接着如下操作步骤:
win10.iso
qemu-img
创建运行虚拟机镜像,大小40G&格式为qcow2。命令如下:qemu-img create -f qcow2 win10.img 40G
1 | qemu-system-x86_64 -hda ./win10.img -cdrom win10.iso -boot d -enable-kvm -machine q35 -device intel-iommu -smp 2,sockets=1,cores=2 -m 2G -vga std -net nic,model=e1000 -net user -usbdevice tablet |
因为笔记的指纹驱动是goodix供应商提供,但是官方没有提供相应的linux下驱动,导致指纹在自己的ubuntu下使用。最近看到libfprint支持了goodix有关设备,其中包含了我的型号(型号查看lsusb
),但是安装之后有线网卡没了,且编译安装过程中关于libusb
无法解决,最终导致安装失败。
所以本次记录修复有线网卡解决办法,有线网卡故障表示线缆已拔出
,实际是网卡驱动丢失并不是线路故障!
1 | lspci -k |grep Ethernet |
显示如下:
1 | 01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05) |