- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Basic Working difference between Windows Copy ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2010 12:33 AM
тАО10-20-2010 12:33 AM
Basic Working difference between Windows Copy and linux copy
Thanxs in Advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2010 07:15 AM
тАО10-20-2010 07:15 AM
Re: Basic Working difference between Windows Copy and linux copy
On the pure OS level, its not that different. Its just i/o at a certain block size.
What skews performance data however is the GUI windows has to support and work with. Linux overhead is lower so generally things like file copy will work more quickly. There are of course exceptions to every general rule.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2010 07:43 AM
тАО10-20-2010 07:43 AM
Re: Basic Working difference between Windows Copy and linux copy
Windows Explorer (aka File Manager or File Explorer) copies in the fashion of Copy/Cut and Paste could be similar to a Linux GUI aided copy (via Nautilus or KDE's File Manager or equiv).
On the Windows Command Line (aka DOS or CMD32/64) - you have COPY.EXE and XCOPY.EXE. On Linux Command Line - you have a "cp" which performs the functionaility of both COPY.EXE and XCOPY.EXE. You also have "dd" for copying large files and which could be faster as it can do Direct IO (cacheless wriets). Both cp, XCOPY/COPY.EXE likely use the same basic tenets of FileIO. For tree/recursive copies -- both likely uses arrays to recurse the copy and which could have the same limitations in dealing with so called gazillion nested trees.
So there ya go - basic working differences between the 2 platforms.
And Shalom.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2010 11:24 PM
тАО10-20-2010 11:24 PM
Re: Basic Working difference between Windows Copy and linux copy
things that make the difference are the filesystem used, the OS IO layer, which are ofcourse different and contribute to a difference in performance (but not in the actual copy process itself).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-22-2010 01:21 PM
тАО10-22-2010 01:21 PM
Re: Basic Working difference between Windows Copy and linux copy
:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-25-2010 04:36 AM
тАО10-25-2010 04:36 AM
Re: Basic Working difference between Windows Copy and linux copy
I dont think Windows Explorer (aka File Explorer)
copies" on windows use the same "primitives" as the DOS/CMD32/CMD64 - COPY.EXE or XCOPY.EXE.
Just like Nautilus or FIle manager on UNIX/Linux - GUI driven file copies could be different IMHO, I still remember my memory use increasing when using a GUI copy under Wndows or UNIX/Linux GUI. (the case of those gazillionm files and trees filesystems).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-24-2010 08:52 PM
тАО11-24-2010 08:52 PM
Re: Basic Working difference between Windows Copy and linux copy
If i am not wrong, windows will not check for free space available before copying data.
i am not sure...... :(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-06-2011 10:08 PM
тАО01-06-2011 10:08 PM
Re: Basic Working difference between Windows Copy and linux copy
Windows generally used to use the FAT file system , ie FAT file system is very easy to implement and understand. A windows disk looks like this (Taking the example of a floppy since it is the easiest to understand )
[Boot Block][Fat table1][Fat table2][Root Directory] [ Rest of Data]
The boot block is 512 bytes in length and should have a signature 0x55aa (remember intel x86 is little endian)
a boot sector would look some thing like things
org 0x7c00
jmp start
; BIOS Parameter block
start:
; enable a20 line
; set up a dummy gdt
; and enter protected
; read few clusters using bios 13 h service ( basically load the loader into memory)
; jump to the os loader code
times db 512-($-$$) 0 ; Pad rest of the bytes with zero
dw 0xaa55
BPB contains media related information. Each file has a entry in the root directory area called the directory entry. The directory entry in contains a field called the first cluster number
FatTable1[cluster_number] will give the next cluster number.
So to copy a file , you basically need to create a directory entry and set the fat table accordingly with new set of clusters containing the duplicate data of the first file :) .
Linux supports many file systems as long as you implement the vfs interface you can implement your own fs as well. Which FS are you talking about here ?
Truly Evil
Lucifer Megacruel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-07-2011 05:54 AM
тАО01-07-2011 05:54 AM
Re: Basic Working difference between Windows Copy and linux copy
Truly Evil.
Lol! ;^))
You made my day man!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2011 03:07 AM
тАО01-31-2011 03:07 AM