blog update

This commit is contained in:
James Feng Cao 2019-04-10 17:32:52 +08:00
parent 70898d0042
commit b16fdb36f5
20 changed files with 1594 additions and 680 deletions

View file

@ -11,7 +11,7 @@
<title>
浏览器一键控制台式机/服务器下载资源
浏览器一键控制台式机/服务器下载资源
</title>
@ -96,20 +96,29 @@
<div class="post-container">
<div class="post-title">
浏览器一键控制台式机/服务器下载资源
浏览器一键控制台式机/服务器下载资源
</div>
<div class="post-meta">
<span class="attr">Post<span>2019-03-28 16:26:10</span></span>
<span class="attr">Post<span>2019-04-10 17:20:39</span></span>
<span class="attr">Tags/
<a class="tag" href="/uWeb/tags/#termux" title="termux">termux</a>
<span>/</span>
<a class="tag" href="/uWeb/tags/#ssh" title="ssh">ssh</a>
<span>/</span>
</span>
</div>
<div class="post-content ">
<p>技巧等级:高级</p>
<p>小孩要听英文有声书“The lying games”国内服务器没一个能下的最后还是在手机上用seedr秒下。但seedr的登录要用google人机交互确认用过代理、tunnel至手机等方法台式机死活登录不上。下面言归正传讲一下超微浏览器直接下载资源至台式机的方法</p>
<p>手机需安装uweb定制Termux并在termux下安装openssl在Termux窗口下依次敲入如下命令<br><code>apt update<br>apt upgrade<br>apt install openssl</code></p>
<p>手机需安装uweb定制<a href="../gnuplot">Termux</a>并在termux下安装openssl在Termux窗口下依次敲入如下命令<br><code>apt update<br>apt upgrade<br>apt install openssl</code></p>
<p>脚本pcdownload内容如下(可放置在任意应用内部目录下并相应修改longclick.txt配置中文件路径)<br><code>#!/data/data/com.termux/files/usr/bin/sh<br>ssh [user:password]@192.168.2.102 “DISPLAY=:0 firefox \”$1\””</code></p>
<p>脚本需设置为可执行Termux下执行命令:<br>chmod 755 /data/data/com.termux/files/usr/bin/pcdownload</p>
<p>这里假定用户已经在台式机上设好ssh服务台式机IP地址为192.168.2.102准备用firefox下载。如果下载工具不是图形程序则上述脚本中可删去“DISPLAY=:0”。</p>