惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
GbyAI
GbyAI
I
InfoQ
C
Cisco Blogs
T
Tor Project blog
NISL@THU
NISL@THU
N
Netflix TechBlog - Medium
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
T
The Exploit Database - CXSecurity.com
H
Help Net Security
Cisco Talos Blog
Cisco Talos Blog
The Register - Security
The Register - Security
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
A
Arctic Wolf
Stack Overflow Blog
Stack Overflow Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
P
Palo Alto Networks Blog
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
P
Privacy International News Feed
L
LINUX DO - 热门话题
Know Your Adversary
Know Your Adversary
L
LangChain Blog
AWS News Blog
AWS News Blog
Security Latest
Security Latest
T
Threat Research - Cisco Blogs
U
Unit 42
P
Privacy & Cybersecurity Law Blog
Spread Privacy
Spread Privacy
WordPress大学
WordPress大学
Latest news
Latest news
L
Lohrmann on Cybersecurity
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Simon Willison's Weblog
Simon Willison's Weblog
雷峰网
雷峰网
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Y
Y Combinator Blog
S
SegmentFault 最新的问题
Recent Announcements
Recent Announcements
C
Cybersecurity and Infrastructure Security Agency CISA
Martin Fowler
Martin Fowler
S
Schneier on Security
C
CERT Recently Published Vulnerability Notes
B
Blog
Project Zero
Project Zero
Recorded Future
Recorded Future

博客园 - Huntercat

手机流媒体技术介绍--转载 两个标签:EpiData和Nginx solaris10 网络配置 Ubuntu 8.10 Server Apache + SVN + SSL配置 Ubuntu install process show "dpkg was interrupted,you must manually run dpkg --configure -a to correct the problem" Ubuntu 8.10 Server Edition桌面系统的安装 ubuntu8.04做PXE安装服务器 通过PXE安装LINUX操作系统 NX远程连接认证失败的原因及解决方法 Ubuntu使用技巧 Ubuntu下Reciteword的安装 SUN SL48磁带库总是离线的解决方案 Ubuntu下配置Telnet服务 Ubuntu下配置SSH服务 Ubuntu启动后死机 Xmanager远程连接Linux的配置 NX访问Ubuntu远程桌面配置 周末终于可以正常休息了 评估倒计时
Ubuntu下文件移动|复制|打包|解包|挂载iso小结
Huntercat · 2008-10-23 · via 博客园 - Huntercat

文件的移动和复制

由于linux对文件的管理有非常严格的机制,使得不能对当前用户没有权限的文件夹文件进行操作.所以想通过windows那样左键拖到目的文件夹上放开进行复制是不可以的(除非是HomeFolder这个相当于windows里面我的文档这个文件夹下面).

我目前所知:复制移动操作3个方法.

1.sudo nautilus 以root身份打开文件管理器

2.sudo cp源文件位置目标文件位置 (移动cp改成mv)

3. 试试鼠标中键拉一个文件去另外一个地方。

有个技巧:敲好sudocp后把要复制的文件或文件夹用左键拉到控制台窗口既可,会自动填写.

文件的打包和解包

解tar包

例:tar -xvzf gaim-0.77.tar.gz

tar-jxvf XXX.tar.bz2

生成tar包

例:tar cvf - /etc | gzip-9c > backup.tar.gz

生成rar包3

rara test.rar file1.txt

rara test.rar dir1

解rar包

rarx test.rar

解zip 包

unzip lumaqq_p3.zip

挂装一个iso 文件

mout -t iso9660 -o loop,iocharset=cp936 /data/myarc.iso/mnt/iso

除iso文件外,其他各类型压缩包均可以在图形界面下使用“压缩工具”进行管理。卸装iso文件

umout /mnt/iso

生成一个iso 文件

cp/dev/cdrom /home/gsh/TomJerry1.iso

摘自:http://www.soulward.cn/2008/02/linux-basic.html