使用samba实现linux和windows文件共享

Samba使用时注意 使用Samba时,注意三点: 1. 防火墙必须关闭,不然无法连接 12systemctl disable firewalld.service reboot 2. selinux必须关闭,不然只能看到文件夹无法查看文件夹内的文件 1setenforce 0 3. 上面工作都做了之后还是不能访问,重启下Samba 1service smb restart =========================================================== 使用samba实现linux和windows文件共享 1https://www.cnblogs.com/hiyong/p/15171749.html 1. samba安装 12yum install -y samba yum install -y samba-client 2. smbclient是一个smb服务器的客户端管理程序。 查看安装状态 123whereis samba rpm -qa | grep samba smbd –version 3. samba配置 3-1. 查看windows工作组 通过cmd命令 net config workstation 查看工作组: 或者查看系统属性:此电脑 -> 属性 -> […]

CentOS ,KVM 安装 Win10

CentOS ,KVM 安装 Win10 12https://www.jianshu.com/p/defd29c8825e https://zls.bndstone.com/496.html 1. 新建硬盘 12qemu-img create -f qcow2 /home/images/kvm31.img 120G               // /home/images/ 位置建个20G的硬盘,格式是qcow2 qemu-img info /home/images/kvm31.img                              //查看刚建的硬盘 2. 要安装win10需要下载virtio驱动 vista之后的64bit版本windows的驱动需要数字签名 可以下载fedora提供的数字签名版iso文件 1https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.126-2/virtio-win-0.1.126.iso 3. 开始安装 123456789101112virt-install \     –name=kvm31 \ […]

CentOS 系统上,让Nginx 配置 Let’s Encrypt 的SSL证书

CentOS 系统上,让Nginx 配置 Let’s Encrypt 的SSL证书 snap 安装的是 certbot 2.11.0 1https://www.linode.com/docs/guides/enabling-https-using-certbot-with-nginx-on-centos-7/ 1-1. 安装 EPEL 12yum install -y epel-release yum upgrade -y 1-2. 安装 snapd 1yum install -y snapd 1-3. 开机自启动 snapd.socket 12systemctl enable –now snapd.socket systemctl start snapd.socket 1-4. 建立软链接 1ln -s /var/lib/snapd/snap /snap 2-1. 安装 Certbot 1snap install –classic certbot 会出现如下报错 1error: too early […]

J4125软路由硬盘接口是mSATA接口

J4125软路由硬盘接口是mSATA接口 由以下两个网站可以看到 123J4125各种接口 2.5G组网日记 网红J4125 4口2.5g软路由使用分享 https://www.bilibili.com/video/BV1tq4y147Vc/ 123三星刚健兴业专卖店 三星870QVO1TB固态硬盘硬500G笔记本EVO250G台式机官方2.5英寸SSD https://detail.tmall.com/item.htm?ali_refid=a3_420434_1006:1124044489:N:43O/fhy6XbsM/vDs4a6dug==:42bf4f5e0bc343a153cd9d4148a25c17&ali_trackid=1_42bf4f5e0bc343a153cd9d4148a25c17&id=585633791425&spm=a21n57.1.p4pright.dimg3

成功解决centos7虚拟机开机后提示ABRT has detected 1 problem(s)

成功解决centos7虚拟机开机后提示ABRT has detected 1 problem(s) 1https://developer.aliyun.com/article/1148900 通过以下命令查看如下报错 1abrt-cli list 返回如下信息: 1234567891011121314151617181920id 3b1a4415cfb430627904373b32fd7e1787a8144b reason:         gnome-shell killed by SIGSEGV time:           Thu 04 Jul 2024 09:39:30 PM EDT cmdline:        gnome-shell –mode=initial-setup package:        gnome-shell-3.28.3-34.el7_9 uid:            991 (gnome-initial-setup) count:   […]

J4125 I225-V 网口无法在centos7.9上被识别原因

J4125 I225-V 网口无法在centos7.9上被识别原因 1https://cloud.tencent.com/developer/ask/sof/116354863 备注: I225系列在CentOS 7.9中不受支持,并要求它们的igc驱动程序可供CentOS下载以重新编译 以下页面可以查到 CentOS 8.1,CentOS 8.2,CentOS 8.3 支持I225-v驱动 CentOS 7.9 以及之前的 不支持I225-v驱动 1https://www.intel.com/content/www/us/en/support/articles/000055236/ethernet-products/gigabit-ethernet-controllers-up-to-2-5gbe.html 我刚刚在桌面电脑上安装了Centos7,因为我需要这个特定的操作系统来兼容我正在使用的计算机辅助设计软件。安装工作进行得很顺利,但我的网络不工作 1ifconfig -a 输出如下信息: 1234567891011121314151617181920212223242526272829303132enp0s21f0u2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500         inet 192.168.50.81  netmask 255.255.255.0  broadcast 192.168.50.255         inet6 fe80::91b3:7674:3347:c08c  prefixlen 64  scopeid 0x20<link>         ether 00:0e:c6:35:7e:cf  txqueuelen 1000  (Ethernet) […]

『精品』解决 CentOS 7.9 报错 “Cannot find a valid baseurl for repo: base/7/x86_64”

解决 CentOS 7.9 报错 “Cannot find a valid baseurl for repo: base/7/x86_64” 1https://blog.csdn.net/weixin_54626591/article/details/138492868 机子可以 ping www.baidu.com 但出现如上错误.是因为yum源的问题.换阿里云的yun源. 换yum源需要用到wget,但大部份centos默认没有wget,又得安装wget,但同样会提示 1Cannot find a valid baseurl for repo: base/7/x86_64 情况1,默认有wget的服务器,直接参考换源链接即可 1mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 1wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 情况2,默认没有wget的服务器 修改 CentOS-Base.repo 配置 1vi /etc/yum.repos.d/CentOS-Base.repo 换成如下阿里云源 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950[base] name=CentOS-$releasever – Base – mirrors.aliyun.com failovermethod=priority baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/         http://mirrors.aliyuncs.com/centos/$releasever/os/$basearch/   […]

J4125当服务器用[J4125 安装 Esxi,Esxi上再安装 CentOS,然后在CentOS上安装kvm.再用kvm安装虚拟机]

J4125当服务器用[J4125 安装 Esxi,Esxi上再安装 CentOS,然后在CentOS上安装kvm.再用kvm安装虚拟机] 1. 如果Esxi上Centos是Minimal,通过如下步骤 1-1. 安装 vnc, 1-2. 安装 桌面环境 gnome 12香港服务器安装CentOS ,远程上网查国外资料 https://zls.bndstone.com/1658.html 12CentOS7.4安装部署KVM虚拟机 https://zls.bndstone.com/427.html 2. 如果Esxi上Centos是标准版.则只需安装 vnc就可以,因为桌面环境 gnome配置好了.KVM虚拟机也已经配置好了 12J4125 小主机 EXSI 安装 CentOS 7 虚拟机 https://zls.bndstone.com/3753.html 3. vnc viewer连接闪退解决办法 1https://zls.bndstone.com/3845.html 4. ESXI处开启虚拟化 1https://zls.bndstone.com/4605.html

ESXI安装Centos,然后CentOS里安装kvm,需要在ESXI处开启虚拟化,否则会报错.

ESXI安装Centos,然后CentOS里安装kvm,需要在ESXI处开启虚拟化,否则会报错. 12How to enable (deploy) nested virtualization in VMware ESXi https://www.youtube.com/watch?v=k5VZAeHSY5A 12kvm 二层虚拟化 失败 (虚拟机192.168.122.22 里面再次安装kvm失败) https://zls.bndstone.com/925.html kvm 通过 “virt-install –name kvm11 ….” 命令安装虚拟机时,会出现如下报错. 123WARNING  KVM acceleration not available, using ‘qemu’ WARNING  Graphics requested but DISPLAY is not set. Not running virt-viewer. WARNING  No console to launch for the guest, defaulting to –wait -1 WARNING […]