google搜索
CPU
https://software.intel.com/zh-cn/articles/book-Processor-Architecture_CPU_work_process
https://software.intel.com/zh-cn/documentation
内核(kernel)官方文档
https://www.kernel.org/doc/html/latest/
https://www.kernel.org/doc/Documentation/sysctl/kernel.txt
www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm
redhat/centos/fedora官方文档
redhat
https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/
https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/7/
https://developers.redhat.com/products/rhel/download/
https://developers.redhat.com/rhel8/getrhel8/
centos
https://docs.centos.org/en-US/docs/
fedora
https://docs.fedoraproject.org/en-US/docs/
https://fedoraproject.org/wiki/EPEL
https://dl.fedoraproject.org/pub/
https://admin.fedoraproject.org/mirrormanager/
安装
https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/7/html/installation_guide/
网络
https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/7/html/networking_guide/index
https://linoxide.com/linux-command/use-ip-command-linux
安全
firewalld
https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/7/html/security_guide/
iptables
性能相关
虚拟化
lvm(逻辑卷管理)
Ubuntu
https://help.ubuntu.com/lts/serverguide/index.html
https://mirrors.aliyun.com/ubuntu-releases/
openldap
alpine
虚拟化
http://www.linux-kvm.org/page/Documents#
https://www.virtualbox.org/wiki/Downloads
teamviewer
https://www.teamviewer.com/cn/download/linux/
kickstart/cobbler
extundelete 数据恢复
http://extundelete.sourceforge.net/
Linux
http://www.tldp.org/LDP/abs/html/index.html
各种服务
http://www.server-world.info/en/
http://docs.linuxtone.org/ebooks/
openstack
https://docs.openstack.org/ocata/zh_CN/install-guide-rdo/
https://download.cirros-cloud.net
https://docs.openstack.org/image-guide/
http://cloud.centos.org/centos/7/images/
http://mirrors.ustc.edu.cn/centos-cloud/centos/7/images/
docker
镜像加速器
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://gqk8w9va.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
kubernetes
http://docs.kubernetes.org.cn/
https://kubernetes.io/docs/home/?path=users&persona=app-developer&level=foundational
https://mirror.kaiyuanshe.cn/kubernetes/
https://packages.cloud.google.com/
https://kairen.github.io/2018/07/09/kubernetes/deploy/manual-v1.11/
https://storage.googleapis.com/kubernetes-release/release/v1.11.0/bin/linux/amd64
https://github.com/minminmsn/k8s1.13
国内镜像仓库
https://kubernetes.feisky.xyz/fu-lu/mirrors
https://kubernetes.io/docs/setup/release/
git clone https://github.com/kubernetes/kubernetes.git
cd kubernetes
make release
docker pull mirrorgooglecontainers/kube-apiserver-amd64:v1.12.2
docker pull mirrorgooglecontainers/kube-controller-amd64:v1.12.2
docker pull mirrorgooglecontainers/kube-controller-manager-amd64:v1.12.2
docker pull mirrorgooglecontainers/kube-scheduler-amd64:v1.12.2
docker pull mirrorgooglecontainers/kube-proxy-amd64:v1.12.2
docker pull mirrorgooglecontainers/pause:3.1
docker pull mirrorgooglecontainers/etcd-amd64:3.2.24
docker pull mirrorgooglecontainers/coredns:1.2.2
docker pull mirrorgooglecontainers/coredns-amd64:1.2.2
docker pull coredns/coredns:1.2.2
构建、拉取镜像和打gcr.io标签
拉取新构建的镜像
docker pull registry.cn-shenzhen.aliyuncs.com/cookcodeblog/kube-apiserver-amd64:v1.10.3
打上gcr.io同名标签
docker tag registry.cn-shenzhen.aliyuncs.com/cookcodeblog/kube-apiserver-amd64:v1.10.3 k8s.gcr.io/kube-apiserver-amd64:v1.10.3
删除新构建的镜像,只保留gcr.io镜像
docker rmi registry.cn-shenzhen.aliyuncs.com/cookcodeblog/kube-apiserver-amd64:v1.10.3
一个拉取kubeadm镜像的脚本
!/bin/bash
set -e
Check version in https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-init/
Search "Running kubeadm without an internet connection"
For running kubeadm without an internet connection you have to pre-pull the required master images for the version of choice:
KUBE_VERSION=v1.10.3
KUBE_PAUSE_VERSION=3.1
ETCD_VERSION=3.1.12
DNS_VERSION=1.14.8
GCR_URL=k8s.gcr.io
ALIYUN_URL=registry.cn-shenzhen.aliyuncs.com/cookcodeblog
images=(kube-proxy-amd64:${KUBE_VERSION}
kube-scheduler-amd64:${KUBE_VERSION}
kube-controller-manager-amd64:${KUBE_VERSION}
kube-apiserver-amd64:${KUBE_VERSION}
pause-amd64:${KUBE_PAUSE_VERSION}
etcd-amd64:${ETCD_VERSION}
k8s-dns-sidecar-amd64:${DNS_VERSION}
k8s-dns-kube-dns-amd64:${DNS_VERSION}
k8s-dns-dnsmasq-nanny-amd64:${DNS_VERSION})
for imageName in ${images[@]} ; do
docker pull imageName
docker tag imageName imageName
docker rmi imageName
done
docker images
查看gcr.io官方镜像
https://console.cloud.google.com/gcr/images/google-containers/GLOBAL
然后再选择正确的镜像。
通常,gcr.io官方镜像的命名规则为:
gcr.io/google_containers/IMAGE_NAME:IMAGE_TAG
比如:
gcr.io/google_containers/kube-apiserver-amd64:v1.10.3
k8s.gcr.io
gcrxio
k3s
https://github.com/rancher/k3s
rancher
https://rancher.com/docs/rancher/latest/zh/
日志
https://www.elastic.co/guide/index.html
https://www.elastic.co/guide/cn/index.html
elasticsearch
https://www.elastic.co/guide/cn/elasticsearch/guide/current/index.html
filebeat
https://www.elastic.co/guide/en/beats/filebeat/current/index.html
logstash
https://www.elastic.co/guide/en/logstash/current/index.html
kibana
https://www.elastic.co/guide/cn/kibana/current/index.html
存储
nfs
mfs
https://moosefs.com/support/#documentation
https://github.com/moosefs/moosefs
glusterfs
https://docs.gluster.org/en/latest/
fastdfs
https://github.com/happyfish100/fastdfs/wiki
wfs
https://github.com/donnie4w/wfs
可道云
https://kodcloud.com/download/
lvs
http://www.linuxvirtualserver.org/zh/
http://zh.linuxvirtualserver.org/
git
https://git-scm.com/documentation
https://git-scm.com/book/zh/v2
gitlab
jenkins
http://www.jenkins.org.cn/jenkins%E6%8F%92%E4%BB%B6%E5%A4%A7%E5%85%A8
https://github.com/malongshuai/
码云
监控
zabbix
https://www.zabbix.com/documentation/4.0/zh/manual
https://book.open-falcon.org/zh/
监控插件
https://www.percona.com/doc/percona-monitoring-plugins/LATEST/index.html
https://www.percona.com/downloads/percona-monitoring-plugins/
Prometheus
https://prometheus.io/docs/introduction/overview/
https://www.bookstack.cn/read/prometheus-manual/README.md
https://love2.io/@1046102779/doc/prometheus/introductions/overview.md
tcp/ip
http://www.tcpipguide.com/free/
http协议
dns
https://ftp.isc.org/isc/bind9/cur/9.11/doc/arm/Bv9ARM.html
tcpdump
http://www.tcpdump.org/manpages/tcpdump.1.html
ssh
https://www.openssh.com/manual.html
rsync
crontab
iptables/firewalld
http://www.netfilter.org/documentation/
http://dl.fedoraproject.org/pub/epel/6Server/
systemd官网
https://www.freedesktop.org/software/systemd/man/systemd.service.html
vpn
pptp
https://wiki.mikrotik.com/wiki/Manual:Interface/PPTP
http://poptop.sourceforge.net/dox/
http://pptpclient.sourceforge.net/
openvpn
https://openvpn.net/community-resources/#documentation
https://community.openvpn.net/openvpn/wiki/Openvpn24ManPage
跳板机
teleport
jumpserver
http://docs.jumpserver.org/zh/docs/
其它
数据库
mysql
http://downloads.mysql.com/archives/
https://db-engines.com/en/ranking
proxysql
https://github.com/sysown/proxysql/wiki
mha
https://github.com/yoshinorim/mha4mysql-manager
https://github.com/ovaistariq/mha-helper
redis
http://download.redis.io/releases/
mongodb
https://www.mongodb.com/download-center/community
http://www.mongodb.org.cn/manual/
https://www.runoob.com/mongodb/mongodb-tutorial.html
https://mongodb-documentation.readthedocs.io/en/latest/
Oracle中文
https://www.oracle.com/technetwork/cn/indexes/documentation/index.html
php yum源
http://mirror.webtatic.com/yum/el5/latest.rpm ##CentOs 5.x
http://mirror.webtatic.com/yum/el6/latest.rpm ##CentOs 6.x
https://mirror.webtatic.com/yum/el7/epel-release.rpm ##CentOs 7.X
https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/
https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm
remi repository
Remi repository是包含最新版本PHP和MySQL包的Linux源,由Remi提供维护
http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
http://rpms.remirepo.net/enterprise/remi-release-7.rpm
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
http://rpms.remirepo.net/enterprise/remi-release-7.rpm
npm
ansible/saltstack
https://docs.saltstack.com/en/latest/
apache/nginx/tengine
http://archive.apache.org/dist/httpd/
dubbo
http://dubbo.apache.org/zh-cn/docs/user/quick-start.html
spring boot
https://docs.spring.io/spring-boot/docs/current/reference/html/
ruby中国
man手册
Linux中文man手册安装
./configure --disable-zhtw --prefix=/usr/local/zhman
make
make install
alias cman='man -M /usr/local/zhman/share/man/zh_CN'
gnu
https://www.gnu.org/software/gawk/manual/gawk.html
https://www.gnu.org/software/sed/manual/sed.html
https://www.gnu.org/software/grep/manual/grep.html
https://www.gnu.org/software/bash/manual/bash.html
https://www.gnu.org/software/coreutils/manual/coreutils.html
https://busybox.net/~landley/c99-draft.html
awk
http://www.dba86.com/docs/other/awk.html
sed
http://www.dba86.com/docs/other/sed.html
grep
http://www.dba86.com/docs/other/grep.html
rpm包
http://rpms.famillecollet.com/enterprise/
http://rpms.remirepo.net/enterprise/
http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
wget --mirror --convert-links --adjust-extension --page-requisites --retry-connrefused --exclude-directories=comments -U "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0" --execute robots=off http://xxxx.com
yum
dnf
https://dnf.readthedocs.io/en/latest/
站长工具
国内yum源
清华大学
http://mirrors.tuna.tsinghua.edu.cn
开源镜像站
开源社
阿里云
中国科技大学
网易
华为云
http://mirrors.huaweicloud.com
北京理工大学
浙江大学
上海交通大学
上海大学
Sohu
兰州大学
重庆大学
南京大学
https://sourceforge.net/p/forge/documentation/Yum%20Repo%20in%20File%20Release%20System/
国内公共DNS服务器地址
1.2.4.8
210.2.4.8
101.226.4.6(电信及移动)
123.125.81.6(联通)
OneDNS
112.124.47.27
OpenerDNS
42.120.21.30
BaiduDNS
180.76.76.76
360
101.226.4.5
aliDNS
223.5.5.5
223.6.6.6
114DNS
114.114.114.114
114.114.115.115
Dns派:电信/移动/铁通
101.226.4.6
218.30.118.6
南方电信
180.153.225.136
Dns派:联通
123.125.81.6
140.207.198.6
202.106.0.20
202.106.196.115
各种语言文档
编程语言排行
https://www.tiobe.com/tiobe-index/
java
https://www.ibm.com/developerworks/cn/java/j-introtojava1/index.html
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/_keywords.html
https://www.oracle.com/technetwork/cn/java/javase/documentation/index.html
maven
https://repo1.maven.org/maven2/
http://maven.outofmemory.cn/hot/
jar
https://www.findjar.com/index.x
c/c++
https://github.com/jobbole/awesome-c-cn
https://www.gnu.org/software/gnu-c-manual/gnu-c-manual.html
https://msdn.microsoft.com/zh-cn/library/cehk8f8b.aspx
https://visualstudio.microsoft.com/zh-hans/
python
https://www.python.org/downloads/
https://docs.python.org/zh-cn/3/reference/index.html
https://docs.python.org/zh-cn/3/tutorial/index.html
https://uwsgi-docs.readthedocs.io/en/latest/
https://uwsgi-docs-zh.readthedocs.io/zh_CN/latest/
https://www.cnblogs.com/linhaifeng/p/7278389.html
https://www.cnblogs.com/yuanchenqi/articles/5782764.html
https://www.cnblogs.com/Eva-J/articles/7074818.html
go
http://docs.studygolang.com/doc/
http://docscn.studygolang.com/doc/
json
http://www.json.org/json-zh.html
yaml
web语言
html
http://www.w3school.com.cn/tags/tag_html.asp
xml
http://www.w3school.com.cn/xml/index.asp
php
http://php.net/manual/zh/configure.about.php
程序员手册大全
其他
bootstrap
https://getbootstrap.com/docs/4.1/getting-started/introduction/
web服务器
https://w3techs.com/technologies/overview/web_server/all
nginx
https://docs.nginx.com/nginx/admin-guide/
httpd
tomcat
nodejs
在线文档
在线office
在线思维导图
https://www.mindmeister.com/zh
在线作图工具
在线markdown
文件转换(pdf)
在线教程
中国大学慕课--国内IT技能学习平台
地址:
学堂在线--国家精品课程在线学习平台
阿里云教程
https://www.aliyun.com/jiaocheng/
实验楼--做实验,学编程
地址:
菜鸟教程--提供各语言的入门教程
地址:
coursera--一流大学在线课程
优达学城--传授硅谷的官方课程
地址:
edx--大规模开放在线课堂平台
地址:
codecademy--在线编程学习
地址:
https://www.codecademy.com/zh/
IBM developerWorks--IT教程,工具,社区
https://www.ibm.com/developerworks/cn/
在线练习
1.国内平台
牛客网-专业IT笔试面试备考平台
地址:
赛码·IT面试笔试平台
地址:
2.国外平台
leetCode:
lintcode:
topcoder:
HackerRank:
在线工具箱
程序员的工具箱
地址:
开源中国的在线工具箱
地址:
在线编译器
Compiler Explorer--在线汇编查看
wandbox--支持多语言,多编译器版本的在线编译器
各种计算工具
技术论坛或社区
stackoverflow--全球最大IT技术问答网站
地址:
github--代码托管平台和开发者社区
地址:
Quora--国外在线问答网站,不限于IT
segmentfault--国内IT技术问答网站
地址:
博客园--开发者的网上家园
地址:
开源中国--开源技术社区
地址:
EV录屏
https://www.ieway.cn/evcapture.html
统计工具
http://alexa.chinaz.com/default.html
pwiki官网
windows相关
查看本地公网IP
curl ifconfig.me
curl cip.cc
curl icanhazip.com
curl ident.me
curl ipecho.net/plain
curl whatismyip.akamai.com
curl myip.dnsomatic.com
curl ip.appspot.com
time
各路大神博客
http://oldboy.blog.51cto.com/2561410
http://oldboy.blog.51cto.com/2561410/1862041
http://3060674.blog.51cto.com/
http://superleedo.blog.51cto.com/
http://lidao.blog.51cto.com/3388056/1914205
http://blog.itpub.net/7607759/
http://blog.chinaunix.net/uid/29075379.html
http://nolinux.blog.51cto.com/
http://ylw6006.blog.51cto.com/
http://legend2011.blog.51cto.com/
http://yuhongchun.blog.51cto.com/
http://linuxzkq.blog.51cto.com/
http://yueliangdao0608.blog.51cto.com/
http://www.cnblogs.com/goodcook/
http://liangweilinux.blog.51cto.com/
http://life2death.blog.51cto.com/
http://sgk2011.blog.51cto.com/
https://tech.meituan.com/mysql_index.html
WebSphere inurl "www.aliyun.com"
mac软件下载
声音
http://www.pingguodj.com/topic/show-1504-1.html
资源搜索
硬件
http://detail.zol.com.cn/server/dell/
电子书
http://dianzishu.renrensousuo.com
http://search.chongbuluo.com/#
语录
成也升级,败也升级
不更新是等死,更新是找死
#
数量级
Y 24 (10的24次幂)
Z 21
E 18
P 15
T 12
G 9
M 6
k 3
h 2
da 1
1 0
d -1
c -2
m -3
u -6
n -9
p -12
f -15
a -18
z -21
y -24