云笔记leanote搭建
leanote是一个云笔记项目,需要数据库和进程守护。 依赖 - MongoDB数据库 - supervisor进程守护 - wkhtmltopdf MongoDB安装curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.6.tgz 下载tar -zxvf mongodb-linux-x86_64-3.0.6.tgz # 解压mv mongodb-linux-x86_64-3.0.6/ /usr/local/mongodb MongoDB 的可执行文件位于 bin 目录下检...
vi编辑器用法
vi编辑器是Linux和Unix系统中广泛使用的文本编辑器,它具有三种模式:命令模式、插入模式和末行模式。 在命令模式下,用户可以执行各种编辑命令,如移动光标、删除文本等;在插入模式下,用户可以输入文本;末行模式则用于保存文件、退出编辑器等操作。 命令模式光标移动:使用h、j、k、l键可以分别向左、下、上、右移动光标;使用Ctrl+f和Ctrl+b可以向前和向后翻页;使用0可以移动到行首,使用$可以移动到行尾。删除命令:使用x键删除当前光标处的字符,使用dd删除当前行。复制和粘贴:使用yy复制当前行,使用p粘贴文本。查找命令:使用/word查找文本中的“word”字符串...
安装wordpress
wordpress需要web服务和数据库。 安装 Nginxsudo apt install nginxsudo systemctl enable nginxsudo systemctl start nginxsudo systemctl status nginx 让(Nginx 用户)成为 Web 目录的所有者。默认情况下,其权限归 root 用户所有。sudo chown www-data:www-data /usr/share/nginx/html -R 安装 MariaDB 数据库服务器sudo apt install mariadb-s...
cpolar内网穿透
cpolar是一种收费的内网穿透方法,免费也能勉强一用。 安装下载:curl -L https://www.cpolar.com/static/downloads/install-release-cpolar.sh | sudo bash token认证:登录cpolar官网后台,点击左侧的验证,查看自己的认证token,之后将token贴在命令行里cpolar authtoken xxxxxxx 向系统添加服务:sudo systemctl enable cpolarsudo systemctl start cpolar 查看服务状态:sudo systemctl status cp...
电视直播软件和iptv源
软件:Hypnopixyuki-iptvfreetuxtv myiptv源~~https://mirror.ghproxy.com/raw.githubusercontent.com/suxuang/myIPTV/main/ipv6.m3u~~
linuxmint挂载分区不需密码
linuxmint挂载分区时,默认会出现提权对话框,用下面的操作可以取消认证,直接进入。 修改设置打开终端,输入:sudo xed /usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy 找到:<action id="org.freedesktop.udisks.filesystem-mount-system"> auth_admin_keep 替换成: yes 以后想挂载windows下的分区就不会要求输入密码了。
安装ftp服务
安装vsftpd:sudo apt install vsftpd检测是否安装:vsftpd -version 匿名用户模式在vsftpd.conf文件中添加匿名用户相关配置: 1234567891011121314151617181920212223242526#监听ipv4,启用独立模式listen=YES#启用匿名用户模式 anonymous_enable=YES#允许写操作write_enable=YES#允许匿名用户上传文件anon_upload_enable=YES#允许匿名用户创建目录anon_mkdir_write_enable=YES#允许匿名用户修改或删除目录ano...
nginx重定向
修改/etc/nginx/sites-available/default 修改文件12345server { listen 80; server_name example1.com; return 301 https://example2.com$request_uri; } 列出目录下的文件12345server_name _;autoindex on;autoindex_exact_size off;autoindex_format html;autoindex_loc...
grub4dos启动方式的menu.lst
grub4dos启动linux系统、win和PE的menu.lst内容。 menu.lst1234567891011121314151617181920212223timeout 10title ubuntufind --set-root --ignore-floppies --ignore-cd /boot/grub/i386-pc/core.imgkernel /boot/grub/i386-pc/core.imgtitle deepinkernel (hd0,6)/boot/grub/i386-pc/core.img#title winxp#chainloader (hd0,0)...
linux常用命令
linux常用命令存档。 常用命令 fastfetch 或 neofetch 系统信息 df -h 磁盘占用空间 du -sh 目录占用空间 ifconfig 设置网络 pwd 显示当前目录路径 ls -al 显示目录文件 cp -r 复制目录 head 查看文件头十行内容tail zip -r 1.zip a 压缩a目录unzip -d 1.zip a 解压到a目录 tar -zcvf 1.tar.gz a 打包并压缩tar -zxvf 1.tar.gz 解包 文件管理pwd-查看当前工作目录cd-更改当前工作目录touch-创建文件...