简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
博文背景通过计划任务调用Powershell脚本总是会蹦出黑窗口让人心烦,那么如何简单地解决这个问题呢?具体操作这里给个开机自动启动Vmware虚拟机的示例& "C:\Program Files (x86)\VMware\VMware Workstation\vmrun.exe" "start" `"D:\VMware\ArchLinux\ArchLinux.vmx";程序我们选择可以隐藏
if you choose dev/sda, it’ll use Grub (Ubuntu’s boot loader) to load all systems on this hard drive.If you choose dev/sda1 (the ext4 partition your created for Ubuntu), Ubuntu need to be manually adde
背景作者曾经也为安装显卡驱动而苦恼过,当然不是在Kali上面,都2020年了,抛弃老一套,让我来讲讲怎么安装Nvidia显卡驱动吧。操作很简单,首先,换源,更新源,然后sudo apt install nvidia-smi然后重启结束战斗。总结都2020年了,别再折腾之前那老一套了,安装显卡驱动就是如此简单,我相信不会失败,万一失败了就去tty3里面使用sudo apt purge nv...
powershell某些情况下以自己为准不认chcp这个老古董了。虽然chcp成了936但是它还是坚持了以前初始化时配置的UTF-8环境。
博文背景使用powershell实现du -sh的功能具体操作param([string]$Directory)get-childitem $Directory |% { $f = $_ ;get-childitem -r $_.FullName |measure-object -property length -sum |select @{Name="Name";Expression={$f}}
博文背景将Powershell脚本嵌入至bat文件中可以有很多意想不到的收获,比如可以通过这个方式绕过授权,或者简化脚本的运行,或者可以便于复杂参数的配置具体操作@ECHO off@setlocal EnableDelayedExpansion@goto label1@echo this lines should not be printed@echo and this whole block (
博文 背景Ubuntu下的本地DNS服务器看上去好像默认是127.0.0.53并且好像还有点难改,并且查资料好像还不是那么好查。具体操作ubuntu@shenzhen $ cat /etc/resolv.conf# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)#DO NOT EDIT THI
博文背景ubuntu@shanghai:~ $ sudo apt install ./jenkins_2.254_all.debReading package lists... DoneBuilding dependency treeReading state information... DoneNote, selecting 'jenkins' instead of './jenkins_2.
博文背景{{ message }}axios.get(‘xxx’).then(response=>(this.message=response.data))后面接箭头函数可以返回结果但是直接改成普通函数不可以返回结果解决办法<template><div id="app"><!--<img alt="Vue logo" src="./assets/logo.
尖括号里面的东西叫网络设备的状态标识(net_device_flags)尖括号里面有up并且后面的state也有up那么为什么会有两个up呢?LOWER_UP:网卡连接正常,就是网卡已经上电。MULTICAST:表示网卡可以发送多播包。会发现左边是up但是右边是down的状态。为了方便理解,我们断开虚拟机的网卡连接。BROADCAST:表示网卡有广播地址。这里提到网卡分为管理状态和运行状态。UP: