<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>debian &#8211; 科技改变生活-雨落星辰</title>
	<atom:link href="https://p1e.cn/html/tag/debian/feed" rel="self" type="application/rss+xml" />
	<link>https://p1e.cn</link>
	<description>所有的伟大,都源于一个勇敢的开始</description>
	<lastBuildDate>Sat, 04 Feb 2023 10:05:58 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>解决apt系统NO_PUBKEY错误的简单通用方法</title>
		<link>https://p1e.cn/html/3258.html</link>
					<comments>https://p1e.cn/html/3258.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Sat, 07 Jan 2023 01:30:06 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[debian]]></category>
		<guid isPermaLink="false">https://www.815494.com/?p=3258</guid>

					<description><![CDATA[&#160; apt-get install debian-keyring debian-archive-keyring apt-key update apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7EA0A9C3F273FCD8 7EA0A9C3F273FCD8改成图一红框最后的那个KEY]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-3259" src="https://i.p1e.cn/2023/01/blog202301070927251673054820751.png" alt="" width="1584" height="498" /></p>
<p>&nbsp;</p>
<pre>apt-get install debian-keyring debian-archive-keyring
apt-key update
</pre>
<pre>apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7EA0A9C3F273FCD8
</pre>
<p>7EA0A9C3F273FCD8改成图一红框最后的那个KEY</p>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/3258.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>在Debian 10 Linux上添加Swap交换空间和调整Swappiness值</title>
		<link>https://p1e.cn/html/3095.html</link>
					<comments>https://p1e.cn/html/3095.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Wed, 12 Jan 2022 00:19:30 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[swap]]></category>
		<guid isPermaLink="false">https://www.815494.com/?p=3095</guid>

					<description><![CDATA[Swap是磁盘上的空间，当物理内存量已满时使用，当Linux系统用完RAM时，非活动页面会从RAM移动到Swap空间，Swap空间可以采用专用Swap分区或Swap文件的形式，通常在运行Debian虚拟机时，不存在Swap分区，因此唯一的选择是创建Swap文件. 在开始之前 虽然可能，但在一台机器上有多个Swap空间并不常见，要检查Debian安装是否已启用Swap，请运行以下命令： sudo swapon &#8211;show 如果输出为空，则表示系统没有Swap交换空间。 否则，如果你得到类似下面的信息，你已]]></description>
										<content:encoded><![CDATA[<p>Swap是磁盘上的空间，当物理内存量已满时使用，当Linux系统用完RAM时，非活动页面会从RAM移动到Swap空间，Swap空间可以采用专用Swap分区或Swap文件的形式，通常在运行Debian虚拟机时，不存在Swap分区，因此唯一的选择是创建Swap文件.</p>
<p><img decoding="async" class="alignnone size-full wp-image-3097" src="//i.p1e.cn/2022/01/0ZCl05.jpg" alt="How to Add Swap Space on Debian 10 Linux" width="700" height="350" /></p>
<p><strong>在开始之前</strong></p>
<p>虽然可能，但在一台机器上有多个Swap空间并不常见，要检查Debian安装是否已启用Swap，请运行以下命令：</p>
<p>sudo swapon &#8211;show</p>
<p>如果输出为空，则表示系统没有Swap交换空间。</p>
<p>否则，如果你得到类似下面的信息，你已经在你的Debian系统上启用了Swap：</p>
<p><img decoding="async" src="https://ywnz.com/uploads/allimg/19/1-1ZH0113126132.JPG" alt="在Debian 10 Linux上添加Swap交换空间和调整Swappiness值" /></p>
<p>要激活Swap，运行命令的用户必须具有sudo权限。</p>
<p>&nbsp;</p>
<p><strong>创建Swap交换文件</strong></p>
<p>在这个例子中，我们将创建并激活1G的Swap，要创建更大的Swap，请将1G替换为所需Swap空间的大小。</p>
<p>以下步骤操作如何在Debian 10上添加Swap交换空间。</p>
<p>1、首先创建一个用于Swap的文件：</p>
<p>sudo fallocate -l 1G /swapfile</p>
<p>如果未安装fallocate或者你收到错误消息，指出fallocate失败：操作不受支持（fallocate failed: Operation not supported），你可以使用以下命令创建交换文件：</p>
<p>sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576</p>
<p>2、只有root用户才能读取和写入交换文件，输入以下命令以设置正确的权限：</p>
<p>sudo chmod 600 /swapfile</p>
<p>3、使用mkswap工具在文件上设置Linux Swap区域：</p>
<p>sudo mkswap /swapfile</p>
<p>4、激活Swap文件：</p>
<p>sudo swapon /swapfile</p>
<p>要使更改永久，打开/etc/fstab文件：</p>
<p>sudo nano /etc/fstab</p>
<p>并粘贴以下行：</p>
<p>/swapfile swap swap defaults 0 0</p>
<p>5、使用swapon或free命令验证Swap是否处于活动状态，如下所示：</p>
<p>sudo swapon &#8211;show</p>
<p><img decoding="async" src="https://ywnz.com/uploads/allimg/19/1-1ZH011313NH.JPG" alt="在Debian 10 Linux上添加Swap交换空间和调整Swappiness值" /></p>
<p>sudo free -h</p>
<p><img decoding="async" src="https://ywnz.com/uploads/allimg/19/1-1ZH0113234M5.JPG" alt="在Debian 10 Linux上添加Swap交换空间和调整Swappiness值" /></p>
<p><strong>调整Swappiness值</strong></p>
<p>Swappiness是一个Linux内核属性，用于定义系统使用交换空间的频率，Swappiness可以具有0到100之间的值，较低的值将使内核尽可能避免Swap，而较高的值将使内核更积极地使用Swap交换空间。</p>
<p>默认的swappiness值为60，可以使用cat命令检查当前的swappiness值：</p>
<p>cat /proc/sys/vm/swappiness</p>
<p>返回数值：</p>
<p>60</p>
<p>虽然桌面可以使用60的swappiness值，但对于服务器，你应该设置较低的值。</p>
<p>例如，要将swappiness值设置为10，请输入：</p>
<p>sudo sysctl vm.swappiness=10</p>
<p>要使此参数在重新引导后保持不变，请将以下行附加到/etc/sysctl.conf文件：</p>
<p>vm.swappiness=10</p>
<p>最佳swappiness值取决于你的系统工作负载以及内存的使用方式，你应该以小增量调整此参数以查找最佳值。</p>
<p>&nbsp;</p>
<p><strong>删除Swap交换文件</strong></p>
<p>要停用并删除交换文件，请执行以下步骤：</p>
<p>1、通过运行以下命令来停用交换空间：</p>
<p>sudo swapoff -v /swapfile</p>
<p>2、使用文本编辑器打开/etc/fstab文件，并删除交换文件条目/swapfile swap swap defaults 0 0。</p>
<p>3、最后，删除实际的swapfile文件：</p>
<p>sudo rm /swapfile</p>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/3095.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>简单几步把debian 9升级到debian 10</title>
		<link>https://p1e.cn/html/2896.html</link>
					<comments>https://p1e.cn/html/2896.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Sat, 10 Apr 2021 07:47:03 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[debian9]]></category>
		<guid isPermaLink="false">https://www.815494.com/?p=2896</guid>

					<description><![CDATA[最近在用vps的时候发现其后台只有debian 9，而debian 10发布之后很多新东西都很方便，对于debian\centos这样的Linux发型版本，如果我们不是有特殊的需求的情况下还是尽量追新吧。站长最近也打算抛弃ubuntu回归debian了。 不废话了： 更新： apt-get update &#38;&#38; apt-get upgrade 备份一份： cp /etc/apt/sources.list /etc/apt/sources.list.orig 将/etc/apt/sources.list]]></description>
										<content:encoded><![CDATA[<p>最近在用vps的时候发现其后台只有debian 9，而debian 10发布之后很多新东西都很方便，对于debian\centos这样的Linux发型版本，如果我们不是有特殊的需求的情况下还是尽量追新吧。站长最近也打算抛弃ubuntu回归debian了。</p>
<p>不废话了：</p>
<h4><strong>更新</strong>：</h4>
<pre>apt-get update &amp;&amp; apt-get upgrade</pre>
<h4><strong>备份一份</strong>：</h4>
<pre>cp /etc/apt/sources.list /etc/apt/sources.list.orig</pre>
<h4><strong>将/etc/apt/sources.list里所有“stretch”替换为“buster”</strong>：</h4>
<pre>sed -i 's/stretch/buster/g' /etc/apt/sources.list</pre>
<h4><strong>再更新一下</strong></h4>
<pre>apt-get update &amp;&amp; apt-get upgrade</pre>
<h4><strong>执行升级命令</strong></h4>
<pre>apt-get dist-upgrade</pre>
<h4><strong>提示完成后重启</strong></h4>
<pre>reboot</pre>
<h4><strong>查看下当前debian版本</strong></h4>
<pre>lsb_release -a</pre>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/2896.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ubuntu的ufw如何开放特定端口?</title>
		<link>https://p1e.cn/html/2785.html</link>
					<comments>https://p1e.cn/html/2785.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Sat, 13 Mar 2021 11:46:55 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ufw]]></category>
		<guid isPermaLink="false">https://www.815494.com/?p=2785</guid>

					<description><![CDATA[ubuntu的ufw如何开放特定端口? 1.安装 sudo apt-get install ufw 2.开启 sudo ufw enable 默认关闭外部访问 sudo ufw default deny 3.查看状态 sudo ufw status 4.新增端口 sudo ufw allow 8080 5.删除端口 sudo ufw delete allow 8080 6.允许特定来源的ip地址访问 sudo ufw allow from 192.168.1.1]]></description>
										<content:encoded><![CDATA[<p>ubuntu的ufw如何开放特定端口?<br />
1.安装</p>
<pre>sudo apt-get install ufw</pre>
<p>2.开启</p>
<pre>sudo ufw enable</pre>
<p>默认关闭外部访问</p>
<pre>sudo ufw default deny</pre>
<p>3.查看状态</p>
<pre>sudo ufw status</pre>
<p>4.新增端口</p>
<pre>sudo ufw allow 8080</pre>
<p>5.删除端口</p>
<pre>sudo ufw delete allow 8080</pre>
<p>6.允许特定来源的ip地址访问</p>
<pre>sudo ufw allow from 192.168.1.1</pre>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/2785.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Debian/Ubuntu/CentOS 网络重装一键脚本</title>
		<link>https://p1e.cn/html/2513.html</link>
					<comments>https://p1e.cn/html/2513.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Mon, 08 Feb 2021 05:57:21 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false">https://www.815494.com/?p=2513</guid>

					<description><![CDATA[本一键脚本在萌咖大佬的脚本基础上开发，实现了懒人式一键网络重装 Debian / Ubuntu / CentOS 系统及dd方式安装系统。解决了云服务商提供模板镜像体积过大、预装软件过多、不够纯净等问题。 默认登录密码： CentOS：Pwd@CentOS 其他 Linux 系统：Pwd@Linux 使用方法 wget --no-check-certificate -O AutoReinstall.sh https://p1e.cn/html/shell/reinstall/AutoReinstall.sh &#038;am]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="size-full wp-image-2514 aligncenter" src="https://i.p1e.cn/2021/02/1612763639-2336802514.jpg" alt="" width="800" height="600" /><br />
本一键脚本在萌咖大佬的脚本基础上开发，实现了懒人式一键网络重装 Debian / Ubuntu / CentOS 系统及dd方式安装系统。解决了云服务商提供模板镜像体积过大、预装软件过多、不够纯净等问题。</p>
<p><strong>默认登录密码：</strong></p>
<ul class=" list-paddingleft-2">
<li>CentOS：<code>Pwd@CentOS</code></li>
<li>其他 Linux 系统：<code>Pwd@Linux</code></li>
</ul>
<p>使用方法</p>
<pre>wget --no-check-certificate -O AutoReinstall.sh https://p1e.cn/html/shell/reinstall/AutoReinstall.sh &amp;&amp; bash AutoReinstall.sh</pre>
<h1>支持重装的系统</h1>
<ul>
<li>Ubuntu 18.04/16.04</li>
<li>Debian 9/10</li>
<li>CentOS 6</li>
<li>CentOS 7 （DD方式）</li>
<li>自定义DD镜像</li>
</ul>
<h1>特性 / 优化</h1>
<ul>
<li>自动获取IP地址、网关、子网掩码</li>
<li>自动判断网络环境，选择国内/外镜像，解决速度慢的问题</li>
<li>懒人一键化，无需复杂的命令</li>
<li>解决萌咖脚本中一些导致安装错误的问题</li>
<li>CentOS 7 镜像抛弃LVM，回归ext4，减少不稳定因素</li>
</ul>
<h1>注意</h1>
<ul>
<li>重装后系统密码均在脚本中有提供，<strong>安装后请尽快修改密码</strong>，Linux系统建议启用密钥登陆。</li>
<li>OpenVZ / LXC 架构系统不适用</li>
</ul>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/2513.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>把国内主机debian源更换成腾讯镜像</title>
		<link>https://p1e.cn/html/2345.html</link>
					<comments>https://p1e.cn/html/2345.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Fri, 29 Jan 2021 04:24:46 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[debian]]></category>
		<guid isPermaLink="false">https://www.815494.com/?p=2345</guid>

					<description><![CDATA[配置修改 Debian源的使用需要以root权限修改/etc/apt/sources.list配置文件，修改之前，请做好备份 debian7.x（wheezy） deb http://mirrors.cloud.tencent.com/debian wheezy main contrib non-free deb http://mirrors.cloud.tencent.com/debian wheezy-updates main contrib non-free #deb http://mirrors.cloud]]></description>
										<content:encoded><![CDATA[<h5>配置修改</h5>
<p>Debian源的使用需要以root权限修改/etc/apt/sources.list配置文件，修改之前，请做好备份</p>
<h6>debian7.x（wheezy）</h6>
<pre>deb http://mirrors.cloud.tencent.com/debian wheezy main contrib non-free
deb http://mirrors.cloud.tencent.com/debian wheezy-updates main contrib non-free
#deb http://mirrors.cloud.tencent.com/debian wheezy-proposed-updates main contrib non-free
#deb http://mirrors.cloud.tencent.com/debian wheezy-backports main contrib non-free
#deb http://mirrors.cloud.tencent.com/debian wheezy-backports-sloppy main contrib non-free
deb-src http://mirrors.cloud.tencent.com/debian wheezy main contrib non-free
deb-src http://mirrors.cloud.tencent.com/debian wheezy-updates main contrib non-free
#deb-src http://mirrors.cloud.tencent.com/debian wheezy-proposed-updates main contrib non-free
#deb-src http://mirrors.cloud.tencent.com/debian wheezy-backports main contrib non-free
#deb-src http://mirrors.cloud.tencent.com/debian wheezy-backports-sloppy main contrib non-free</pre>
<h6>debian 8.x （jessie）</h6>
<pre>deb http://mirrors.cloud.tencent.com/debian jessie main contrib non-free
deb http://mirrors.cloud.tencent.com/debian jessie-updates main contrib non-free
#deb http://mirrors.cloud.tencent.com/debian jessie-backports main contrib non-free
#deb http://mirrors.cloud.tencent.com/debian jessie-proposed-updates main contrib non-free
deb-src http://mirrors.cloud.tencent.com/debian jessie main contrib non-free
deb-src http://mirrors.cloud.tencent.com/debian jessie-updates main contrib non-free
#deb-src http://mirrors.cloud.tencent.com/debian jessie-backports main contrib non-free
#deb-src http://mirrors.cloud.tencent.com/debian jessie-proposed-updates main contrib non-free</pre>
<p class="about-us-p">
<h6>debian9.x（stretch）</h6>
<pre>deb http://mirrors.cloud.tencent.com/debian stretch main contrib non-free
deb http://mirrors.cloud.tencent.com/debian stretch-updates main contrib non-free
#deb http://mirrors.cloud.tencent.com/debian stretch-backports main contrib non-free
#deb http://mirrors.cloud.tencent.com/debian stretch-proposed-updates main contrib non-free
deb-src http://mirrors.cloud.tencent.com/debian stretch main contrib non-free
deb-src http://mirrors.cloud.tencent.com/debian stretch-updates main contrib non-free
#deb-src http://mirrors.cloud.tencent.com/debian stretch-backports main contrib non-free
#deb-src http://mirrors.cloud.tencent.com/debian stretch-proposed-updates main contrib non-free</pre>
<p>&nbsp;</p>
<h6>debian10.x（buster）</h6>
<pre>deb https://mirrors.cloud.tencent.com/debian/ buster main contrib non-free
deb https://mirrors.cloud.tencent.com/debian/ buster-updates main contrib non-free
deb https://mirrors.cloud.tencent.com/debian/ buster-backports main contrib non-free
deb https://mirrors.cloud.tencent.com/debian-security buster/updates main contrib non-free
deb-src https://mirrors.cloud.tencent.com/debian/ buster main contrib non-free
deb-src https://mirrors.cloud.tencent.com/debian/ buster-updates main contrib non-free
deb-src https://mirrors.cloud.tencent.com/debian/ buster-backports main contrib non-free
deb-src https://mirrors.cloud.tencent.com/debian-security buster/updates main contrib non-free</pre>
<h5>更新缓存</h5>
<pre>apt-get clean all
apt-get update</pre>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/2345.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>一键网络重装系统 – 魔改版（适用于Linux / Windows / ISO安装 / PXE安装）</title>
		<link>https://p1e.cn/html/734.html</link>
					<comments>https://p1e.cn/html/734.html#comments</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Sun, 08 Dec 2019 05:47:45 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">http://www.815494.com/?p=734</guid>

					<description><![CDATA[所有系统除特殊说明外，安装完毕的默认密码是815494.com，你必须在安装完毕立刻修改默认密码！ 特别注意：DD包名称带有efi的,仅支持在Uefi启动的机器上使用，例如：甲骨文 近3次更新日志: 16.2023.1.30 新增一键DD CloudCone Win10 16.2023.1.21 修复部分BUG，增加对腾讯云主机的优化 15.2022.8.10 新增自定义SSH端口，增加大量系统镜像，修复Centos7下出现 Error! Not Found grub的错误提示，新增支持xz压缩格式的dd系统镜像包]]></description>
										<content:encoded><![CDATA[<p>所有系统除特殊说明外，安装完毕的默认密码是<strong style="color: #e60000;">815494.com</strong>，你必须在安装完毕立刻修改默认密码！</p>
<pre><strong>特别注意：DD包名称带有efi的,仅支持在Uefi启动的机器上使用，例如：甲骨文</strong></pre>
<hr />
<p><strong>近3次更新日志</strong>:</p>
<ul>
<li>16.2023.1.30 新增一键DD CloudCone Win10</li>
<li>16.2023.1.21 修复部分BUG，增加对腾讯云主机的优化</li>
<li>15.2022.8.10 新增自定义SSH端口，增加大量系统镜像，修复Centos7下出现 Error! Not Found grub的错误提示，新增支持xz压缩格式的dd系统镜像包。</li>
<li>14.2022.1.10 脚本大更新</li>
<li>13.2021.9.02 新增对 Oracle 全面支持. 可支持从 Ubuntu, Oracle Linux 等系统重装<span style="color: #ff0000;">debian9-11</span>.</li>
</ul>
<p><strong>安装重装系统的前提组件</strong><br />
①. RedHat/CentOS:</p>
<pre>yum install -y xz openssl gawk file wget</pre>
<p>②. Debian/Ubuntu:</p>
<pre>apt-get install -y xz-utils openssl gawk file wget</pre>
<hr />
<h3>新版脚本体验</h3>
<pre>wget --no-check-certificate https://p1e.cn/html/shell/dd/NewReinstall.sh &amp;&amp; chmod a+x NewReinstall.sh &amp;&amp; bash NewReinstall.sh</pre>
<h3>老版脚本体验（带进度条）</h3>
<pre>wget --no-check-certificate https://p1e.cn/html/shell/dd/AutoReinstall.sh &amp;&amp; chmod a+x AutoReinstall.sh &amp;&amp; bash AutoReinstall.sh</pre>
<p>恭喜，你已经完成了系统重装，享受当下的美好</p>
<p>当您执行完上面的2行命令，你的服务器将开始网络重装纯净系统。在完成安装前，您将无法进行连接管理。</p>
<p>因硬件配置和网络环境不同，安装需要15-60分钟，请耐心等待。安装完成即可通过IP:22(Linux SSH)/IP:3389(Windows RDP)进行连接。<img loading="lazy" decoding="async" class="alignnone size-full wp-image-3150" src="https://i.p1e.cn/2019/12/blog202201200752301642665150-QQ图片20220120152847.png" alt="" width="647" height="669" /><br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-3208" src="https://i.p1e.cn/2019/12/blog202208120216291660270589-1660270568529.png" alt="" width="512" height="778" /></p>
<p>1、CentOS 7.7 (已关闭防火墙及SELinux，默认密码Pwd@CentOS)<br />
2、CentOS 7 (默认密码cxthhhhh.com)<br />
3、CentOS 7 (支持ARM64、UEFI，默认密码cxthhhhh.com)<br />
4、CentOS 8 (默认密码cxthhhhh.com)<br />
5、Rocky 8 (默认密码cxthhhhh.com)<br />
6、Rocky 8 (支持UEFI，默认密码cxthhhhh.com)<br />
7、Rocky 8 (支持ARM64、UEFI，默认密码cxthhhhh.com)<br />
8、CentOS 9 (默认密码cxthhhhh.com)<br />
9、CentOS 6 (官方源原版，默认密码815494.com)<br />
10、Debian 11 (官方源原版，默认密码815494.com)<br />
11、Debian 10 (官方源原版，默认密码815494.com)<br />
12、Debian 9 (官方源原版，默认密码815494.com)<br />
13、Debian 8 (官方源原版，默认密码815494.com)<br />
14、Ubuntu 20.04 (官方源原版，默认密码815494.com)<br />
15、Ubuntu 18.04 (官方源原版，默认密码815494.com)<br />
16、Ubuntu 16.04 (官方源原版，默认密码815494.com)<br />
17、Windows Server 2022 (默认密码cxthhhhh.com)<br />
18、Windows Server 2022 (支持UEFI，默认密码cxthhhhh.com)<br />
19、Windows Server 2019 (默认密码cxthhhhh.com)<br />
20、Windows Server 2016 (默认密码cxthhhhh.com)<br />
21、Windows Server 2012 (默认密码cxthhhhh.com)<br />
22、Windows Server 2008 (默认密码cxthhhhh.com)<br />
23、Windows 10 LTSC (支持CloudCone默认密码ievo.top)<br />
24、Windows 10 LTSC (默认密码Teddysun.com)<br />
25、Windows 10 专业版 (原版未精简，默认密码Vicer)<br />
26、Windows 7 x86 Lite (默认密码nat.ee)<br />
27、Windows 7 x86 Lite (阿里云专用，默认密码nat.ee)<br />
28、Windows 7 x64 Lite (默认密码nat.ee)<br />
29、Windows 7 x64 Lite (支持UEFI，默认密码nat.ee)<br />
30、Windows 10 LTSC Lite (默认密码nat.ee)<br />
31、Windows 10 LTSC Lite (阿里云专用，默认密码nat.ee)<br />
32、Windows 10 LTSC Lite (支持UEFI，默认密码nat.ee)<br />
33、Windows Server 2003 Lite (C盘默认10G，默认密码WinSrv2003x86-Chinese)<br />
34、Windows Server 2008 Lite (默认密码nat.ee)<br />
35、Windows Server 2008 Lite (支持UEFI，默认密码nat.ee)<br />
36、Windows Server 2012 Lite (默认密码nat.ee)<br />
37、Windows Server 2012 Lite (支持UEFI，默认密码nat.ee)<br />
38、Windows Server 2016 Lite (默认密码nat.ee)<br />
39、Windows Server 2016 Lite (支持UEFI，默认密码nat.ee)<br />
40、Windows Server 2022 Lite (默认密码nat.ee)<br />
41、Windows Server 2022 Lite (支持UEFI，默认密码nat.ee)</p>
<p><strong>历史更新日志</strong>:</p>
<blockquote><p>12.2021.8.16 修复上次更新错误，支持debian11</p>
<p>11.2021.8.11 修改了源系统链接，更新了部分镜像包</p>
<p>10.2021.3.11 合并脚本，自动选择境内外源</p>
<p>9.2021.1.27 新增一个脚本适用于国内重装系统</p>
<p>8.2021.1.25 脚本升级到2.0</p>
<p>7.2021.1.24 win系统镜像升级中，请暂时不要使用win镜像</p>
<p>6.2021.1.23  修复部分BUG</p>
<p>5.2019.12.28 添加老司机2003精简版</p>
<p>4.2019.12.12 添加老司机WinSrv2012r2x64-数据中心版</p>
<p>3.2019.12.7 新增自动安装脚本</p>
<p>2.2019.12.5 添加老司机win10精简版</p>
<p>1.2019.9.25更新支持centos8</p></blockquote>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/734.html/feed</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>BBR魔改/BBRPLUS/Lotsever/锐速四合一脚本 Centos/Debian/Ubuntu</title>
		<link>https://p1e.cn/html/144.html</link>
					<comments>https://p1e.cn/html/144.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Tue, 03 Dec 2019 21:36:48 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[BBR]]></category>
		<category><![CDATA[BBRPLUS]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Lotsever]]></category>
		<guid isPermaLink="false">https://815494.com/?p=144</guid>

					<description><![CDATA[对于CentOS系统的BBR魔改之前搬运过nanqinlang大佬的脚本，无奈出现了BUG，导致CentOS安装还存在着问题，前几天友链博主千影，也写出了一个魔改BBR脚本，脚本包含BBR+BBR魔改版+Lotsever(锐速)，同时支持Centos、Debian、Ubuntu系统，很方便，也很强大。  安装 支持系统：Centos 6+/Debian 8+/Ubuntu 14+，BBR魔改版不支持Debian 8。 注意：该脚本在Vultr各个系统均测试通过，如果期间有出现任何问题，可向原作者反映帮助改善。 运行]]></description>
										<content:encoded><![CDATA[<p>对于CentOS系统的BBR魔改之前搬运过nanqinlang大佬的脚本，无奈出现了BUG，导致CentOS安装还存在着问题，前几天友链博主千影，也写出了一个魔改BBR脚本，脚本包含BBR+BBR魔改版+Lotsever(锐速)，同时支持Centos、Debian、Ubuntu系统，很方便，也很强大。</p>
<h2 data-unique="安装"> 安装</h2>
<p><strong>支持系统：</strong>Centos 6+/Debian 8+/Ubuntu 14+，BBR魔改版不支持Debian 8。</p>
<p><strong>注意：</strong>该脚本在Vultr各个系统均测试通过，如果期间有出现任何问题，可向原作者反映帮助改善。</p>
<p>运行以下命令：</p>
<pre>wget -N --no-check-certificate "http://www.815494.com/html/shell/BBR/4for1tcp.sh" &amp;&amp; chmod +x 4for1tcp.sh &amp;&amp; ./4for1tcp.sh</pre>
<p>提示证书错误的话</p>
<p>debian/ubuntu运行</p>
<pre>apt-get -y install ca-certificates</pre>
<p>centos运行</p>
<pre>yum -y install ca-certificates</pre>
<h2>说明</h2>
<p>使用脚本后会出现如下选项：</p>
<p><img loading="lazy" decoding="async" class="size-full wp-image-886 aligncenter" src="https://i.p1e.cn/2018/05/1554279316-F6XveP.png" alt="" width="432" height="456" /></p>
<div class="post-image"></div>
<h3>步骤一</h3>
<p>先在[1 – 3]切换内核（第一次显示为bbr内核也要切换一遍），重启</p>
<p>如果在删除内核环节出现这样一张图。</p>
<div class="post-image"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11714" src="https://i.p1e.cn/2018/05/2018012701475760.png" alt="BBR魔改/Lotsever一键脚本 Centos/Debian/Ubuntu-续笔记自媒体" width="1037" height="686" /></div>
<p>注意选择NO，然后根据提示重启系统。</p>
<h3>步骤二</h3>
<p>重启后不用再下载脚本，直接 ./4for1tcp.sh ，在[4 – 8]中选你要开的加速</p>
<p>“1. 安装 BBR/BBR魔改版内核”        对应4,5,6（原版，魔改，暴力魔改）<br />
“2. 安装 BBRplus版内核 ”                对应7（plus）<br />
“3. 安装 Lotserver(锐速)内核”        对应8（锐速）</p>
<h3>步骤三</h3>
<p>开启后再 ./4for1tcp.sh  ， 显示开启成功则启动成功，你也可以自己手动确认</p>
<p>现在你可以自由的切换你想要的加速，直到你不想折腾为止~</p>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/144.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>lkl-rinetd BBR一键脚本报错only support OpenVZ解决方案</title>
		<link>https://p1e.cn/html/945.html</link>
					<comments>https://p1e.cn/html/945.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Mon, 15 Apr 2019 07:10:59 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[BBR]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[openvz]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false">http://www.815494.com/?p=945</guid>

					<description><![CDATA[报错信息]]></description>
										<content:encoded><![CDATA[<h4>报错信息</h4>
<p>[error] only support OpenVZ<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-946" src="https://i.p1e.cn/2019/04/arrxOX.jpg" width="662" height="207" /></p>
<h4>故障原因</h4>
<p>某些主机商的OpenVZ主机使用的是LXC虚拟化。虽说主机商叫OpenVZ但是实际跟OpenVZ 已无关系。</p>
<h4>解决方案</h4>
<p>禁用脚本虚拟化检测</p>
<h4>超级懒人一键安装方案</h4>
<p>Debian or Ubuntu<br />
适用于 单网卡（单 IP） 服务器：</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-debianorubuntu-nocheckvirt.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-debianorubuntu-nocheckvirt.sh</pre>
<p>适用于 多网卡（多 IP） 服务器，会为所有网卡（所有 IP）提供加速：</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-debianorubuntu-nocheckvirt-multiNIC.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-debianorubuntu-nocheckvirt-multiNIC.sh</pre>
<p>CentOS 7<br />
和上面一样，也分 单网卡 和 多网卡 版本：</p>
<p># 单网卡</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-centos-nocheckvirt.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-centos-nocheckvirt.sh</pre>
<p># 多网卡</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-centos-nocheckvirt-multiNIC.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-centos-nocheckvirt-multiNIC.sh</pre>
<p>使用说明<br />
以下进行脚本使用说明：</p>
<p>安装 lkl-rinetd<br />
此命令用于安装 lkl-rinetd。</p>
<p>在 /home/tcp_nanqinlang 进行安装，所以安装完成后不要动这个文件夹了（除非你想修改端口）。</p>
<p>安装过程中，会提示输入端口号。多个端口号用空格隔开。不支持端口段。</p>
<p>安装完成后，会开启 lkl-rinetd。以后重启机器也会随开机自启。</p>
<p>使用前请注意自己的 iptables 相关设置。</p>
<p>检查 lkl-rinetd 运行状态<br />
此命令用于检查 lkl-rinetd 运行与否，可通过返回的提示判断。</p>
<p>卸载 lkl-rinetd<br />
运行此命令会删除 /home/tcp_nanqinlang 、移除 rc.local 对应开机自启项和清空 iptables raw 表。属于完整卸载，不会有残留。且卸载后无需重启。</p>
<pre></pre>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/945.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>OpenVZ 魔改 BBR &#8211; lkl-rinetd 一键脚本</title>
		<link>https://p1e.cn/html/666.html</link>
					<comments>https://p1e.cn/html/666.html#respond</comments>
		
		<dc:creator><![CDATA[Naoki]]></dc:creator>
		<pubDate>Mon, 05 Nov 2018 06:23:28 +0000</pubDate>
				<category><![CDATA[运维笔记]]></category>
		<category><![CDATA[BBR]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[openvz]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false">http://www.815494.com/?p=666</guid>

					<description><![CDATA[要求以下： OpenVZ 64 bit Ram &#62;&#62; 64M 更新： 2018-03-24 新增 多网卡 适配 Debian or Ubuntu 适用于 单网卡（单 IP） 服务器： wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-debianorubuntu.sh bash tcp_nanqinlang-rinetd-debianorubuntu.sh 适用于 多网卡（多 IP]]></description>
										<content:encoded><![CDATA[<p>要求以下：</p>
<p>OpenVZ<br />
64 bit<br />
Ram &gt;&gt; 64M<br />
更新： 2018-03-24 新增 多网卡 适配</p>
<p>Debian or Ubuntu<br />
适用于 单网卡（单 IP） 服务器：</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-debianorubuntu.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-debianorubuntu.sh</pre>
<p>适用于 多网卡（多 IP） 服务器，会为所有网卡（所有 IP）提供加速：</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-debianorubuntu-multiNIC.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-debianorubuntu-multiNIC.sh</pre>
<p>CentOS 7<br />
和上面一样，也分 单网卡 和 多网卡 版本：</p>
<p># 单网卡</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-centos.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-centos.sh</pre>
<p># 多网卡</p>
<pre>wget --no-check-certificate http://www.815494.com/html/shell/BBR/tcp_nanqinlang-rinetd-centos-multiNIC.sh</pre>
<pre>bash tcp_nanqinlang-rinetd-centos-multiNIC.sh</pre>
<p>使用说明<br />
以下进行脚本使用说明：</p>
<p>安装 lkl-rinetd<br />
此命令用于安装 lkl-rinetd。</p>
<p>在 /home/tcp_nanqinlang 进行安装，所以安装完成后不要动这个文件夹了（除非你想修改端口）。</p>
<p>安装过程中，会提示输入端口号。多个端口号用空格隔开。不支持端口段。</p>
<p>安装完成后，会开启 lkl-rinetd。以后重启机器也会随开机自启。</p>
<p>使用前请注意自己的 iptables 相关设置。</p>
<p>检查 lkl-rinetd 运行状态<br />
此命令用于检查 lkl-rinetd 运行与否，可通过返回的提示判断。</p>
<p>卸载 lkl-rinetd<br />
运行此命令会删除 /home/tcp_nanqinlang 、移除 rc.local 对应开机自启项和清空 iptables raw 表。属于完整卸载，不会有残留。且卸载后无需重启。</p>
<div></div>]]></content:encoded>
					
					<wfw:commentRss>https://p1e.cn/html/666.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
