-
centos7上挂载ntfs格式的u盘
#安装epel库yum --enablerepo=extras install epel-release#安装依赖包yum --enablerepo epel install ntfs-3g#挂载mount -t ntfs-3g /dev/sdb1 /mnt/usb…
-
直接在文件系统中将文件加入owncloud
#到occ命令目录cd /home/wwwroot/default/owncloud#www是用户sudo -u www php occ files:scan --all更多命令可以参考https://doc.owncloud.org/server/9.0/admin_manual/configuration_server/occ_command.html#file-operations-label…
-
多个github账号提交问题
此方法是基于ssh方式的,https方式还没有尝试成功创建ssh keyssh-keygen -t rsa -C "your-email-address"将文件保存为id_rsa_COMPANY的格式,并保存到~/.ssh/id_rsa_COMPANY把新的key加入到github上访问github,https://github.com/settings/keys,创建一个new ssh key,将id_rsa_COMPANY.pub的内容复制上去.返回终端,输入ssh-add ~/.ss...…
-
在GitHub上搭建个人博客
创建项目按照github pages页面的指引创建项目搭建本地环境jekyll依赖ruby环境安装完ruby环境后执行# Install Jekyll and Bundler gems through RubyGemsgem install jekyll bundler将github上的博客项目clone到本地git clone https://github.com/yaoandw/yaoandw.github.io.git下载模板下载地址: vno-jekyll下载完解压后把内容复制到项...…