├── LICENSE ├── PS1.md ├── README.md ├── dockerfiles ├── QingCloudSDK │ └── Dockerfile ├── androidautobuild │ ├── Dockerfile │ └── sources.list ├── dmonit │ ├── Dockerfile │ └── Makefile ├── mitmproxy │ ├── Dockerfile │ ├── Readme.md │ └── sources.list ├── postgres │ └── Dockerfile └── smb │ └── Dockerfile ├── docs ├── Pictures │ ├── background.pdf │ ├── chapter_head_1.pdf │ ├── chapter_head_2.pdf │ └── placeholder.jpg ├── StyleInd.ist ├── bibliography.bib ├── compile.bat ├── main.aux ├── main.bbl ├── main.bcf ├── main.blg ├── main.idx ├── main.ilg ├── main.ind ├── main.log ├── main.out ├── main.pdf ├── main.ptc ├── main.run.xml ├── main.tex ├── main.toc └── structure.tex ├── dotfile ├── .bashrc ├── .tmux.conf ├── .vimrc └── coc-settings.json ├── gh60.c ├── golangdev └── Dockerfile ├── mesos ├── docker-systemd │ ├── docker.service │ ├── system-docker.service │ └── system-docker.socket ├── master.sh ├── mesos-flannel-slave.sh ├── mesos-flannel.sh ├── mesos-systemd │ ├── multinode │ │ ├── gen.py │ │ ├── master.sh │ │ └── slave.sh │ └── singlenode │ │ ├── localinstall.sh │ │ └── netinstall.sh ├── repush.sh └── slave.sh ├── note ├── 779MGO设计调优.md ├── 788MongoDB存储过程性能调优.md ├── 790heredocJS多行字符串.md ├── AboutRancherOS.md ├── AndroidAutoBuild.md ├── DatatablesNote.md ├── GitMultRemote.md ├── GolangWebManual.md ├── HTMLinsertBefore.md ├── HomeBrew.md ├── MacAchieveEncoding.md ├── MetaRemap.md ├── MyPHPEnv.md ├── PHPExtensionWindows.md ├── PythonEscape.md ├── RHELAddLocalRepo.md ├── Readme.md ├── SetMysqlPassword.md ├── SetPasswordMongo.md ├── SublimeLicense.md ├── ToolBoxConfig.md ├── VirtualboxTray.md ├── WgetJdk.md ├── aboutGIT.md ├── baiduyunLocateError.md ├── bootstrap弹出插件.md ├── brewMysqlInstallLog.md ├── butterFly_termial.md ├── dockerChangeStoragePosition.md ├── dockerPostgresql.md ├── dockerReg.md ├── dockerRegV2.md ├── etcd.md ├── golangProjectOnIdea.md ├── golangUnitTest.md ├── golang中的坑.md ├── iterm2的坑.md ├── jsDownloadFile.md ├── json.toolunicodeescape.md ├── killall.md ├── liteIDE改装.md ├── mongodbUse_id.md ├── puttySmallKeyboard.md ├── puttyblue.md ├── pythonSimpleHTTPSERVER.md ├── saveGitPassword.md ├── ubuntuChangeRepo.sh ├── viEscpaeDelays.md ├── 取消sshPublicKeyKnowHost认证.md └── 科大lugDNS.md ├── picture ├── MacTheme │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── 4 (4).jpg ├── lwqq │ ├── l1.jpg │ ├── l2.jpg │ ├── l3.jpg │ ├── l4.jpg │ ├── l5.jpg │ ├── l6.jpg │ └── l7.jpg ├── pprof.svg └── wqq │ ├── w1.png │ ├── w2.png │ ├── w3.png │ ├── w4.png │ ├── w5.png │ ├── w6.png │ ├── w7.png │ └── w8.png ├── prob ├── LFS journey.md ├── LinuxHeaderInstall.md ├── Linux分区.md ├── Linux虚拟机网络配置.md ├── MacTheme.md ├── PHP-RSA加密跨域通讯实战.md ├── PHPweb开发学习路线.md ├── qqOnLinux.md └── test.py ├── pythondev ├── .vimrc └── Dockerfile ├── rsakey ├── id_rsa.pub ├── id_rsa.zip └── ppk.zip ├── script ├── caidanhezidev ├── cleandocker ├── db.sh ├── e ├── env.sh ├── freem ├── k └── xdev └── st2 ├── Dockerfile ├── docker-entrypoint.sh ├── st2.conf ├── st2ctl └── supervisord.conf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/LICENSE -------------------------------------------------------------------------------- /PS1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/PS1.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/README.md -------------------------------------------------------------------------------- /dockerfiles/QingCloudSDK/Dockerfile: -------------------------------------------------------------------------------- 1 | from python:2 2 | RUN ingcloud-sdk 3 | CMD /bin/bash 4 | -------------------------------------------------------------------------------- /dockerfiles/androidautobuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/androidautobuild/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/androidautobuild/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/androidautobuild/sources.list -------------------------------------------------------------------------------- /dockerfiles/dmonit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/dmonit/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/dmonit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/dmonit/Makefile -------------------------------------------------------------------------------- /dockerfiles/mitmproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/mitmproxy/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/mitmproxy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/mitmproxy/Readme.md -------------------------------------------------------------------------------- /dockerfiles/mitmproxy/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/mitmproxy/sources.list -------------------------------------------------------------------------------- /dockerfiles/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/postgres/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/smb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dockerfiles/smb/Dockerfile -------------------------------------------------------------------------------- /docs/Pictures/background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/Pictures/background.pdf -------------------------------------------------------------------------------- /docs/Pictures/chapter_head_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/Pictures/chapter_head_1.pdf -------------------------------------------------------------------------------- /docs/Pictures/chapter_head_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/Pictures/chapter_head_2.pdf -------------------------------------------------------------------------------- /docs/Pictures/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/Pictures/placeholder.jpg -------------------------------------------------------------------------------- /docs/StyleInd.ist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/StyleInd.ist -------------------------------------------------------------------------------- /docs/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/bibliography.bib -------------------------------------------------------------------------------- /docs/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/compile.bat -------------------------------------------------------------------------------- /docs/main.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.aux -------------------------------------------------------------------------------- /docs/main.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.bbl -------------------------------------------------------------------------------- /docs/main.bcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.bcf -------------------------------------------------------------------------------- /docs/main.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.blg -------------------------------------------------------------------------------- /docs/main.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.idx -------------------------------------------------------------------------------- /docs/main.ilg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.ilg -------------------------------------------------------------------------------- /docs/main.ind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.ind -------------------------------------------------------------------------------- /docs/main.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.log -------------------------------------------------------------------------------- /docs/main.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.out -------------------------------------------------------------------------------- /docs/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.pdf -------------------------------------------------------------------------------- /docs/main.ptc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.ptc -------------------------------------------------------------------------------- /docs/main.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.run.xml -------------------------------------------------------------------------------- /docs/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.tex -------------------------------------------------------------------------------- /docs/main.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/main.toc -------------------------------------------------------------------------------- /docs/structure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/docs/structure.tex -------------------------------------------------------------------------------- /dotfile/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dotfile/.bashrc -------------------------------------------------------------------------------- /dotfile/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dotfile/.tmux.conf -------------------------------------------------------------------------------- /dotfile/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dotfile/.vimrc -------------------------------------------------------------------------------- /dotfile/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/dotfile/coc-settings.json -------------------------------------------------------------------------------- /gh60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/gh60.c -------------------------------------------------------------------------------- /golangdev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/golangdev/Dockerfile -------------------------------------------------------------------------------- /mesos/docker-systemd/docker.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/docker-systemd/docker.service -------------------------------------------------------------------------------- /mesos/docker-systemd/system-docker.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/docker-systemd/system-docker.service -------------------------------------------------------------------------------- /mesos/docker-systemd/system-docker.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/docker-systemd/system-docker.socket -------------------------------------------------------------------------------- /mesos/master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/master.sh -------------------------------------------------------------------------------- /mesos/mesos-flannel-slave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/mesos-flannel-slave.sh -------------------------------------------------------------------------------- /mesos/mesos-flannel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/mesos-flannel.sh -------------------------------------------------------------------------------- /mesos/mesos-systemd/multinode/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/mesos-systemd/multinode/gen.py -------------------------------------------------------------------------------- /mesos/mesos-systemd/multinode/master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/mesos-systemd/multinode/master.sh -------------------------------------------------------------------------------- /mesos/mesos-systemd/multinode/slave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/mesos-systemd/multinode/slave.sh -------------------------------------------------------------------------------- /mesos/mesos-systemd/singlenode/localinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/mesos-systemd/singlenode/localinstall.sh -------------------------------------------------------------------------------- /mesos/mesos-systemd/singlenode/netinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/mesos-systemd/singlenode/netinstall.sh -------------------------------------------------------------------------------- /mesos/repush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/mesos/repush.sh -------------------------------------------------------------------------------- /mesos/slave.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /note/779MGO设计调优.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/779MGO设计调优.md -------------------------------------------------------------------------------- /note/788MongoDB存储过程性能调优.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/788MongoDB存储过程性能调优.md -------------------------------------------------------------------------------- /note/790heredocJS多行字符串.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/790heredocJS多行字符串.md -------------------------------------------------------------------------------- /note/AboutRancherOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/AboutRancherOS.md -------------------------------------------------------------------------------- /note/AndroidAutoBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/AndroidAutoBuild.md -------------------------------------------------------------------------------- /note/DatatablesNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/DatatablesNote.md -------------------------------------------------------------------------------- /note/GitMultRemote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/GitMultRemote.md -------------------------------------------------------------------------------- /note/GolangWebManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/GolangWebManual.md -------------------------------------------------------------------------------- /note/HTMLinsertBefore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/HTMLinsertBefore.md -------------------------------------------------------------------------------- /note/HomeBrew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/HomeBrew.md -------------------------------------------------------------------------------- /note/MacAchieveEncoding.md: -------------------------------------------------------------------------------- 1 | #mac 下始终有windows文件乱码问题 2 | 解决方案: 3 | 使用The Unarchiver For Mac 4 | [下载](http://www.onlinedown.net/softdown/175693_2.htm) 5 | -------------------------------------------------------------------------------- /note/MetaRemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/MetaRemap.md -------------------------------------------------------------------------------- /note/MyPHPEnv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/MyPHPEnv.md -------------------------------------------------------------------------------- /note/PHPExtensionWindows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/PHPExtensionWindows.md -------------------------------------------------------------------------------- /note/PythonEscape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/PythonEscape.md -------------------------------------------------------------------------------- /note/RHELAddLocalRepo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/RHELAddLocalRepo.md -------------------------------------------------------------------------------- /note/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/Readme.md -------------------------------------------------------------------------------- /note/SetMysqlPassword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/SetMysqlPassword.md -------------------------------------------------------------------------------- /note/SetPasswordMongo.md: -------------------------------------------------------------------------------- 1 | #mongodb 密码设定 2 | ```bash 3 | use admin 4 | db.addUser('root','123456') 5 | db.system.users.find() 6 | #如果出现了你输入的账号就证明成功了 7 | ``` 8 | -------------------------------------------------------------------------------- /note/SublimeLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/SublimeLicense.md -------------------------------------------------------------------------------- /note/ToolBoxConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/ToolBoxConfig.md -------------------------------------------------------------------------------- /note/VirtualboxTray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/VirtualboxTray.md -------------------------------------------------------------------------------- /note/WgetJdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/WgetJdk.md -------------------------------------------------------------------------------- /note/aboutGIT.md: -------------------------------------------------------------------------------- 1 | 记住密码: 2 | git config --global credential.helper store 3 | -------------------------------------------------------------------------------- /note/baiduyunLocateError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/baiduyunLocateError.md -------------------------------------------------------------------------------- /note/bootstrap弹出插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/bootstrap弹出插件.md -------------------------------------------------------------------------------- /note/brewMysqlInstallLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/brewMysqlInstallLog.md -------------------------------------------------------------------------------- /note/butterFly_termial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/butterFly_termial.md -------------------------------------------------------------------------------- /note/dockerChangeStoragePosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/dockerChangeStoragePosition.md -------------------------------------------------------------------------------- /note/dockerPostgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/dockerPostgresql.md -------------------------------------------------------------------------------- /note/dockerReg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/dockerReg.md -------------------------------------------------------------------------------- /note/dockerRegV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/dockerRegV2.md -------------------------------------------------------------------------------- /note/etcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/etcd.md -------------------------------------------------------------------------------- /note/golangProjectOnIdea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/golangProjectOnIdea.md -------------------------------------------------------------------------------- /note/golangUnitTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/golangUnitTest.md -------------------------------------------------------------------------------- /note/golang中的坑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/golang中的坑.md -------------------------------------------------------------------------------- /note/iterm2的坑.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /note/jsDownloadFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/jsDownloadFile.md -------------------------------------------------------------------------------- /note/json.toolunicodeescape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/json.toolunicodeescape.md -------------------------------------------------------------------------------- /note/killall.md: -------------------------------------------------------------------------------- 1 | apt-get install psmisc 2 | -------------------------------------------------------------------------------- /note/liteIDE改装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/liteIDE改装.md -------------------------------------------------------------------------------- /note/mongodbUse_id.md: -------------------------------------------------------------------------------- 1 | 使用有意义的 _id 在golang里面需要这样: 2 | type test struct { 3 | Id int `json:"id" bson:"_id"` 4 | } 5 | -------------------------------------------------------------------------------- /note/puttySmallKeyboard.md: -------------------------------------------------------------------------------- 1 | 打开putty的配置 勾选Terminal-->Features下面的“Disable application keypad mode”即可。 2 | -------------------------------------------------------------------------------- /note/puttyblue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/puttyblue.md -------------------------------------------------------------------------------- /note/pythonSimpleHTTPSERVER.md: -------------------------------------------------------------------------------- 1 | python -m SimpleHTTPServer 2 | -------------------------------------------------------------------------------- /note/saveGitPassword.md: -------------------------------------------------------------------------------- 1 | git config --global credential.helper store 2 | -------------------------------------------------------------------------------- /note/ubuntuChangeRepo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/ubuntuChangeRepo.sh -------------------------------------------------------------------------------- /note/viEscpaeDelays.md: -------------------------------------------------------------------------------- 1 | http://www.johnhawthorn.com/2012/09/vi-escape-delays/ 2 | -------------------------------------------------------------------------------- /note/取消sshPublicKeyKnowHost认证.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/取消sshPublicKeyKnowHost认证.md -------------------------------------------------------------------------------- /note/科大lugDNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/note/科大lugDNS.md -------------------------------------------------------------------------------- /picture/MacTheme/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/MacTheme/1.jpg -------------------------------------------------------------------------------- /picture/MacTheme/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/MacTheme/2.jpg -------------------------------------------------------------------------------- /picture/MacTheme/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/MacTheme/3.jpg -------------------------------------------------------------------------------- /picture/MacTheme/4 (4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/MacTheme/4 (4).jpg -------------------------------------------------------------------------------- /picture/lwqq/l1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/lwqq/l1.jpg -------------------------------------------------------------------------------- /picture/lwqq/l2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/lwqq/l2.jpg -------------------------------------------------------------------------------- /picture/lwqq/l3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/lwqq/l3.jpg -------------------------------------------------------------------------------- /picture/lwqq/l4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/lwqq/l4.jpg -------------------------------------------------------------------------------- /picture/lwqq/l5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/lwqq/l5.jpg -------------------------------------------------------------------------------- /picture/lwqq/l6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/lwqq/l6.jpg -------------------------------------------------------------------------------- /picture/lwqq/l7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/lwqq/l7.jpg -------------------------------------------------------------------------------- /picture/pprof.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/pprof.svg -------------------------------------------------------------------------------- /picture/wqq/w1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w1.png -------------------------------------------------------------------------------- /picture/wqq/w2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w2.png -------------------------------------------------------------------------------- /picture/wqq/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w3.png -------------------------------------------------------------------------------- /picture/wqq/w4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w4.png -------------------------------------------------------------------------------- /picture/wqq/w5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w5.png -------------------------------------------------------------------------------- /picture/wqq/w6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w6.png -------------------------------------------------------------------------------- /picture/wqq/w7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w7.png -------------------------------------------------------------------------------- /picture/wqq/w8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/picture/wqq/w8.png -------------------------------------------------------------------------------- /prob/LFS journey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/LFS journey.md -------------------------------------------------------------------------------- /prob/LinuxHeaderInstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/LinuxHeaderInstall.md -------------------------------------------------------------------------------- /prob/Linux分区.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/Linux分区.md -------------------------------------------------------------------------------- /prob/Linux虚拟机网络配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/Linux虚拟机网络配置.md -------------------------------------------------------------------------------- /prob/MacTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/MacTheme.md -------------------------------------------------------------------------------- /prob/PHP-RSA加密跨域通讯实战.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/PHP-RSA加密跨域通讯实战.md -------------------------------------------------------------------------------- /prob/PHPweb开发学习路线.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/PHPweb开发学习路线.md -------------------------------------------------------------------------------- /prob/qqOnLinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/qqOnLinux.md -------------------------------------------------------------------------------- /prob/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/prob/test.py -------------------------------------------------------------------------------- /pythondev/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/pythondev/.vimrc -------------------------------------------------------------------------------- /pythondev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/pythondev/Dockerfile -------------------------------------------------------------------------------- /rsakey/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/rsakey/id_rsa.pub -------------------------------------------------------------------------------- /rsakey/id_rsa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/rsakey/id_rsa.zip -------------------------------------------------------------------------------- /rsakey/ppk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/rsakey/ppk.zip -------------------------------------------------------------------------------- /script/caidanhezidev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/script/caidanhezidev -------------------------------------------------------------------------------- /script/cleandocker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/script/cleandocker -------------------------------------------------------------------------------- /script/db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/script/db.sh -------------------------------------------------------------------------------- /script/e: -------------------------------------------------------------------------------- 1 | docker exec -it $1 /bin/bash 2 | -------------------------------------------------------------------------------- /script/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/script/env.sh -------------------------------------------------------------------------------- /script/freem: -------------------------------------------------------------------------------- 1 | free -h | awk 'NR==2{print $3}' 2 | -------------------------------------------------------------------------------- /script/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/script/k -------------------------------------------------------------------------------- /script/xdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/script/xdev -------------------------------------------------------------------------------- /st2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/st2/Dockerfile -------------------------------------------------------------------------------- /st2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/st2/docker-entrypoint.sh -------------------------------------------------------------------------------- /st2/st2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/st2/st2.conf -------------------------------------------------------------------------------- /st2/st2ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/st2/st2ctl -------------------------------------------------------------------------------- /st2/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijianying10/FixLinux/HEAD/st2/supervisord.conf --------------------------------------------------------------------------------