ICode9

精准搜索请尝试: 精确搜索
  • csharp: Zip and Unzip files using GZipStream2022-08-23 13:01:10

        using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO.Compression; using System.IO; using System.Net; namespace ThreeJsDemo { /// <summary&

  • linux 压缩操作2022-07-16 13:01:38

    1、把/home目录下面的data目录压缩为data.zip zip -r data.zip data #压缩data目录 2、把/home目录下面的data.zip解压到databak目录里面 unzip data.zip -d databak 3、把/home目录下面的a文件夹和3.txt压缩成为a123.zip zip -r a123.zip a 3.txt 4、把/home目录下面的t.zip直接

  • 数据管理解压失败,提示压缩包损坏2022-07-13 18:34:30

    问题描述 提供的数据压缩后,可在本地(mac)通过unzip命令完成解压,但在服务器上执行同样命令总是提供失败 unzip -d 2>&1 'test11' 'set02.zip'     解决方案 一:建议客户通过以下方式检查压缩包数据是否正常 在linux服务器上执行下面命令解压校验: unzip -d 2>&1 '自定义文件夹' '

  • Linux unzip批量解压文件2022-06-25 19:32:59

    在终端中打开当前目录,然后输入如下命令: sudo unzip '*.zip' 参考资料: https://blog.csdn.net/jaye16/article/details/74978408

  • CentOS安装Oracle数据库-安装和配置【实践2】2022-06-02 10:02:21

    第4章  Oracle安装部署 4.1 准备工作 1、root用户登录,启动X系统   2、解压安装文件 切换到oracle用户解压安装文件 [root@DBSERV-01 ~]# su oracle [oracle@DBSERV-01 ~]$ unzip /tmp/LINUX.X64_193000_db_home.zip -d /orc/app/oarcle/src 如果系统没有安装 unzi

  • ubuntu18.04.1 安装unzip失败2022-04-20 12:02:51

    报错内容: root@ubuntu:~# apt install unzip Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package unzip 解决(root用户执行): apt-get update apt install unzip

  • paddle第十九期3天训练营3.21-day12022-03-21 23:02:50

    **step1:**进入BML主页,点击立即使用

  • Linux unzip 解压缩过大文件包问题2022-03-20 10:03:26

    1. 处理背景 Centos 7.5 minimal 版本 40G zip压缩包 zip压缩包过大,上传到linux系统再解压缩,zip报错。 2. 安装包 通过查找资料,可以通过安装 p7zip解决。但是测试环境联网状态也无法通过yum安装,找不到源包。考虑后期可能要在离线环境安装,所以这里下载离线包安装。 rpm包下载:

  • Redhat7.4-Python安装配置cx_Oracle2022-02-06 16:00:19

    上传必要包文件这里不做赘述。 [zhangsan@test2 ~]$ unzip instantclient-basic-linux.x64-11.2.0.4.0.zip -bash: unzip: 未找到命令[zhangsan@test2 ~]$ yum install -y unzip zip已加载插件:product-id, search-disabled-repos, subscription-manager[zhangsan@test2 ~]$ su - r

  • Linux压缩与解压2022-01-03 10:32:40

    Linux下解压缩不想Windows下那么方便,但实际工作中,打包与解包确实很常用的技能。所以熟练掌握很重要。 压缩与解压缩 gzip/gunzip指令 gzip命令对文件有60%~70%的压缩率。 gzip:用于压缩文件,压缩后文件格式为:xxx.gz 基本语法 gzip [选项] [源文件] 常用选项 参数 描述

  • 如何在centos 7上面安装jmeter2021-12-28 10:04:56

    安装之前需要几个环境,以下是列出的几个环境 CentOS 7.7 64位 JDK 1.8 JMeter 5.2  一、下载jmeter安装包           1:JMeter是开源的工具,安装 JMeter 要先安装好 JDK 的环境,安装JDK在前面的文章已经讲到              JMeter最新版下载地址:https://jmeter.apache.o

  • python压缩包笔记12.142021-12-15 12:31:10

         tar使用正则             压缩目录失败 zip选项                               一定unzip不要zip,列出内容,不写后缀没事          不包括最后一个  

  • 第四届美团杯UNZIP2021-12-12 12:02:35

    UNZIP 解压之后发现里面是0-9 A-Z的子文件夹 但是文件都是空,只有名字 看文件名都是数字 整理出来后整体是这样,还是没有太大思路,网上百度到一篇博客 1 15 18 26 3 6 9 36 B 29 C 33 D 27 E 21 F 23 G 14 H 4 J 12 22 34 L 16 32 M 2 13 30 R 31 35 T 7 U 20 V 19 28 W 10 24 X

  • 【无标题】2021-12-01 15:31:38

    虚拟机下载zip文件 wget https://cc.siat.ac.cn/networks/exp4-tshark_socket.zip --no-check-certificate 下载unzip sudo apt install unzip  下载python模块 apt install python3-pip  pip3 install tqdm 解压 unzip exp4-tshark_socket cd exp4-tshark_socket vim sendi

  • zip/unzip源代码的下载2021-11-15 19:30:00

    zip/unzip 源代码的下载与安装 步骤:下载连接 [zip/unzip ](https://sourceforge.net/projects/infozip/files/)编译安装 步骤: 1、下载 zip/unzip 的源码包 2、tar 解压 3、到解压好的文件夹里,把 ./unix/Makefile 拷到根目录 ./ 下,用 make generic 安装即可。 不知道大家

  • 记录几个常用命令2021-11-07 20:01:15

    zip -r test.zip ./*    #将当前目录下的所有文件和文件夹全部压缩成test.zip文件,-r表示递归压缩子目录下所有文件 unzip -n test.zip -d /tmp   #将压缩文件text.zip在指定目录/tmp下解压,如果已有相同的文件存在,要求unzip命令不覆盖原先的文件。 其它详见 

  • unzip命令2021-11-03 10:05:02

    unzip命令用于解压缩zip文件。   unzip的语法: unzip [-cflptuvz][-agCjLMnoqsVX][-P <密码>][.zip文件][文件][-d <目录>][-x <文件>] 或 unzip [-Z]    unzip的参数: -c 将解压缩的结果显示到屏幕上,并对字符做适当的转换。 -f 更新现有的文件。 -l 显示压缩文件内所包含的

  • centos7没有netstat,没有unzip命令,yum search使用,离线下载rpm包2021-10-27 10:02:04

    在日常操作linxu系统的时候难免遇到没有相关命令问题        -bash:unzip:command not found使用yum search +软件名或者关键字     //查找相关功能的包,然后下载如:[root@localhost ~]# [root@localhost ~]# [root@localhost ~]# yum search netstatLoaded plugins: fastes

  • Volvo 88890300 Vocom Interface Installation instructions2021-09-24 12:37:16

    This is installation instructions for Volvo 88890300 1.Unzip the files PTT-v1.12.260 Open the folder after unzipping Select setup to start the installation. When the installation is complete, select NO. 2.Unzip the files of VTT1.12-KG Open the vtt1.

  • 什么是unzip 命令?2021-09-19 10:02:37

        · 解压 *.zip 文件:unzip test.zip 。    · 查看 *.zip 文件的内容:unzip -l jasper.zip 。  

  • Linux下unzip乱码问题解决2021-09-16 13:34:56

    文章目录 1、问题描述2、解决方案2.1 直接安装unzip-iconv2.2 使用unzip解压 1、问题描述   是这样的,每次使用unzip指令解压文件的时候,总是出现乱码,今天在网上搜了相应的解决方案。大概是因为解码方式的问题 2、解决方案 这是我的linux信息 Linux manjaro 5.10.61-1-M

  • command zip/unzip2021-08-26 23:32:36

    zip/unzip 用来压缩和解压缩文件。 压缩 a.log b.log $touch {a..e}.log $ls a.log b.log c.log d.log e.log $zip test.zip a.log b.log adding: a.log (stored 0%) adding: b.log (stored 0%) $ls a.log b.log c.log d.log e.log test.zip 在test.zip里追加 c.l

  • Windows安装Linux虚拟机(CentOS7)2021-08-26 11:02:28

    一、在电脑上安装虚拟机,百度搜索vmware,下载后傻瓜式安装即可。 二、CentOS下载,阿里云镜像:http://mirrors.aliyun.com/centos/7/isos/x86_64/。我这边选择的是Minimal版,不需要界面的服务器版,最小化的系统。       三、安装: 1.打开VMware,在主页选项卡下点击创建新的虚拟机:

  • 在线网盘ZFile 安装2021-08-02 01:00:06

        安装 # CentOS系统 yum install -y java-1.8.0-openjdk unzip # Debian/Ubuntu系统 apt update apt install -y openjdk-8-jre-headless unzip 下载 wget -P ~ https://c.jun6.net/ZFILE/zfile-1.0.war cd ~ mkdir zfile && unzip zfile-1.0.war -d zfile &&

  • Linux 安装 zip unzip2021-07-16 17:33:19

    Linux 安装 zip unzip  1.apt-get 安装 apt-get install zip 2.yum 安装 yum install -y unzip zip 命令实例  1、把/home目录下面的mydata目录压缩为mydata.zip 1 cd /home    #进入/home目录zip -r mydata.zip mydata    #压缩mydata目录 2、把/home目录

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有