码迷,mamicode.com
首页 >  
搜索关键字:sersync sync    ( 4759个结果
GitHub生成密钥
GitHub生成密钥 在网上看到很多教程博客,都有在shell中生成密钥的工程,跟着操作了以下几步,再次publish,成功了,publish按钮也变成了sync。 1 打开桌面的那个 git shell 2 输入命令:cd ~/.ssh ,跳转到了.ssh目录 3 输入命令:ssh-keygen -t rsa -C “your_email@youremail.com” 最后你将看到(finger...
分类:其他好文   时间:2015-04-03 23:57:59    阅读次数:195
rsync+inotify++sersync
同步方法有很多种:scpnfssftphttpsambaNFS服务:1rsync+inotify2rsync+sersyncrsync的同步是基于文件的,固基于block的许采取其他方式rsync三种模式1、local同步拷贝:rsync-avz/etc/tmp/--cp-a/etc/tmp前者增量删除:rsync-avz--delete/data/null//tmp/就是让/tmp和/data/nul..
分类:其他好文   时间:2015-04-03 15:43:26    阅读次数:704
GCD的使用(一)
1.异步执行 dispatch_async(dispatch_get_global_queue(0,?0),?^{?????? //?something? }); 2.同步执行 dispatch_sync(dispatch_get_global_queue(0,?0),?^{?????? //?something? }); dispat...
分类:其他好文   时间:2015-04-02 16:52:58    阅读次数:126
linux下简单系统故障排除
系统简单故障排除1、bash程序故障:故障现象:bash程序文件损毁,导致系统开机后,无法进入bash控制台进行操作;解决方法:进入紧急救援模式,重新安装bash程序;[root@localhost~]#mv/bin/bash/tmp:模拟系统bash程序故障;[root@localhost~]#[root@localhost~]#sync[root@loc..
分类:系统相关   时间:2015-04-01 20:25:13    阅读次数:202
Ubuntu nfs配置
Ubuntunfs配置被挂载端(10.0.0.2):#apt-getinstallnfs-kernel-server#vi/etc/exports按a或i进入编辑模式/home10.0.0.3(rw,sync,no_subtree_check)(即只允许10.0.0.3挂载/home目录)按Esc键退出编辑模式:wq(保存并退出)#servicenfs-kernel-serverresart挂载端(10.0.0.3):#v..
分类:系统相关   时间:2015-04-01 20:10:56    阅读次数:196
快速掌握Redis——第七招:运维必学 主从和监控sentinel(未排版)
### 1 主从同步 Replication - 过程 slave 配置复制(Replication)策略后,会向master 主动发送一个SYNC命令。Master将启动后台存盘进程,同时收集所有接收到的用于修改数据集的命令,在后台进程执行完毕后,Mas...
分类:其他好文   时间:2015-03-31 20:37:06    阅读次数:217
ownCloud 开源私有云
未来属于私有云,好像有点道理,所有数据掌控在自己手里。ownCloud 是源自 KDE 的开源项目, 官方网站 https://www.owncloud.org “ownCloud is open source file sync and share software for everyon...
分类:其他好文   时间:2015-03-31 17:45:32    阅读次数:176
Rhel6-sersync配置文档
系统环境: rhel6 x86_64 iptables and selinux disabled主服务器: 192.168.122.160 server60.example.com目标服务器: 192.168.122.154 server54.example.com相关网址: http://code...
分类:其他好文   时间:2015-03-31 17:38:12    阅读次数:142
Linux下安装nfs服务器
1.安装nfs服务$sudoapt-getinstallnfs-kernel-serverportmap2.在配置文件/etc/exports中添加以下内容/home/jxhui/nfs_root*(rw,sync,no_root_squash);以后就可以通过网络文件系统访问/home/jxhui...
分类:系统相关   时间:2015-03-31 12:18:31    阅读次数:157
跨时钟域设计【二】——Fast to slow clock domain
跨时钟域设计中,对快时钟域的Trigger信号同步到慢时钟域,可以采用上面的电路实现,Verilog HDL设计如下:// Trigger signal sync, Fast clock domain to slow domainmodule Trig_CrossDomain_F2S (input ...
分类:其他好文   时间:2015-03-31 10:37:40    阅读次数:208
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!