gnupg

Linux 查看文件占用磁盘空间

爱⌒轻易说出口 提交于 2020-08-10 11:58:51
今天下午,我想看看在运行此博客的服务器上剩余了多少磁盘空间。与 Unix / Linux 命令一样,在获得所需的信息后,我开始考虑其他处理方法。而且,就像平常一样,我学到了一些新东西。反正对我来说是新的。 首先,我登录服务器并运行 df命令: df -h . 输出总结了包含给定文件的文件系统的磁盘使用情况(在本例中,当前目录.为我的主目录)为 Filesystem Size Used Avail Use% Mounted on /dev/disk/by-label/DOROOT 25G 9.5G 14G 41% / 这表明我正在使用所支付的 25 GB 内存中的 41%。该-h选项告诉df输出使用 “人类” 格式,而不是以 “ 1-K 块” 显示用法,而是以千字节,兆字节和千兆字节显示。许多 GNU 实用程序都有一个-h以这种方式工作的选项。 磁盘使用情况包括虚拟服务器上的所有内容 - 除博客特定的文件之外的所有可执行文件,库和支持文件。我想对此进行优化,以查看该博客正在使用什么。那要求 du命令: du -hd 1 . 该-h选项再次表示 “人类格式的值”。该-d 1选项告诉du您只能进入一个目录级别。输出是 8.0K ./.gnupg 68K ./pagelogs 114M ./all-this 9.0M ./.local 116K ./php-markdown 1.5M ./

Centos7中使用7zip压缩工具

无人久伴 提交于 2020-07-26 10:42:39
7-Zip是一个支持7z(它实现了LZMA压缩算法,具有非常高的压缩比)、LZMA2、XZ、ZIP、Zip64、CAB、ARJ、GZIP、BZIP2、TAR、CPIO、RPM、ISO、大多数文件系统映像和DEB格式的文件归档器。RAR格式由于不是免费许可,已经被删除了。 环境 Centos 7.7 Minimal p7zip-16.02 安装 默认Centos7没有安装p7zip安装包,默认源里面也没有这个安装包,需要安装epel源才能安装p7zip安装包。 [root@localhost ~]# yum -y install epel-release [root@localhost ~]# yum -y install p7zip p7zip-plugins 使用方法 7z 命令 提供的函数字母与 命令 行选项类似,但使用时不使用 - 。这些参数字母告诉命令它需要执行的函数。 压缩文件 创建一个压缩包使用 a 参数 创建一个7z格式的压缩包: [root@localhost ~]# 7z a files.7z file1.txt file2.txt file3.txt file4.txt 7-Zip [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21 p7zip Version 16.02 (locale

Warning: gnupg::adddecryptkey(): get_key failed

怎甘沉沦 提交于 2020-06-16 04:13:25
问题 I am using gnupg php functions to decrypt a file. With the help of another post on here I managed to get it to list the keys ( gnupg_keyinfo ) by using gnupg_import and changing the owner of the gnupg directory and chmod permissions. I can also successfully encrypt a file using gnupg_encrypt . But when it comes to decrypting a file using gnupg_decrypt it doesn't work with an error message that reads: Warning: gnupg::adddecryptkey(): get_key failed This is the code I am using to encrypt and

GPG hangs on entropy generation

拜拜、爱过 提交于 2020-06-11 08:06:14
问题 While attempting to generate GPG keys (using gpg --gen-key), it may hang after emitting the message: Not enough random bytes available. Please do some other work to give the OS a chance to collect more entropy! (Need 278 more bytes) gpg (GnuPG) 1.4.16 Ubuntu 14.04.2 LTS 回答1: Although rng-tools will work, this is not suggested since it doesn't provide real entropy. See the discussion here: https://bugs.launchpad.net/ubuntu/+source/gnupg/+bug/706011 For users that are frustrated by this, here

How to encrypt a large dataset using python-gnupg without sucking up all the memory?

自闭症网瘾萝莉.ら 提交于 2020-05-13 14:28:07
问题 I have a very large text file on disk. Assume it is 1 GB or more. Also assume the data in this file has a \n character every 120 characters. I am using python-gnupg to encrypt on this file. Since the file is so large, I cannot read the entire file into memory at one time. However, the gnupg.encrypt() method that I'm using requires that I send in all the data at once -- not in chunks. So how can I encrypt the file without using up all my system memory? Here is some sample code: import gnupg

MD5和GPG

|▌冷眼眸甩不掉的悲伤 提交于 2020-04-29 22:11:59
信息摘要 MD5 [root@node-0001 ~]# echo dongxia > oschina1.txt [root@node-0001 ~]# md5sum oschina1.txt #查看校验值 c36d69f447d005e04a962e7f626146be oschina1.txt [root@node-0001 ~]# cp oschina1.txt oschina2.txt [root@node-0001 ~]# md5sum oschina* #查看两个文件 c36d69f447d005e04a962e7f626146be oschina1.txt c36d69f447d005e04a962e7f626146be oschina2.txt #复制的文件和原文件校验值相同 [root@node-0001 ~]# echo linux >> oschina1.txt #更改文件 [root@node-0001 ~]# md5sum oschina* c08075609fa5c6fdfe85c0e81e82e9f8 oschina1.txt #校验值改变 c36d69f447d005e04a962e7f626146be oschina2.txt GnuGP 最流行的数据加密 数据签名工具 官网 http://gnupg.org [root@node-0001 ~]#

在Windows下使用Gpg4win对文件进行完整性校验(PGP校验)

与世无争的帅哥 提交于 2020-04-12 20:13:37
下载GnuPG https://www.gnupg.org/download/index.en.html windows下载 Gpg4win https://www.gpg4win.org/download.html 安装基本上是傻瓜式,不用多说 cd切换到要校验的目录,文件和asc文件(签名文件)位于同一目录 如python3.5.1需要python-3.5.1.exe和python-3.5.1.exe.asc这两个文件 首次校验,获取RSA key ID >gpg --verify python-3.5.1.exe.asc gpg: assuming signed data in 'python-3.5.1.exe' gpg: Signature made 12/08/15 05:59:22 中国标准时间 using RSA key ID 487034E5 gpg: Can't check signature: No public key 这一步可以看到RSA key ID为487034E5,由于没有公钥,所以我们无法检查签名 下一步我们要通过一些公钥服务器下载公钥。命令指定公钥服务器为hkp://pool.sks-keyservers.net,要下载的ID为487034E5 >gpg --keyserver hkp://pool.sks-keyservers.net -

iTOP-3399开发板搭建Android编译坏境

纵然是瞬间 提交于 2020-02-27 20:36:26
基于迅为iTOP-3399 开发板 2.1 装 安装 d android 源码依赖包 登录进 Ubuntu 系统,输入“ctrl+alt+t”,打开超级终端,使用“su root” 命令 ,切换到 root 用户,如下图: 2.1.1 安装 JDK Android8.1 系统编译依赖于 JAVA 8。编译之前需安装 OpenJDK。安装命令 如下: sudo apt-get install openjdk-8-jdk 执行结果,如下图: 2.1.2 装 安装 d android 源码依赖包 使用如下命令安装所需的软件包: sudo apt-get update sudo apt-get install git-core gnupg flex bison gpe RF libsdl1.2-dev libwxgtk3.0-dev build-essen ti alzip curl zlib1g-dev gcc-multilib g++-multilib genromfs libc6-dev-i386 libncurses5-devx11proto-core-dev libx11-dev ccache libgl1-mesa-dev libxml2-utils xsltproc unzip lsb-corelib32z1-dev lib32ncurses5-dev texinfo

can't use gpg-agent as an ssh agent

限于喜欢 提交于 2020-02-20 11:38:58
问题 I've been trying to get gpg-agent to work as an ssh agent, but without any luck. I'm running the KDE version of Linux Mint (Sarah). First, I disabled the built-in ssh agent in /etc/X11/Xsession.options: # $Id: Xsession.options 189 2005-06-11 00:04:27Z branden $ # # configuration options for /etc/X11/Xsession # See Xsession.options(5) for an explanation of the available options. allow-failsafe allow-user-resources allow-user-xsession #use-ssh-agent use-session-dbus Then, I enabled the ssh