This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a52dec: 20 全部文件,0 变化的文件 | |
| aalib: 88 全部文件,0 变化的文件 | |
| accounts-qml-module: 10 全部文件,0 变化的文件 | |
| accountsservice: 203 全部文件,0 变化的文件 | |
| acl: 88 全部文件,0 变化的文件 | |
| adwaita-icon-theme: 5668 全部文件,0 变化的文件 | |
| akonadi: 611 全部文件,0 变化的文件 | |
| akonadi-contacts: 375 全部文件,0 变化的文件 | |
| alsa-lib: 219 全部文件,0 变化的文件 | |
| alsa-plugins: 47 全部文件,0 变化的文件 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Traceback (most recent call last): | |
| File "/usr/bin/pip", line 11, in <module> | |
| load_entry_point('pip==10.0.1', 'console_scripts', 'pip')() | |
| File "/usr/lib/python3.6/site-packages/pkg_resources/__init__.py", line 476, in load_entry_point | |
| return get_distribution(dist).load_entry_point(group, name) | |
| File "/usr/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2700, in load_entry_point | |
| return ep.load() | |
| File "/usr/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2318, in load | |
| return self.resolve() | |
| File "/usr/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2324, in resolve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2018-04-06 02:44] [PACMAN] Running 'pacman -r /mnt -Sy --force --cachedir=/mnt/var/cache/pacman/pkg --noconfirm base base-devel' | |
| [2018-04-06 02:44] [PACMAN] synchronizing package lists | |
| [2018-04-06 03:01] [PACMAN] Running 'pacman -r /mnt -Sy --force --cachedir=/mnt/var/cache/pacman/pkg --noconfirm base base-devel' | |
| [2018-04-06 03:01] [PACMAN] synchronizing package lists | |
| [2018-04-06 03:02] [ALPM] transaction started | |
| [2018-04-06 03:02] [ALPM] installed linux-api-headers (4.14.8-1) | |
| [2018-04-06 03:02] [ALPM] installed tzdata (2018d-1) | |
| [2018-04-06 03:02] [ALPM] installed iana-etc (20180221-1) | |
| [2018-04-06 03:02] [ALPM] warning: /mnt/etc/fstab installed as /mnt/etc/fstab.pacnew | |
| [2018-04-06 03:02] [ALPM] installed filesystem (2018.1-2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| import requests, sys | |
| from bs4 import BeautifulSoup as soup | |
| from prettytable import PrettyTable | |
| url = "http://ipip.net/ip.html" | |
| headers = { | |
| 'origin': "http://ipip.net", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "outbound": { | |
| "streamSettings": { | |
| "network": "ws", | |
| "kcpSettings": null, | |
| "wsSettings": { | |
| "path": "/ruaas" | |
| }, | |
| "tcpSettings": null, | |
| "tlsSettings": {}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Caddy HTTP/2 web server | |
| Documentation=https://caddyserver.com/docs | |
| After=network-online.target | |
| Wants=network-online.target systemd-networkd-wait-online.service | |
| [Service] | |
| Restart=on-abnormal | |
| ; User and group the process will run as. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## '#'开头为注释内容, 选项都有相应的注释说明, 根据需要修改 ## | |
| ## 被注释的选项填写的是默认值, 建议在需要修改时再取消注释 ## | |
| ## 文件保存相关 ## | |
| # 文件的保存路径(可使用绝对路径或相对路径), 默认: 当前启动位置 | |
| dir=/home/kiri/下载 | |
| # 启用磁盘缓存, 0为禁用缓存, 需1.16以上版本, 默认:16M | |
| #disk-cache=32M | |
| # 文件预分配方式, 能有效降低磁盘碎片, 默认:prealloc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Simple V2Ray script for personal use. | |
| Please use git.io/kiri as far as possible. | |
| Author : KiriKira | |
| Version : 2.1 | |
| """ | |
| import uuid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://example.domain * { | |
| gzip | |
| tls kiri_so@outlook.com | |
| proxy / https://www.baidu.com | |
| log / stdout "{request}" | |
| proxy /test localhost:1234 { | |
| websocket | |
| header_upstream -Origin | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin | |
| export PATH | |
| #================================================= | |
| # System Required: CentOS/Debian/Ubuntu | |
| # Description: Caddy Install | |
| # Author: KiriKira (Simplified from Toyo's) | |
| #================================================= |
NewerOlder