xming

如何在SSH连接Linux系统的环境下使用wireshark抓包?

久未见 提交于 2020-11-11 20:21:40
TSINGSEE青犀视频云边端架构EasyNVR、EasyDSS、EasyGBS等都是有两种操作系统的版本,一种是linux,一种是windows。而大多数开发者用户都会使用linux版本进行安装。 对于安装部署出现的问题,TSINGSEE青犀视频团队研发的经常为客户远程调试,通常都会通过抓取网络包的方式进行排查。当我们在使用SSH连接远程客户服务器的时候可以有两种方式进行抓包,分别是: 通过tcpdump进行抓包,对于tcpdump抓包,保存到服务器,在拷贝到本地进行分析。 通过wireshark进行抓包,对于ssh连接后,如何使用wireshark? 本文我们就简单介绍一下如何在SSH连接linux的情况,使用wireshark进行抓包。 1、首先确认安装服务器是否已经安装wireshark,如果没有安装,需要先安装 yum install wireshark 2、安装完成后,执行wireshark 3、查询wireshark需要的依赖 yum search wireshark 4、安装gnome yum install wireshark-gnome.x86_64 此时wireshark命令可以找到执行,但是无法显示。这里可以在windows上安装xMing来解决。 5、下载xming https://xming.en.softonic.com/download

putty+xming远程登录Ubuntu16.04图形界面

久未见 提交于 2020-10-16 12:42:43
前面我写过一篇《Ubuntu16.04 安装ftp服务器传输文件》的文章。文章当中已经可以远程访问linux服务器并且传输文件,然而要在putty中使用开启图形界面的命令到目前为止还是不够的,要不你试试在黑乎乎的putty虚拟终端下使用gedit命令,结果肯定会报错的!由于本人对于vi编辑器的深恶痛绝,我决定一定要搞出图形界面来,要不然我会屎的!!!现在跟着本宝宝搞起来~ (1)先来处理ubuntu服务器, 安装openssh-server和xbase-clients: 1 sudo apt-get install openssh- server 2 sudo apt-get install xbase-clients (2) 安装软件 下载并安装Xming客户端: http://pan.baidu.com/s/1eSoQXJs ,安装并启动, 无需配置。 下载并安装putty: http://pan.baidu.com/s/1qY0HSVa (3)配置putty 选中左边菜单Session,在右边的Host Name处输入:远程主机IP, Port处:输入端口(默认22),Connection type选择SSH。 选中左边菜单Connection->data。在Auto-login usename 输入自动的登录名。如果这里不输入的,在登录linux的时候

Windows10内置Linux子系统初体验

安稳与你 提交于 2020-08-11 13:50:17
https://www.jianshu.com/p/bc38ed12da1d 前言 前段时间,机子上的 win10 又偷偷摸摸升级到了一周年正式版,比较无奈。不过之前听闻这个版本已经支持内置的 Linux 子系统,于是就怀着好奇心试玩了一把。虽然期间遇到了很多问题,但总体来说这个子系统体验还不错,在这里就分享一些关键步骤和遇到的问题,剩下的大家自己折腾吧。。 启用 Linux 子系统 设置(16215版之后不再需要开发人员模式) Windows功能 安装ing... 系统升级到一周年正式版及以上(1607) 依次在 设置 - 更新与安全 - 针对开发人员 选项中,启用"开发人员模式" 在资源管理器中打开 控制面板\所有控制面板项\程序和功能 , 打开 启用或关闭 Windows功能 , 勾选 适用于Linux的Windows子系统(Beta) 重启电脑 命令行运行 lxrun /install /y 开始安装 安装速度取决于网络情况,下载的文件在 %localappdata%\lxss 目录下 lxss.tar.gz (181M),解压后大概500M, rootfs 目录即为子系统根目录。 命令行运行 bash 进入Ubuntu 默认使用的 root 帐号登录,通过指令 passwd 设置密码。 注:本文脚本均在root帐号下操作,因此建议使用root帐号 毕竟爱折腾

Pycharm远程服务器编程环境并能使用Xming显示图像界面

懵懂的女人 提交于 2020-08-11 03:44:45
本文主要使用pycharm+Xming实现使用服务器的编程环境,并在本地显示图像界面, 同时使用Putty远程服务器终端,使用WinSCP可以从局域网向服务器快速传输文件。 主要使用的几个软件:、 Pycharm 专业版 putty Xming WinSCP 以上几个软件如果找不到,可以留言我发给你 1、首先介绍Pycharm 专业版,如果要远程服务器必须用专业版,社区版不行,有edu账号的话可以在官网上免费申请,没有的话可以去某宝上看看。免费申请的具体流程很简单,就是往edu邮箱上认证一下。 2、 打开新下载的Pycharm后,新建项目。 Pure Python —— Existing interpreter——点击Interpreter旁的浏览——SSH 第一次使用需要填ip地址,端口号默认就可以,Username 服务器名字 点击下一步,选择服务器上的python环境。如下图 点击完成后,注意这时候解释器已经显示了服务器的Pyyhon环境,同时Remote project location表示在服务器上想要同步的代码文件夹。点击创建即可。此时我们使用的Python环境已经是服务器上的了。 如果代码中需要用到一些服务器上的动态库,在服务器上代码可以运行,在本地显示缺少动态库,可能需要我们加在程序的环境变量中,例如,在开始运行时我缺少cuda的动态库,添加步骤如下: 点击运行—

tkinter in Ubuntu inside Windows 10. Error: “no display name and no $DISPLAY environment variable”

送分小仙女□ 提交于 2020-05-14 16:34:26
问题 I have recently installed the Ubuntu app for Windows 10 so that I can use it for a class. I am following some cryptic assignment directions to "try out tkinter". I installed the package python3-tk in the Ubuntu terminal window following instructions located here: How to install and use Tkinter in ubuntu / Debian / Linux mint. So then I execute ~$ python3 with the result Python 3.5.2 (default, Aug 18 2017, 17:48:00) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license"

tkinter in Ubuntu inside Windows 10. Error: “no display name and no $DISPLAY environment variable”

你离开我真会死。 提交于 2020-05-14 16:34:07
问题 I have recently installed the Ubuntu app for Windows 10 so that I can use it for a class. I am following some cryptic assignment directions to "try out tkinter". I installed the package python3-tk in the Ubuntu terminal window following instructions located here: How to install and use Tkinter in ubuntu / Debian / Linux mint. So then I execute ~$ python3 with the result Python 3.5.2 (default, Aug 18 2017, 17:48:00) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license"

GUI Applications on WSL

﹥>﹥吖頭↗ 提交于 2020-03-25 21:06:55
问题 I am using Xming to get graphical outputs from WSL(Ubuntu). And i have problem with outputs. tutorial output my output why am i getting different results and is there any way to get same outputs? tutorial code visualization part : // Visualization printf( "\nPoint cloud colors : white = original point cloud\n" " red = transformed point cloud\n"); pcl::visualization::PCLVisualizer viewer ("Matrix transformation example"); // Define R,G,B colors for the point cloud pcl::visualization:

PuTTY X11 proxy: Unsupported Authorisation Protocol [closed]

ⅰ亾dé卋堺 提交于 2019-12-20 11:56:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I get the following error if I login as root; if I login as admin user, then x11 starts with no problems. Ubuntu 14.04 Xming server 2.0 running on Windows 8.1 PuTTY X11 proxy: Unsupported authorisation protocol java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11GraphicsEnvironment at java.lang

fail to update jdk1.7.0_45 in raspberry pi

落爺英雄遲暮 提交于 2019-12-13 18:46:42
问题 I'm developing the TV Scoreboard app with the use of window laptop and raspberry pi. I'm using the putty to have socket connection. Before that it request to state the X11 server variable, so I have installed the Xming server in my window laptop and fixed to localhost:0.0.0.0 But JFLauncher keep pop up the message to install the newest Java Runtime. So I think the latest and suitable one should be jre 1.7.0_45 . I have download the e jre-7u45-fcs-b15-linux-arm-vfp-hflt-client_headless-26_sep

Avoid opening browser on remote server during selenium call

荒凉一梦 提交于 2019-12-13 14:53:50
问题 I have written a selenium application using webdriver. I wish to run it on a remote server. When I do that by logging into the server via putty (along with Xming), the selenium tries opening the browser on the server only and load the pages through the external display. However in doing that, it takes a lot of time than if I would have been able to get the browser open on my localhost only (and not the server). Is it possible for such thing to happen or opening on the server only is the only