
Ubuntu
文章平均质量分 62
zerothy
西安交通大学本科生
展开
-
tmux使用技巧
TMUX安装tmux:sudo apt install tmux新建一个会话:tmux new -s 关闭一个会话:tmux kill-sesssion -t 恢复某个会话:tmux attach -t 查看有哪些byobu会话:tmux ls常用快捷键Ctrl+b 再輸入 c 建立新 window 視窗(create)。Ctrl+b 再輸入 w 以視覺化選單切換 window 視窗(很好用)。Ctrl+b 再輸入 n 切換至下一個 window 視窗(next)。Ctrl+原创 2021-07-01 11:35:34 · 289 阅读 · 0 评论 -
shell helper: 在不更改shell前提下优化shell体验
# bashrc , add git branch to terminalPS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[01;34m\] \w\[\033[00m\]$(__git_ps1) \$ '原创 2021-06-22 16:05:30 · 219 阅读 · 0 评论 -
Byobu 使用技巧
byobubyobu/tmux是screen的增强版, 敲入byobu命令直接创建和恢复会话,其他快捷键可与screen兼容安装byobu:sudo apt install byobu新建一个byobu会话:byobu new -s 恢复某个byobu会话:byobu a -t 查看有哪些byobu会话:byobu ls常用快捷键shortcutusageF2Create a new window 打开一个新的窗口F3Move to the previou原创 2021-05-30 10:37:32 · 2094 阅读 · 1 评论 -
Ubuntu折腾记录
Deep-Learning安装NVDIA 驱动、CUDA、 cuDNN第一步,确定合适的版本,参考NVIDIA驱动 - CUDA - cuDNN 关系CUDA安装参考 : https://www.cnblogs.com/dinghongkai/p/11268976.htmlDeepin-wine-ubuntu 安装与卸载为了安装QQ、微信,安装了deepin-wine-ubuntu容器,...原创 2020-03-20 18:24:27 · 295 阅读 · 0 评论 -
linux screen 命令详解
0.sudo apt-get install screen1. screen -ls2. screen -r id / name3. screen -S name4.screen -X -S [session # you want to kill] quit原创 2020-02-29 19:08:21 · 202 阅读 · 0 评论 -
Ubuntu 16.04安装Python3.7 & pip3
1. Install Python3.7sudo add-apt-repository ppa:deadsnakes/ppasudo apt-get updatesudo apt-get install python3.72. Change Python3.7 as defaultsudo update-alternatives --install /usr/bin/pyth...原创 2019-10-13 14:41:08 · 3548 阅读 · 0 评论