Category Archives: SYSTEM

Complete Guide to Install Zotero on Ubuntu 18.04

This tutorial explains how to download and install Zotero Bibliography Tool on Ubuntu 18.04 with web browser Firefox “Quantum”. The new Firefox “Quantum” (v57 and later) is the reason why Zotero changed to be stand-alone program with its own window outside of Firefox. You will download Zotero manually, extract and setup it on your desktop menu, and then integrating it with Firefox and LibreOffice Writer. The whole steps are easy to follow for anyone. Finally, enjoy Zotero and happy researching! Continue reading Complete Guide to Install Zotero on Ubuntu 18.04

文献管理 on ubuntu and iPad

Zotero是开源、跨平台的文献管理工具,可以方便的收集,组织,引用,和共享文献的工具。
官网:https://www.zotero.org/
Zotero过去只是Firefox浏览器下的一款扩展(add-on),现在已经有了桌面版。
Zotero源代码:https://github.com/zotero
Ubuntu安装Zotero桌面版:
$ sudo add-apt-repository ppa:smathot/cogscinl
$ sudo apt-get update
$ sudo apt-get install zotero-standalone
For iPad we have: PaperShip for Mendeley & Zotero

linux 检测远程端口是否打开

常用telnet 110.101.101.101 80方式测试远程主机端口是否打开。
除此之外还可以使用:
方法1.nmap ip -p port 测试端口
nmap ip 显示全部打开的端口
根据显示close/open确定端口是否打开。
方法2. nc -v host port
端口未打开返回状态为非0

Linux eCryptFS 加密文件和目录 1

eCrypFS是一个基于FUSE的用户空间加密文件系统,在Linux内核2.6.19及更高版本中可用(作为encryptfs模块)。eCryptFS加密的伪文件系统是挂载到当前文件系统顶部的。它可以很好地工作在EXT文件系统家族和其它文件系统如JFS、XFS、ReiserFS、Btrfs,甚至是NFS/CIFS共享文件系统上。Ubuntu使用eCryptFS作为加密其家目录的默认方法,ChromeOS也是。在eCryptFS底层,默认使用的是AES算法,但是它也支持其它算法,如blowfish、des3、cast5、cast6。如果你是通过手工创建eCryptFS设置,你可以选择其中一种算法。 Continue reading Linux eCryptFS 加密文件和目录 1