码迷,mamicode.com
首页 >  
搜索关键字:desktop    ( 3986个结果
树莓派tips & tricks
使用树莓派的一些简单方便操作,不定期更新 我使用的是树莓派4B,系统是Raspbian Desktop: 下面的方式,亲测有效。 1. 查看温度 cat /sys/class/thermal/thermal_zone0/temp #除以1000就是摄氏度 另一种方式是使用树莓派提供的vcgencmd ...
分类:其他好文   时间:2020-05-01 23:47:05    阅读次数:66
Windows 上配置Docker Desktop 的k8s
前言:打算在windows上配置docker & k8s 的环境来实现abp vnext 的k8s部署,遂进行一系列的安装和配置 在docker desktop 上启动k8s但是一直在starting状态,查看日志文件C:\ProgramData\DockerDesktop\service.txt ...
分类:Windows程序   时间:2020-04-30 19:11:50    阅读次数:163
递归遍历文件中所有html文件保存
``` import java.io.*; public class Test { public static void main(String[] args) throws IOException { File file = new File("/Users/mima000000/Desktop/... ...
分类:Web程序   时间:2020-04-30 15:40:34    阅读次数:75
Linux计划任务
一次性计划任务 负责at的服务atd 一次性计划任务只能执行一次,一般用于满足临时的工作需求。 可以使用at命令实现该功能,使用at命令需要启用负责该任务的服务—atd。 [root@localhost Desktop]# systemctl restart atd [root@localhost ...
分类:系统相关   时间:2020-04-30 14:01:18    阅读次数:83
数据库概论——SQL练习二(employees数据库)
系统 MySQL 8.0.19MySQL Workbench 8.0 准备工作 1.下载employees数据库:https://github.com/datacharmer/test_db 2.将整个文件夹放到工作的目录下 例如:mac - 放在桌面上,则文件夹的路径为Desktop/test_d ...
分类:数据库   时间:2020-04-30 13:29:26    阅读次数:1077
esxi 6.0 u3 安装 Windows 10 1909 无法使用远程桌面访问
因为一些兼容性的原因esxi的版本一直停留在6.0前段时间安装了Window101909的虚拟机,发现无法通过远程桌面登录(RDP)。使用远程桌面登录时控制台的会话被锁定,远程桌面黑屏没有反应,一会后“显示由于协议错误,会话连接将断开。请重新连接到远程计算机”各种排查无果后。在某论坛看到有人说了一句。“禁用3D支持”抱着试试看的心情检查了一下配置。果然是手欠打开了3D支持,关闭后远程桌面使用正常。
分类:Windows程序   时间:2020-04-29 23:24:26    阅读次数:226
python从入门到放弃之图像处理
1.高斯滤波 from PIL import Image, ImageFilter # 打开图像 im1 = Image.open('D:/Desktop/img/timg (2).jpg') # 创建一个im1两倍宽的图像 img = Image.new('RGB', (im1.width*2, ...
分类:编程语言   时间:2020-04-27 22:13:10    阅读次数:74
ping 检测,for循环
#!/bin/bashforIPin`cat/root/Desktop/ip.txt`doping-c3-i0.2-w3$IP&>/dev/nullif[$?-eq0]thenecho"Thishost$IPisexisted"elseecho"Thishost$IPisn‘texisted"fidone
分类:其他好文   时间:2020-04-27 15:34:11    阅读次数:187
for循环
#!/bin/bashread-p"Enterpassword:"PASSWDforUNAMEin`cat/root/Desktop/users.txt`doid$UNAME&>/dev/nullif[$?-eq0]thenecho"Alreadyexisted"elseuseradd$UNAME&>/dev/nullecho"$PASSWD"|passwd--stdi
分类:其他好文   时间:2020-04-27 15:09:27    阅读次数:58
ubuntu中如何创建pycharm快捷方式图标
1.在/usr/share/applications,首先在该目录下创建一个Pycharm.desktop sudo gedit /usr/share/applications/Pycharm.desktop 2 然后输入以下内容: [Desktop Entry]Type=ApplicationNa ...
分类:系统相关   时间:2020-04-27 10:05:05    阅读次数:72
3986条   上一页 1 ... 27 28 29 30 31 ... 399 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!