上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 121 下一页

2018年4月10日

Direct I/O,Synchronous I/O的概念和区别

摘要: Direct I/O概念: Direct I/O is a way to avoid entire caching layer in the kernel and send the I/O directly to the disk. 想要使用direct io的模式,可以这样做: Opens fil 阅读全文

posted @ 2018-04-10 11:28 中道学友 阅读(3384) 评论(0) 推荐(0) 编辑

2018年4月9日

如何查看Isilon的节点的CPU的信息?

摘要: 使用Isilon自带的命令isi_hw_status使用如下的命令dmidecode --type processor笔者只是想了解一下F800的CPU有多少个core。上面的命令都可以获得这个信息,当然后者更加直观一些。 阅读全文

posted @ 2018-04-09 18:18 中道学友 阅读(291) 评论(0) 推荐(0) 编辑

Groupnet, Subnet, IP Pool的概念

摘要: Groupnet是OneFS 8.0新引入的network object,专门为了服务Multi-Tenancy而创建,目的是让OneFS可以同时地处理多套网络配置。如果用户不需要使用multi-tenancy这个特性的话,就是用groupnet0就够了。DNS和其他的DNS的选项是groupnet的重要属性。建议为所需要的每一个不同的DNS的name space都创建一个groupnet。Acc... 阅读全文

posted @ 2018-04-09 13:54 中道学友 阅读(1310) 评论(0) 推荐(0) 编辑

2018年4月8日

在OneNote中快速插入当前日期和时间

摘要: 做笔记,难免有时需要记录当时的时间,记住这个快捷键会让记笔记的效率提升一点。To insert the current date and time, press Alt+Shift+F.To insert only the date, press Alt+Shift+D.To insert only the time, press Alt+Shift+T.在Ribbon上可以直接点击如下的按钮来添... 阅读全文

posted @ 2018-04-08 10:08 中道学友 阅读(851) 评论(0) 推荐(0) 编辑

2018年4月4日

如何查看Isilon节点的硬件信息?

摘要: Isilon节点虽然是一个Linux,但是很多linux下常用的命令都没有,比如说看内存的。笔者经过试验,列出了一些可用的命令。查看硬件状态isi_hw_status查看内存sysctl hw.physmem查看盘数isi devices list | grep "HEALTHY“查看盘的大小diskinfo –v da1查看前端网卡isi network interfaces list查看后端网... 阅读全文

posted @ 2018-04-04 17:56 中道学友 阅读(691) 评论(0) 推荐(0) 编辑

一个可用来记录Isilon各个节点的CPU,网络,磁盘性能的命令

摘要: 通过查看命令isi statistics system的帮助信息,拼出了下面的命令。isi statistics system list --nodes=all --degraded --format=table --output time,Node,CPU,NetIn,NetOut,DiskIn,DiskOut --no-header --no-footer --nohumanize --rep... 阅读全文

posted @ 2018-04-04 17:52 中道学友 阅读(329) 评论(0) 推荐(0) 编辑

2018年4月2日

Linux中如何查看文件夹的大小

摘要: 直接查看当前文件夹的大小: du –sh 只看文件夹的名字里包含某字符串的子文件夹的大小: du –h –d 1 | grep “BACKEND” 我的linux系统被阉割的比较厉害,并不像参考的文章里那么多开关。上面列出来的命令是我实测可以用的。 2019-01-29 补充内容 在Isilon的文 阅读全文

posted @ 2018-04-02 16:38 中道学友 阅读(704) 评论(0) 推荐(0) 编辑

如何同步两台Linux机器的时间?

摘要: 除了用NTP服务器之外,下面的命令可以做到让几台机器的时间都跟一台机器同步。date --set="$(ssh root@10.245.110.101 date)"参考资料===========how to sync time between two linux servershttp://blogs.perl.org/users/michael_li/2014/07/how-to-sync-ti... 阅读全文

posted @ 2018-04-02 14:27 中道学友 阅读(632) 评论(0) 推荐(0) 编辑

Linux中的硬链接(hard link)和符号连接(symbolic link)

摘要: Linux中包括两种链接:硬链接(hard link)和软链接(soft link),软链接又称为符号链接(symbolic link) 创建命令: ln -s destfile/directory softlink #建立软连接 ln destfile hardlink #建立硬连接 inode 阅读全文

posted @ 2018-04-02 10:27 中道学友 阅读(2125) 评论(0) 推荐(0) 编辑

2018年3月22日

在Cygwin里,如何进入到C盘?

摘要: 答:cd /cygdrive/c来源:How to navigate to a directory in C:\ with Cygwin?https://stackoverflow.com/questions/1850920/how-to-navigate-to-a-directory-in-c-with-cygwin 阅读全文

posted @ 2018-03-22 09:50 中道学友 阅读(308) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 121 下一页

导航

技术追求准确,态度积极向上