bzip2

Linux服务器维护人员常用的Shell脚本命令

老子叫甜甜 提交于 2020-03-02 02:19:50
文件操作 更改当前目录 cd 获取当前目录 pwd 删除文件/目录 rm -f or rm -rf or rmdir 创建文件 touch or cat > xxx 创建临时文件 mktemp testing.XXXXXX, 文件名末尾加6个X 创建临时目录 mktemp -d dir.XXXXXX, 目录名末尾加6个X 创建目录 mkdir 移动文件/文件重命名 mv 复制 cp 硬链接/软链接 ln or ln -s 显示文件列表 ls 实际搜索硬盘查询文件名称 find 别名 alias 查看文件所在路径 dirname 查看文件名(过滤路径) basename 查看可执行文件的位置 which 查看文件的位置 whereis 配合数据库查看文件位置 locate 文件查看 文件内容查看 cat 按页查看文件内容 more or less 查看文件前几行 head 查看文件后几行 tail 查看文件统计信息 stat 查看文件类型 file 文本编辑 字符流编辑器 sed 模式匹配的程序设计语言 awk and gawk 行编辑器 ed 排序 sort 编辑工具 vim or emacs 查询/统计 统计文件中数量 wc -c or wc -l or wc -w 计算行号 nl 搜索数据 grep 文件权限 系统用户 cat /etc/passwd or cat /etc

Linux 解压与压缩

萝らか妹 提交于 2020-02-27 15:21:35
Linux下有非常多的压缩打包方式,这些方式的打包解包等命令都有区别。 . tar 解包 : tar xvf FileName.tar 打包 : tar cvf FileName.tar f1 f2 dir1 ( tar是打包,不是压缩!) . gz 解压1: gunzip FileName.gz 解压2: gzip -d FileName.gz 压缩: gzip FileName . tar . gz /. tgz 解压: tar zxvf FileName.tar.gz 解压: tar zxf FileName.tar.gz – C /temp/ 解压至指定路径 压缩: tar zcvf FileName.tar.gz DirName . bz2 /. bz 解压1: bzip2 -d FileName.bz2 解压2: bunzip2 FileName.bz2 压缩: bzip2 -z FileName tar . bz2 / tar . bz 解压: tar jxvf FileName.tar.bz2 压缩: tar jcvf FileName.tar.bz2 DirName .Z 解压: uncompress FileName.Z 压缩: compress FileName . tar.Z 解压: tar Zxvf FileName.tar.Z 压缩: tar Zcvf

使用mysqldump跳过某些表

孤街醉人 提交于 2020-02-27 01:15:18
有没有办法从mysqldump命令限制某些表? 例如,我使用以下语法 只 转储table1和table2: mysqldump -u username -p database table1 table2 > database.sql 但是有没有类似的方法来转储 除 table1和table2 之外的 所有表? 我还没有在mysqldump文档中找到任何内容,那么brute-force(指定所有表名)是唯一的方法吗? #1楼 对于多个数据库: mysqldump -u user -p --ignore-table=db1.tbl1 --ignore-table=db2.tbl1 --databases db1 db2 .. #2楼 基于@Brian-Fisher的回答并回答了一些人对这篇文章的评论,我在我的数据库中有一堆巨大的(和不必要的)表,所以我想在复制时跳过它们的内容,但保留结构: mysqldump -h <host> -u <username> -p <schema> --no-data > db-structure.sql mysqldump -h <host> -u <username> -p <schema> --no-create-info --ignore-table=schema.table1 --ignore-table=schema.table2 > db

Keka for Mac(mac压缩解压利器) v1.2.5中文版

折月煮酒 提交于 2020-02-27 00:39:57
mac下好用的解压缩软件是哪个?Keka for Mac(压缩解压工具)推荐给您, keka for mac特别版是macOS系统上非常实用的压缩解压软件,基本可以满足mac os用户的日常解压缩需求,体积小,简单易用,速度较快,支持很多压缩格式。 Keka for Mac下载 https://www.macdown.com/mac/42.html Keka 是一款Mac上优秀的压缩解压缩工具,支持中文界面,支持压缩7Z, ZIP, TAR, GZIP, BZIP2等格式,解压缩7Z, ZIP, RAR, TAR, GZIP, BZIP2等格式,支持分卷和加密压缩,默认情况下,Keka会将档案放在与源文件相同的文件夹中,但通过Preferences窗口可以定义一个自定义输出位置,也就是选择偏好设置,或选择在每种情况下提示。使用后一个选项可能是明智的,因为您也可以选择将自定义名称添加到档案中。很不错! Keka 所支持的文件压缩格式:7Z, ZIP, TAR, GZIP, BZIP2, XZ, LZIP和ISO Keka 所支持的文件解压格式:7Z, ZIP, RAR, TAR, GZIP, BZIP2, XZ, LZIP, DMG, ISO, LZMA, EXE, CAB, WIM, PAX, JAR, APK, APPX, XPI, IPA, CPGZ, CPIO等等 来源:

编译python

邮差的信 提交于 2020-02-26 13:52:20
# centos 6.x yum install net-tools openssl-devel zlib-devel readline-devel sqlite-devel gcc which nss-devel libcurl-devel bzip2 zlib-devel # openssl curl -O https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz ./config shared zlib make make install # /usr/local/ssl # python 3.6 curl -O https://www.python.org/ftp/python/3.6.10/Python-3.6.10.tgz # edit Modules/Setup.dist _socket socketmodule.c SSL=/usr/local/ssl _ssl _ssl.c -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl -L$(SSL)/lib -lssl -lcrypto export LDFLAGS="-L/usr/local/ssl/lib/" export LD_LIBRARY_PATH="/usr/local/ssl/lib/"

linux压缩命令

馋奶兔 提交于 2020-02-26 02:05:43
把常用的tar解压命令总结 tar -c: 建立压缩档案 -x:解压 -t:查看内容 -r:向压缩归档文件末尾追加文件 -u:更新原压缩包中的文件 这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档案时可选的。 -z:有gzip属性的 -j:有bz2属性的 -Z:有compress属性的 -v:显示所有过程 -O:将文件解开到标准输出 下面的参数-f是必须的 -f: 使用档案名字,切记,这个参数是最后一个参数,后面只能接档案名。 # tar -cf all.tar *.jpg 这条命令是将所有.jpg的文件打成一个名为all.tar的包。-c是表示产生新的包,-f指定包的文件名。 # tar -rf all.tar *.gif 这条命令是将所有.gif的文件增加到all.tar的包里面去。-r是表示增加文件的意思。 # tar -uf all.tar logo.gif 这条命令是更新原来tar包all.tar中logo.gif文件,-u是表示更新文件的意思。 # tar -tf all.tar 这条命令是列出all.tar包中所有文件,-t是列出文件的意思 # tar -xf all.tar 这条命令是解出all.tar包中所有文件,-x是解开的意思 压缩 tar –cvf jpg.tar *.jpg

'bz2 is module not available' when installing Pandas with pip in python virtual environment

喜夏-厌秋 提交于 2020-01-25 08:41:05
问题 I am going through this post Numpy, Scipy, and Pandas - Oh My!, installing some python packages, but got stuck at the line for installing Pandas: pip install -e git+https://github.com/pydata/pandas#egg=pandas I changed 'wesm' to 'pydata' for the latest version, and the only other difference to the post is that I'm using pythonbrew. I found this post, related to the error, but where is the Makefile for bz2 mentioned in the answer? Is there another way to resolve this problem? Any help would be

zip lib (zlib, bzip2) and mono support

允我心安 提交于 2020-01-24 15:36:04
问题 Can you advise me zip lib witch support zib and bzip2 algorithm My requirements: Fully .net managed code Free Popular Can be used with mono Thanks for all. 回答1: Check out SharpZipLib. From the FAQ: What formats does SharpZipLib support? Sharpzip supports Zip files using both stored and deflate compression methods and also supports old (PKZIP 2.0) style and AES encryption, tar with GNU long filename extensions, gzip, zlib and raw deflate, as well as BZip2. Zip64 is supported while Deflate64 is

bz2 in javascript

南楼画角 提交于 2020-01-12 11:53:42
问题 Are there any javascript libraries that can take a byte array and bz2 decompress it into another byte array? I know that many browsers have this capability for an entire stream, but this array is at an offset from the start of the stream. 回答1: Yes. Here's ont for byte array: https://github.com/antimatter15/bzip2.js And for binary strings: https://github.com/kirilloid/bzip2-js 来源: https://stackoverflow.com/questions/9434613/bz2-in-javascript

bz2 in javascript

旧城冷巷雨未停 提交于 2020-01-12 11:51:32
问题 Are there any javascript libraries that can take a byte array and bz2 decompress it into another byte array? I know that many browsers have this capability for an entire stream, but this array is at an offset from the start of the stream. 回答1: Yes. Here's ont for byte array: https://github.com/antimatter15/bzip2.js And for binary strings: https://github.com/kirilloid/bzip2-js 来源: https://stackoverflow.com/questions/9434613/bz2-in-javascript