码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下常用操作汇总

时间:2015-05-20 18:12:56      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

查看linux操作系统位数

(1)
终端输入:
file /sbin/init
如 显示:
/sbin/init: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped
即是32位的 linux, 如是64位的, 显示的是 64-bit

(2)
终端输入:
uname -a
如 显示:
Linux redhat-tj 2.6.18-128.el5 #1 SMP Wed Jan 21 10:44:23 EST 2009 i686 i686 i386 GNU/Linux
则是32位


(3)
终端输入:
getconf WORD_BIT
如 显示:
32
则是32位的linux

 

http://blog.chinaunix.net/uid-20423564-id-1949491.html

 

  Linux 常用的压缩命令有 gzip 和 zip,两种压缩包的结尾不同:zip 压缩的后文件是 *.zip ,而 gzip 压缩后的文件 *.gz 
相应的解压缩命令则是 gunzip 和 unzip 
查看zip中的内容而不解压缩:

unzip -v xx.zip


gzip 命令: 
# gzip test.txt 
它会将文件压缩为文件 test.txt.gz,原来的文件则没有了,解压缩也一样 

# gunzip test.txt.gz 
它会将文件解压缩为文件 test.txt,原来的文件则没有了,为了保留原有的文件,我们可以加上 -c 选项并利用 linux 的重定向 

# gzip -c test.txt > /root/test.gz 
这样不但可以将原有的文件保留,而且可以将压缩包放到任何目录中,解压缩也一样 

# gunzip -c /root/test.gz > ./test.txt 


zip 命令: 
# zip test.zip test.txt 
它会将 test.txt 文件压缩为 test.zip ,当然也可以指定压缩包的目录,例如 /root/test.zip 

# unzip test.zip 
它会默认将文件解压到当前目录,如果要解压到指定目录,可以加上 -d 选项 

# unzip test.zip -d /root/ 

 

参考: http://www.iteye.com/topic/1036348

 

Linux下常用操作汇总

标签:

原文地址:http://www.cnblogs.com/softidea/p/4517714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!