python 列出文件夹下所有的文件以及文件夹名

import os
path = 'D:\******……' #定义路径

folders = os.listdir(path)
for folder in folders:
    print(folder)
点击查看更多…

用AD组策略部署Bginfo,桌面显示用户信息

工具:Bginfo,Windows AD 组策略

  1. 先配置好Bginfo

image1

对于IP 需要自定义,否则会出现不在使用的网卡的地址为空,显示为<none>。

为了过滤不适用的 …

点击查看更多…

Windows10系统下的WSL+Ubuntu图形桌面配置

  1. Windows下安装VcXsrv

image1

2. WSL Ubuntu下安装xfce desktop
sudo apt-get install xfce4-terminal
sudo apt-get install xfce4
  1. ~./bashrc末尾添加Display信息
export DISPLAY=:0.0
export LIBGL_ALWAYS_INDIRECT=1
执行下面命令,使修改生效配置
source ~/.bashrc
4. Windows上打开XLaunch
选择“Multiple Window”,Display number填写0。其他 …
点击查看更多…

powershell:远程连接服务器

(1)在server端输入“Enable-PSRometing”,启用远程连接;
(2)在client端输入set-item wsman:\localhost\client\trustehosts –value “192.168.11.53”,将server设置为client的信任主机。
(3)输入“enter-pssession –computername 192.168.11.53 –credentrial contoso.test\administrator”,输入密码后即可远程登入server;
点击查看更多…

Centos 8 时间

CentOS8.0中默认不再支持ntp软件包,时间同步将由chrony来实现,像我这种习惯了ntp同步时间的,一时难以去适应chrony。

本文将通过wlnmp提供的源,来安装ntp服务

添加wlnmp源

安 …

点击查看更多…