摘要: HPC APPLICATION SUPPORT FOR GPU COMPUTING HPC 对GPU计算的应用支持 AddisonSnell LauraSegervall Sponsored research report November 2017 EXECUTIVE SUMMARY 执行总结 在 阅读全文
posted @ 2020-06-08 21:49 ascertain 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-06 22:56 ascertain 阅读(146) 评论(0) 推荐(0) 编辑
摘要: systemd的登陆程序为systemd-logind.service,配置文件/etc/systemd/logind.conf DESCRIPTION systemd-logind is a system service that manages user logins. It is respon 阅读全文
posted @ 2020-06-06 19:27 ascertain 阅读(2460) 评论(0) 推荐(0) 编辑
摘要: linux内核/proc/sys/net/ipv4/conf中下面会有各网卡的配置参数其中arp_ignore和arp_annouce与arp相关 arp_ignore 取值为integer 0 (default) :reply for any local target IP address con 阅读全文
posted @ 2020-06-06 18:38 ascertain 阅读(1142) 评论(0) 推荐(0) 编辑
摘要: %attr(0777,root,root,-) %{_bindir}/* nginx Name: nginx Version: 1.19.0 Release: 1%{?dist} Summary: nginx rpm Group: System Environment/Daemons License 阅读全文
posted @ 2020-06-05 22:50 ascertain 阅读(421) 评论(0) 推荐(0) 编辑
摘要: --nodeps 忽略依赖 --force 即使覆盖属于其他包的文件也强制安装 --fresh upgrade packages if already installed 安装才升级,否则不升级 rpm2cpio xxx.rpm | cpio -idmv 会在当前目录下解压rpm包 rpm --ba 阅读全文
posted @ 2020-06-05 16:50 ascertain 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 常见的Linux发行版主要可以分为两类,类ReadHat系列和类Debian系列,这里我们是以其软件包的格式来划分的,这两类系统分别提供了自己的软件包管理系统和相应的工具。类RedHat系统中软件包的后缀是rpm;类Debian系统中软件包的后缀是deb。另一方面,类RedHat系统提供了同名的rp 阅读全文
posted @ 2020-06-05 16:49 ascertain 阅读(4739) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖包: [CentOS类系统] yum -y groupinstall "Development Tools" yum -y install ruby ruby-devel rubygems gcc openssl-devel 2.安装FPM: *添加淘宝的Ruby仓库 gem sourc 阅读全文
posted @ 2020-06-05 15:57 ascertain 阅读(361) 评论(0) 推荐(0) 编辑
摘要: fuser identify processes using files or sockets fuser displays the PIDs of processes using the specified files or file systems. In the default display 阅读全文
posted @ 2020-06-03 09:59 ascertain 阅读(288) 评论(0) 推荐(0) 编辑
摘要: lsof list open files Linux一切皆文件,通过文件不仅可以访问常规数据,还可以访问网络连接(套接字)和硬件,该文件描述符为应用程序与os之间提供了接口.lsof需访问各种特权文件,故需root运行 COMMAND contains the first nine characte 阅读全文
posted @ 2020-06-02 22:41 ascertain 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 我们使用RPM数据库(/var/lib/rpm)来比对rpm安装后的软件有无改动 rpm -qp --requires *.rpm query list capabilities required by package(s) rpm --verify -a 校验所有已安装的rpm包 rpm --ve 阅读全文
posted @ 2020-06-02 22:11 ascertain 阅读(256) 评论(0) 推荐(0) 编辑
摘要: /etc/inputrc定义了环境选项 set bell-stype none source /etc/inputrc 默认是注释的 阅读全文
posted @ 2020-06-02 21:39 ascertain 阅读(954) 评论(0) 推荐(0) 编辑
摘要: Infiniband Architecture(IBA)是一种网络通信协议,是为硬件实现而设计的,而TCP则是为软件实现而设计的,因此Infiniband是比TCP更轻的传输服务,不需要重新排序数据包,较低的链路层提供有序的数据包交付. Infiniband通过交换机在节点间直接创建一个私有的,受保 阅读全文
posted @ 2020-06-02 20:49 ascertain 阅读(883) 评论(0) 推荐(0) 编辑
摘要: 问题背景: 做WEB开发,经常要来来回回修改host文件进行域名解析,由于hosts文件没有文件类型后缀,所以每次都得指定打开方式并且系统无法保存这种操作行为。 解决方案: 通过文件属性直接为hosts文件指定目标编辑器即可: 1、桌面新建hosts快捷方式; 2、右键 > 属性 > 目标,将目标修 阅读全文
posted @ 2020-06-02 11:36 ascertain 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 1、找到chrome启动程序或者快捷方式; 2、右键找到 "目标": 将文本框内的默认命令: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" 修改为: "C:\Program Files (x86)\Google\Chrom 阅读全文
posted @ 2020-06-02 11:17 ascertain 阅读(888) 评论(0) 推荐(0) 编辑
摘要: RPM包括是使用cpio格式打包的,因此可以先转成cpio然后解压,如下所示:rpm2cpio xxx.rpm | cpio -div 解压了以后你会看到,实际上rpm包是这个程序所有的文件的集合,比如帮助文档,二进制程序,所依赖的库文件,而且解压后的主目录对应的就是linux系统根路径下的目录,比 阅读全文
posted @ 2020-06-01 10:46 ascertain 阅读(186) 评论(0) 推荐(0) 编辑
摘要: RAID: redundant arrays of independent disks 提高I/O能力 提供耐用性 RAID实现方式 外接式RAID:通过额外adapter 内置式:RAID:主板集成RAID控制器 Software RAID:软RAID,学习使用 RAID级别: 标准RAID: R 阅读全文
posted @ 2020-05-31 16:20 ascertain 阅读(430) 评论(0) 推荐(0) 编辑
摘要: Linux的任务计划分为两种 未来某时间点执行的单次任务 周期性执行的任务 at:单次计划任务 at [options] TIME TIME HH:MM [YYYY-mm-dd] -l 列出指定队列的计划任务 -d 删除计划任务 -c 查看具体作业任务作业的执行结果以邮件方式通知用户 cron:周期 阅读全文
posted @ 2020-05-30 23:10 ascertain 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 一、物理直连登陆过程 初始化进程init 会根据直接连接的字符终端设备,打开getty程序,并关联在字符终端设备上tty1/2/3/4/5/6/7....上,在不同的终端设备上提示用户输入信息,等待终端登陆 getty打开login 进程,0-1-2文件描述符关联到tty1上 login会读取用户信 阅读全文
posted @ 2020-05-29 20:54 ascertain 阅读(857) 评论(0) 推荐(0) 编辑
摘要: DNS and Bind Sockets: C/S: Client:发起应用请求的程序; Server:响应请求(提供服务)的程序; LISTEN: Socket 传输层协议: TCP, UDP, SCTP TCP: Transmission Control Protocol 面向连接的协议:双方通 阅读全文
posted @ 2020-05-29 18:38 ascertain 阅读(170) 评论(0) 推荐(0) 编辑