2017/10/18
按照如下操作安装 Ubuntu 16.04.3 LTS 成功,win7安装ubuntu双系统
http://jingyan.baidu.com/article/76a7e409bea83efc3b6e1507.html
基本来说就是使用UltralISO制作U盘启动盘。
去https://ngrok.com/ 注册后会给你一个authtoken, 然后下载ngrok, 解压后直接运行。
2017/10/18
install sshd
sudo apt install openssh-server
config file is /etc/ssh/sshd_config
run cmd: service sshd restart
set sshd to start when host start: chkconfig --level 35 sshd on
2017/10/18
install vim
sudo apt install vim
2017/10/18
安装运行ngrok
去https://ngrok.com/ 注册后会给你一个authtoken, 然后下载ngrok, 解压后直接运行。
run cmd: ./ngrok authtoken 6SxtPPNda7fqhzfg331P_55JJvXwm4UvGp3UF6uV6T
./ngrok tcp 22
2017/10/18
install screen
sudo apt install screen
2017/10/18 按照如下操作安装 Ubuntu 16.04.3 LTS 成功
http://jingyan.baidu.com/article/76a7e409bea83efc3b6e1507.html
2017/10/22
想要设定系统启动使用固定内网ip地址,更改了/etc/network/interfaces 和 /etc/resolv.conf, 然后运行了shutdown -r now命令,结果重启后发现图形界面蓝屏。
只能用Ctrl+Alt+F1 切换到命令行界面, 切换回到图形界面使用、Ctrl+Alt+F7,依然蓝屏。
2017/10/23
首先还原了/etc/network/interfaces 文件,然后重启后又可以自动连上wifi了。 这说明是我的/etc/network/interfaces 配置导致了wifi无法连接。
重新安装ubuntu-desktop 后重启,问题成功解决。
- sudoapt-getinstall--reinstallubuntu-desktop
- sudoreboot
2017/10/23
安装git: sudo apt-get install git
配置用户名密码:git config --global user.name "xxx" git config --global user.email "xxx@gmail.com", Home目录下会自动新建一个.gitconfig文件
生成key并把公钥拷贝到github:ssh-keygen -t rsa -C "qiubing.it@gmail.com",cat ~/.ssh/id_rsa.pub, 登录github-> Settings-> SSH and GPG Keys-> New SSH key添加
测试连接是否成功:ssh -T git@github.com
2017/10/24
下载disruptor--
$ cd ~/shadows/
$ git clone https://github.com/fsaintjacques/disruptor--.git
$git clonehttps://github.com/real-logic/simple-binary-encoding.git
原文链接:https://www.f2er.com/ubuntu/350826.html