第3章 程序的机器级表示

3.2 程序编码 3.2.1 机器级代码 程序计数器(PC,在x86-64中用%rip表示):给出要执行的下一条指令在内存中的地址 整数寄存器:包含16个命名位置

第1章 计算机系统漫游

1.9.1 Amdahl’s law(阿姆达尔定律) 要想显著加速整个系统,必须提升全系统中相当大的部分的速度 若系统执行某应用程序需要时间为$T_{old}$。 假设系统

tomcat

编码问题 bin/catalina.bat 加入SET CATALINA_OPTS=-Dfile.encoding=UTF-8 conf/server.xml 在<Connector port="8080"...中加入 URIEncoding="UTF-8"

git - linux

服务端 1 2 3 4 5 #安装 yum -y install git # 添加仓库 git init --bare sample.git git bash客户端 1 2 3 4 5 6 7 8 #生成公钥 ssh-keygen #导入 ssh -p port root@host 'mkdir -p .ssh && cat >> ~/.ssh/authorized_keys' < ~/.ssh/id_rsa.pub # 下载 git clone --depth 1 --recursive