putty

Plink command results not being saved to local text file

瘦欲@ 提交于 2021-02-08 04:56:31
问题 I am calling a remote ssh through PuTTY's Plink functionality - I am able to connect and run my commands but not able to store Output into another text file - my script is as: plink ssh_hostname -m "directory\till\inputCommand.txt" -l username -pw password > "directory\where\OutputTxt_Will_Be_Saved\OutputRes.txt" Here OutputRes.txt is created, but it is completely blank. The result is shown on the command line, but not saved into OutputRes.txt (that's what I want to save on). 回答1: The command

Flask app not running after closing putty

最后都变了- 提交于 2021-01-27 13:27:37
问题 I am trying to make a flask web app. whenever i close my putty the website stops running and even if I make any change in the code then without running again it does not reflect on the web. 回答1: When you close putty, you are virtually closing down your app also, If you want to access it even when you close down your putty, you should have "tmux installed on you system": pip install tmux Once installed, create a new tmux session by tmux new -s myname Under this session run any code you want

利用云主机搭建游戏加速器(仅限国内加速)

末鹿安然 提交于 2021-01-25 10:01:46
利用云主机搭建游戏加速器(仅限国内加速) 注意:仅作国内游戏加速使用,禁止开飞机,否则后果自负 最近在玩西山居公司的剑网三游戏,因为自己用的是联通宽带,但是玩的是电信区的服务器,正好看到了腾讯云新用户的特价,99元1年,活动地址: https://curl.qcloud.com/Cdl2x4xa 前期工作 搭建游戏加速器的话轻量云服务器就够用了,普通的云服务也是一样的搭建方法 如果自身网络条件较好只是需要切换联通/电信节点,那么尽量将服务器买到靠近游戏服务器所在的机房位置,如果自身网络条件比较差,就把服务器买到离你自己比较近的地方(比如移动宽带或者其他二级运营商所提供的网络) 打开活动网址后我们可以根据自己的需要通过地域/需求来购买自己所需要的云服务器,因为剑网三的电信机房是深圳的实体机房,所以在这里我选择了购买广州地区的云主机,镜像这里因为个人原因平常习惯使用Ubuntu,所以这里就以Ubuntu18.04版本来做详解,CentOS是一样的使用方法 购买之后如下图所示点开自己的控制台 然后点开自己所购买的云服务器/轻量云服务器,如下图所示 然后将自己所购买的云服务器点开,点击更多,之后点击管理 进入之后选择重置密码,在这里输入自己想要设置的密码,默认用户名不需要更改,就用ubuntu就好(云服务商不同默认用户名不同,其他大多数为root) 重置完密码之后再看自己云服务器的IP

LFS 10.0 零基础中文安装教程 超详细 (五)

巧了我就是萌 提交于 2021-01-24 14:33:01
第五章 使LFS系统可启动 1、创建 /etc/fstab 文件: cat > /etc/fstab << "EOF" #Begin /etc/fstab #file system mount-point type options dump fsck #order /dev/sda2 / ext4 defaults 1 1 /dev/sda1 swap swap pri=1 0 0 proc /proc proc nosuid,noexec,nodev 0 0 sysfs /sys sysfs nosuid,noexec,nodev 0 0 devpts /dev/pts devpts gid=5,mode=620 0 0 tmpfs /run tmpfs defaults 0 0 devtmpfs /dev devtmpfs mode=0755,nosuid 0 0 #End /etc/fstab EOF 2、安装Linux-5.8.3内核: cd /sources tar xvf linux-5.8.3.tar.xz cd linux-5.8.3 make mrproper make defconfig make menuconfig 注意:一定要把Putty窗口最大化,否则进不了内核配置的菜单。 来源: oschina 链接: https://my.oschina.net/u

LFS 10.0 超详细搭建过程(一)

天大地大妈咪最大 提交于 2021-01-16 08:18:44
本文是当前最新版LFS10.0教程。此教程写给初学者,高手大神请绕行。 一、软、硬件配置: 二、虚拟机: Virtual Box 6.1,在deepin商店中直接下载安装。 三、LFS 10.0系统搭建思路及准备的软件: 网上的文章都是先建立一个LINUX系统,debian、ubuntu或其它版本的系统,做为宿主系统,来搭建LFS环境。我的思路是,选择一个版本的live-cd来引导系统(不用安装),搭建LFS 10.0的环境。 优点:不安装其它linux系统。只需live-cd来引导系统即可,硬盘空间占用少。 缺点:安装过程中关机的话,引导系统,要重新搭建LFS 10.0环境。 我选择的live-cd是debian9。 下载地址: http://cdimage.debian.org/cdimage/archive/9.0.0-live/amd64/iso-hybrid/debian-live-9.0.0-amd64-xfce.iso 四、建立虚拟机: 1、打开VirtualBox6.1,点击新建按钮。在名称栏里输入:LFS 10.0,版本选择:Other Linux (64-bit),然后点击下一步(如图): 2、内存尽可量选择大一点,这样编译的时候会快很多。我选的是4096M,然后点击下一步(如图)。 3、虚拟硬盘,默认选项。点击“创建”。 4、虚拟硬盘文件类型,默认选项(VDI

A way of typing multiple commands in cmd.txt file using PuTTY batch against Cisco

风流意气都作罢 提交于 2021-01-15 10:11:52
问题 I am running batch file in Windows environment using PuTTY.exe command below: for /L %%n in (1,1,5) do ( SET z=Site%%n% start c:\Users\emrpocadmin\desktop\putty.exe -ssh IPAddress -l User -pw Password -m c:\Users\emrpocadmin\desktop\cmds.txt -load Site%%n% ) This batch should load variable profiles ( n from 1 to 5) predefined in PuTTY and run on them one-by-one the commands defined in cmds.txt file; then save the output to certain folder.. However, in cmds.txt file i could only enter one

A way of typing multiple commands in cmd.txt file using PuTTY batch against Cisco

妖精的绣舞 提交于 2021-01-15 10:10:59
问题 I am running batch file in Windows environment using PuTTY.exe command below: for /L %%n in (1,1,5) do ( SET z=Site%%n% start c:\Users\emrpocadmin\desktop\putty.exe -ssh IPAddress -l User -pw Password -m c:\Users\emrpocadmin\desktop\cmds.txt -load Site%%n% ) This batch should load variable profiles ( n from 1 to 5) predefined in PuTTY and run on them one-by-one the commands defined in cmds.txt file; then save the output to certain folder.. However, in cmds.txt file i could only enter one

A way of typing multiple commands in cmd.txt file using PuTTY batch against Cisco

╄→гoц情女王★ 提交于 2021-01-15 10:05:38
问题 I am running batch file in Windows environment using PuTTY.exe command below: for /L %%n in (1,1,5) do ( SET z=Site%%n% start c:\Users\emrpocadmin\desktop\putty.exe -ssh IPAddress -l User -pw Password -m c:\Users\emrpocadmin\desktop\cmds.txt -load Site%%n% ) This batch should load variable profiles ( n from 1 to 5) predefined in PuTTY and run on them one-by-one the commands defined in cmds.txt file; then save the output to certain folder.. However, in cmds.txt file i could only enter one

ros-机器人案例

Deadly 提交于 2021-01-15 05:30:00
一:环境准备--针对所有(pc\robot) 1:安装系统 ---Ubuntu 1.1 安装系统    机器人 上面,可以用树莓派安装Ubuntu, PC端 如果是Windows系统可以在虚拟机里面安装Ubuntu。   ROS Kinetic 只 支持Wily (Ubuntu 15.10), Xenial (Ubuntu 16.04) 和Jessie (Debian 8) 的debian包。 1.2 确认网络   在系统安装完成后,确认网络是否正常。 2:配置 Ubuntu 软件仓库 2.1 添加 sources.list 设置你的电脑可以从 packages.ros.org 接收软件. sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'  2.2 添加 keys sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 421C365BD9FF1F717815A3895523BAEEB01FA116   如果你遇到连接到keyserver的问题,你可以在以上命令尝试替换hkp://pgp

如何租一台国外的vps服务器

我是研究僧i 提交于 2021-01-03 16:28:21
github博客传送门 csdn博客传送门 如何租一台国外的vps服务器 这里推荐一个非常优惠网站,其他的大同小异: https://www.vultr.com/?ref=8209236 2019年活动,充值10美元送50美元。然后又有很实惠的套餐,2.5美元一个月的服务器。算算啧啧,真是实惠。。10美元就可以用两年。这羊毛一定要薅。 接下来就跟着我一步一步薅掉这实惠的服务器。 1.点击该链接注册该网站的账号,随便使用个邮箱账号即可,不需要手机号码验证。 https://www.vultr.com/?ref=8209236 2.点击邮件里的Verify Your E-mail就会弹到登录界面,然后输出刚才创建的账号和密码即可 3.登录后按着下图所示支付10美元即可成功充值,并获得赠送的余额了。 4.上图点击后即会弹到一个支付界面,其他的支付方式会有所不同,按照提示操作即可。 10美元就69.1人民币 用两年服务器还是很开心了。 5.接下来就到了查看余额是否到账的时刻了,60美元。还是比较满意的哈哈。。额,我这里由于创建了服务器,所以用掉了一点点。所以不是整的。 这里可以看到alipay我只支付了10美元另外50美元的确是送的。 6.接下来我们就该去买买买了。如下图的顺序点击即可。 7.目前我这里是亚特兰大和纽约的服务器有2.5美元/月的服务器