windows 添加开机启动的位置
Created|Updated
|Post Views:
widows 添加开机启动的方法
- 可以通过把可执行文件的快捷方式拖拽到 shell:startup 路径中实现开机启动ps: 注册表编辑器的名字 ,与标题无关
1
2windows + R的运行窗口输入 shell:startup
# C:\Users\username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
gpedit.msc
Author: wang shaodong
Copyright Notice: All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
Related Articles
2020-02-14
Linux commands
linux 命令列表 systemctl (Control the systemd system and service manager) systemd 系统用来替代之前的linux 中的system V 目的在于统一系统服务, 并行启动系统服务程序,加快系统启动,大部分现代linux使用此程序引导系统. 常用命令如下 12345# systemctl enable service_name# systemctl start service_name# systemctl status service_name# systemctl restart service_name# systemctl disable service_name pushd popd pushd dir_name 切换目录的同时把当前目录圧入栈,方便后续使用popd 弹出栈切换目录 popd 弹出上一次的目录栈,相当于cd - popd 可以多次使用,直到目录栈为空,cd - 多次使用只会在两个目录之间来回切换 grep 1$ grep...
2020-02-19
about-ssh
ssh Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network ssh 也是Linux 命令之一,用于(取代telnet等不安全的协议软件)安全连接访问远程服务器. ssh 基本用法 以root用户通过端口22333登录192.168.23.4主机 1$ ssh root@192.168.23.4:2233 ssh的特殊姿势 只有你拥有台海外vps并且安装了ssh服务,可以通过ssh动态端口转发实现fq ssh [-D [bind_address:]port root@remotehost:2233 一般bind_address 是localhost netstat -nat 查看端口使用情况ssh 相关命令ssh-agent ssh-keygen
2020-02-18
Linux中的奇葩opensuse
安装完成之后的软件源切换 禁用所有软件源1$ sudo zypper mr -da 添加阿里镜像源1234$ sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/distribution/leap/15.1/repo/oss openSUSE-Aliyun-OSS ;$ sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/distribution/leap/15.1/repo/non-oss openSUSE-Aliyun-NON-OSS ;$ sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/update/leap/15.1/oss openSUSE-Aliyun-UPDATE-OSS ;$ sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/update/leap/15.1/non-oss openSUSE-Aliyun-UPDATE-NON-O...
2020-02-14
About Bash
Bash的环境变量 PROMPT_DIRTRIM修改PS1中dir的个数 trim 留下几层目录 bashrc 检查错误1$ bash -n ~/.bashrc
2020-03-29
About IPC
IPC (Inter-Porcess Communication) 进程间通信 多个进程需要协作的时候通信必不可少 IPC 的五种基本方法 Pipes / FIFOs 管道 Message Queues 消息队列 Shared Memory 共享内存 POSIX Semaphores POSIX 信号量 Sockets 套接字 Pipes 的特性 兼容性问题:最早的时候都是半双工,有的系统却提供了全双工的管道 适用范围的问题:只能在具有相同的祖先进程的进程间使用,多数情况是在父子进程之间使用 Pipes 的使用 使用pipe需要了解两个函数 123456789// 需要包含头文件 <unistd.h>int pipe(int fd[2]); // 创建两个文件描述符,fd[0] 用于读取,fd[1]用于写入// 需要包含头文件 <unistd.h> 和 <sys/types.h>pid_t fork(void); // 通过复制父进程创建子进程// 标准头文件 <stdio.h>// The popen() fu...
2022-03-23
sudo echo 3 > /proc/sys/vm/drop_caches 权限不足
1234# 以下命令可以解决 sudo 权限不够的问题sudo bash -c "echo 3 > /proc/sys/vm/drop_caches"# 以下命令也可以sudo sysctl -w vm.drop_caches=3
Announcement
This is my Blog