Linux下删除乱码文件及文件夹 Linux

使用 ls -i 命令找到文件或目录的 inode节点号 删除文件(用 inode 替换下面的 12345678): find -inum 12345678 -delete 删除目录(会提示 No such file or directory): find -inum 12345678 -exec rm -rf {} \;
myluzh 发布于 

CentOS7 安装GNOME桌面 开启VNC连接 Linux

0x01安装GNOME桌面 1.更新系统 yum -y upgrade 2.安装必要的软件包 yum -y install grub2-efi fwupdate 3.安装GNOME桌面 yum -y groupinstall 'GNOME Desktop' 'Graphical Administration Tools' 4.如何卸载GNOME桌面? sud...
myluzh 发布于 

Linux 启动服务 systemctl命令 Linux

systemctl is-enabled servicename.service #查询服务是否开机启动 systemctl enable *.service #开机运行服务 systemctl disable *.service #取消开机运行 systemctl start *.service #启动服务 systemctl stop *.service...
myluzh 发布于 

python3 itchat微信自动回复机器人 Python

import itchat import requests import random import time def get_response(msg): url = 'http://i.itpk.cn/api.php'#自动回复API接口 data = { #接口参数 'api_key': 'xxxx', ...
myluzh 发布于 

frp源码编译 默认页面修改 NOTES

搭建GO环境 1、安装依赖 #Ubuntu sudo apt-get install bison ed gawk gcc libc6-dev make #CentOS sudo yum install gcc 2、下载go支持包 各版本的下载地址 https://www.golangtc.com/static/go/,我使用的是当前最新的1.9.2版本 wg...
myluzh 发布于 

Ubuntu 20.04 换国内源 Linux

文件位置:/etc/apt/sources.list #添加阿里源 deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted un...
myluzh 发布于 

Ubuntu 20.04 安装配置LNMP环境 Linux

0x01安装Nginx 安装Nginx Shell sudo apt-get install nginx 启动Nginx服务 Shell sudo /etc/init.d/nginx start 停止Nginx服务 Shell sudo /etc/init.d/nginx stop 加载最新配置 Shell sudo /etc/init.d/nginx re...
myluzh 发布于 

Firefox Hackbar 安装 SECURE

0x01 安装 使用没升级前的hackbar,升级完的是2.2.2版本,找到一个2.1.3版本,没有收费代码,可以直接加载使用。 hackbar2.1.3版本:https://github.com/Mr-xn/hackbar2.1.3 0x02关闭更新 firefox安装完hackbar插件后,进入插件管理,允许自动更新-关
myluzh 发布于