xterm

IPython 5.0 and key bindings in console

醉酒当歌 提交于 2021-02-18 08:57:53
问题 The new release of IPython does not depend any more on readline but uses the pure Python library prompt-toolkit , solving maintenance problems on Apple's and Windows' systems. A new feature is the ability to edit a multi-line code block, using the cursor keys to move freely in the code block — with this power it comes, at least for me, a problem: because a ret inserts a new line in your code, to pass the whole block to the interpreter you have to use the shortcut alt + ret or possibly the

Cygwin wraps text back on to the same line, causing text to be overwritten

泄露秘密 提交于 2021-02-07 14:40:40
问题 I have cygwin installed on my Windows 7 box and I have been running into a problem where when I type a command it will occasionally be wrapped back onto the same line, deleting the bash prompt. Here is an example: The command in question is command "201" (4 lines from the bottom). I included the others for context. The text of the command I was typing was git commit -m "Forced LF line endings." ( Note: I am posting this with mostly git commands, but the problem occurs with any command. I have

Cygwin wraps text back on to the same line, causing text to be overwritten

余生颓废 提交于 2021-02-07 14:38:45
问题 I have cygwin installed on my Windows 7 box and I have been running into a problem where when I type a command it will occasionally be wrapped back onto the same line, deleting the bash prompt. Here is an example: The command in question is command "201" (4 lines from the bottom). I included the others for context. The text of the command I was typing was git commit -m "Forced LF line endings." ( Note: I am posting this with mostly git commands, but the problem occurs with any command. I have

Spring Boot Admin 集成诊断利器 Arthas 实践

独自空忆成欢 提交于 2021-02-04 14:18:29
作者 | 阿提说说 来源| 阿里巴巴云原生公众号 前言 Arthas 是 Alibaba 开源的 Java 诊断工具,具有实时查看系统的运行状况;查看函数调用参数、返回值和异常;在线热更新代码;秒解决类冲突问题;定位类加载路径;生成热点;通过网页诊断线上应用。如今在各大厂都有广泛应用,也延伸出很多产品。 这里将介绍如何将 Arthas 集成进 Spring Boot 监控平台中。 SpringBoot Admin 为了方便,SpringBoot Admin 简称为 SBA(版本:1.5.x)。 1.5 版本的 SBA 如果要开发插件比较麻烦,需要下载 SBA 的源码包,再按照 Spring-boot-admin-server-ui-hystrix的形式 Copy 一份,由于 JS 使用的是 Angular,本人尝试了很久,虽然掌握了如何开发插件,奈何不会 Angular,遂放弃💀 版本:2.x 2.x 版本的 SBA 插件开发,官网有介绍如何开发,JS 使用 Vue,方便很多,由于我们项目还在使用 1.5,所以并没有使用该版本,请读者自行尝试。 不能使用 SBA 的插件进行集成,那还有什么办法呢?😅 SBA 集成 鄙人的办法是将 Arthas 的相关文件直接 Copy 到 Admin 服务中,这些文件都来自 Arthas-all 项目 Tunnel-server。 admin

How to identify the Terminal Emulator being used?

十年热恋 提交于 2021-01-28 04:42:12
问题 I'm developing a library that needs to identify the running terminal emulator in order to output emulator-specific escape code sequences. For example, iTerm 2 uses the following proprietary sequence: ESC ] 50 ; CurrentDir=/path/to/dir BEL While ConEmu uses the following proprietary sequence: ESC ] 9 ; 9 ; C:\path\to\dir BEL Now, I need to query the terminal (either using environment variables or using an escape sequence) in order to output the correct terminal-specific codes. How can I

【docker】 VI/VIM 无法使用系统剪贴板(clipboard)

橙三吉。 提交于 2021-01-23 11:46:50
docker 容器里边操作系统是ubuntu 。默认是没有vim 的,需要自己安装一下 1 更新源 apt- get update 2 安装 vim apt- get install vim 此时。系统不支持剪切板 vim --version | grep clipboard 3 安装 apt- get install vim vim-scripts vim-gtk vim-gnome 再次查看 vim --version | grep clipboard 注意 clipboard 和 xterm_clipboard 前面的 加号( +) 加号(+),表示支持; 减号(-),表示不支持。 来源: oschina 链接: https://my.oschina.net/u/4379768/blog/3932772

tmux终端意外出现控制字符

安稳与你 提交于 2020-10-28 03:42:11
Mac下iterm里运行tmux异常案例。 tmux是一个优秀的终端工具。在以前,其实我是screen党,因为足够简单。 接触tmux后,发现它也够简单,而且相比screen比较实用的一点是,在screen里,无法按下ctrl+a组合键回到当前命令行的行首,而tmux则可以,于是就可耻的 ” 叛变了“。 相对于Screen,它也更好用:支持屏幕切分(横切、竖切),支持在一个终端里开启多个会话,也有更丰富的命令行参数。 macos下,用iterm登入远程主机,进入tmux,按下shift+空格/回删,或者ctrl+回删,都会出现控制字符。 #手速稍微快一些,就会出来好几个控制字符 [root@yejr.run tmp] # 7;2u ;2u 7;5u -bash: 7: command not found -bash: 2u: command not found -bash: 2u: command not found -bash: 5u: command not found #在mysql客户端里也会出现 root@yejr.run [ test ]>select *;2u from t1; 只需要把远程主机的TERM环境变量改成ansi/vt100之类的就没事。 [root@yejr.run ~] # env | grep TERM TERM=xterm [root@yejr

tmux终端意外出现控制字符

北城以北 提交于 2020-10-26 23:36:19
Mac下iterm里运行tmux异常案例。 tmux是一个优秀的终端工具。在以前,其实我是screen党,因为足够简单。 接触tmux后,发现它也够简单,而且相比screen比较实用的一点是,在screen里,无法按下ctrl+a组合键回到当前命令行的行首,而tmux则可以,于是就可耻的”叛变了“。 相对于Screen,它也更好用:支持屏幕切分(横切、竖切),支持在一个终端里开启多个会话,也有更丰富的命令行参数。 macos下,用iterm登入远程主机,进入tmux,按下shift+空格/回删,或者ctrl+回删,都会出现控制字符。 #手速稍微快一些,就会出来好几个控制字符 [root@yejr.run tmp]# 7;2u ;2u 7;5u -bash: 7: command not found -bash: 2u: command not found -bash: 2u: command not found -bash: 5u: command not found #在mysql客户端里也会出现 root@yejr.run [test]>select *;2u from t1; 只需要把远程主机的TERM环境变量改成ansi/vt100之类的就没事。 [root@yejr.run ~]# env | grep TERM TERM=xterm [root@yejr.run ~]#

Linux 终端最全推荐(建议收藏)

无人久伴 提交于 2020-10-14 21:26:29
本文来自网络整理,如有侵权,则可删除。 如果你跟我一样,整天要花大量的时间使用Linux命令行,而且正在寻找一些可替代系统自带的老旧且乏味的终端软件,那你真是找对了文章。我这里搜集了一些非常有趣的终端软件,可以用来替代debian系的Linux原生终端。 Tilda image 这是一款可配置的雷神之锤风格的终端工具,也就是说,当用户敲击配置好的热键(缺省是F1)时,这个终端会从屏幕的顶端滑出,就跟雷神之锤游戏中的效果一样。 它的安装方法: apt- get install tilda Tilda跟其它下拉风格的终端比起来有更丰富的自定义选项。包括: 高度自定义界面 设置Tilda主窗口的透明度。 独特的内置配色方案。 用户可以将命令行窗口蜕化成极简状态。 Yakuake image Yakuake最初的设计灵感来源就是雷神之锤的终端效果。它本质上就是一个基于KDE Konsole技术的下拉风格的终端。因为它是一个KDE应用,如果你想把它安装到GNOME桌面上,将会遇到一大堆的KDE系统包依赖。但如果你是一个KDE用户,Yakuake会让你相当满意。它的安装方法是: apt- get install yakuake Guake image 这是一个Gnome平台上的下拉式的终端工具。这款终端的目标就是提供一种快速终端访问方式,你只需要按动一个快捷键,就能让它从桌面上出现/消失

Solaris下远程图形oracle安装步骤

放肆的年华 提交于 2020-10-12 01:58:36
1 、 X-WINDOWS 使用: 在工作站的 Windows 操作系统中装好后,运行 X-Config ,进行基本的配置,设置完成后,测试 X-Win32 是否能运行:在 DOS 窗口中,键入: telnet 服务器的 IP 地址,输入用户和帐号,接着输入的 Command 命令: /usr/openwin/bin/xterm –ls –display 工作站的 IP 地址 :0 ,这样就会弹出一个窗口。 2 、设置用户和组 Oracle 在安装和使用中需要用特定用户,不能用 root 用户来安装和运行 Oracle 9i 。推荐使用 oracle 帐号。另外,安装 Oracle HTTP Server 时,需要一个 apache 的管理员,推荐使用 apache 帐号。操作步骤如下: groupadd   dba groupadd   vfastoinstall useradd   -d   /export/home/vfastoracle   -g   oinstall   -G   dba   –m vfastoracle passwd   vfastoracle groupadd   apchadm useradd   -d   /export/home/vfastapache   -g   oinstall   -G   apchadm   –m vfastapache