General :: Fast Copying Data From One Location To Other?

Apr 6, 2010

Is there any windows equivalent tools (like tera copy, Fast copy in windows) for linux for fast copying data from one location to other?

View 1 Replies


ADVERTISEMENT

General :: Resuming Running Process Like Yes A,vim A,copying Data

Jan 22, 2010

resuming the any running process like yes a,vim a,copying data etc) via any terminalkill fg,bg at some instances kill -STOP pid,kill -CONT pid .

View 2 Replies View Related

Ubuntu :: Copying All Files In Folder To Another Location?

Feb 21, 2011

suppose I have a tree structure like this:

/home/mahmood/sim/a/b/file1.cpp
/home/mahmood/sim/a/b/file2.h
/home/mahmood/sim/a/c/file3.txt
/home/mahmood/sim/d/file4.txt

How can I copy all of them to /home/mahmood/sim. So that when I run "ls" in /home/mahmood/sim, I see all files:

file1.cpp
file2.h
file3.txt
file4.txt

Can 'cp' search for all file and copy them in another folder?

View 2 Replies View Related

Software :: Script For Copying Files From One Location To Another?

Feb 10, 2010

I'm working on a little bash script for copying files from one location to another, while sending the verbose output of cp to a text file.

how can I append a time stamp to the verbose lines in the log file.

The command:

Code:
cp -fRcp dir1/* dir2/ >> log/$(date +%y-%m-%d)_log.txt

Again, I want to know how I make the time stamp appear in front of the line inside of the log.txt.

View 3 Replies View Related

Installation :: Running SLAX From RAM (Fast Access To Data)

May 14, 2009

Before the other day, I'd copied a live CD to ramdisk and run it from there before, but the disk was INX (INX is not X), a live CD based on Ubuntu that runs entirely in the text mode, no GUI. INX is a terrific product: colorful, educational, light, agile, fun to use, and and often damned useful, but when an OS only uses text, you may not notice how much running from the RAM speeds up an OS. Previously, I'd assumed that the best reason to run a Live CD from the RAM was to free up the CD ROM drive. When I started running a full KDE 3.5.10 Desktop from the RAM, it didn't take me long to notice the awesome boost in speed and performance.

The computer has the fastest access to the data that's in the RAM. (The "A" in "RAM" stands for "access", right?) So the machine is faster. As the RAM gets larger, I'm sure more and more live CDs are going to offer the RAMdisk option. Right now both INX and SLAX share the characteristic of being exceptionally small CDs, and that makes them well suited for this kind of application. The "minimal" version of Slax, the basic CD without any modules added, is less than 200 mbs, which fits very nicely on my 1024MB RAM. I now use the minimal SLAX cd to initiate the system, and I keep a collection of the modules on my hard drive to copy to the RAM and activate at will.

Here's a couple of screenshots: [URL] I'm using Wine here to run my one and only favorite Windows program, a text to speech program called READ PLEASE. Note that I am also running KTorrent, which is uploading from and downloading to my external MyBook hard drive. [URL]. Here's a shot of yakuake, which is sort of like Konsole with superpowers. I just upgraded my hard drive KDE system to 4.2.3, and they still haven't fixed Yakuake yet. I know it's been reported, so I'm sure it'll be taken care of.

View 5 Replies View Related

Programming :: Saving File Data Using Python In An Embedded System In An Safe And Fast Way?

Apr 19, 2011

I am developing a program in a system where the Linux does not take care of the sync command automatically. So I have to run it from my application always I save some data in the disk, which in my case is a 2GB sdcard. It is true that I can make the operation system takes care of the syncronization, using a proper mount option, but in this case the programm's performance drops drastically. In particular I use the shelve module from Python to save data that comes from a socket/TCP connection and I have to deal with the potencial risk of the system being turned off suddenly Initially I wrote something like that to save data using shelve:

Code:

def saveData(vo)
fd = shelve.open( 'fileName' , 'c')
fd[ key ] = vo
fd.close()
os.system("sync")

But that takes too much time to save the data. Note that I use the sync from the OS every time I close a file to prevent data corruption in the case of the "computer" being turned off with data even in the buffer. To improve the performance I made something like that:

Code:

def saveListData( list )
fd = shelve.open('file_name', 'c')
for itemVo in list:
fd[itemVo.key] = itemVo
fd.close()
os.system("sync")

Thus, first I saved an amount of objects in a list then I open the file and save the objects. In this way I have to open the file just one time to save a lot of objects.However I would like to know if adding a lot of objects before closing the file would increase the risk of data corruption.I known that turning off the system after fd.close() and before os.sync may cause problems. But what about turning off the system after

Code:

fd = shelve.open('file_name', 'c')

but before fd.close()?

View 7 Replies View Related

Fedora :: 13 Copying Data Very Slowly To External HDD?

Jun 23, 2010

I have Western Digital 1 TB external HDD. I had slackware 13 and it could copy data to it with speed around 30 MB/s (copy from machine to HDD) and it was cool. It's usb 2.0 as KInfoCenter says. But now in fedora 13, it's like 1 MB/s or even less (KInfoCenter still says usb 2.0). Any special mount option to set in fuseblk to speed it up? I mean something like blksize or like that?

Code:

/dev/sdc1 on /media/My Book type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)

View 4 Replies View Related

Fedora :: Copying CDs / DVDs (Video And Data) In Raw Mode

Dec 10, 2009

I'm trying to find out which application will copy DVD discs (video and data) in raw mode. Something that works for DVDs like cdrdao works for CDs. I tried using cdrdao but it errors out because the DVD disc is too big for it. I tried looking at Brasero but I can't tell if it offers a raw option. I see that Brasero lets you copy a DVD to a RAW image, then burn the RAW image back to a DVD-R. If Brasero uses RAW mode to do a direct copy, this would essentially do the same thing, but I can't tell if that is what it does. But, I think this will work.

View 3 Replies View Related

Ubuntu :: Everything Freezes When Copying Large Amount Of Data?

May 20, 2010

Well, when I copy large amount of data the other applications than Nautilus freezes until the copy is done...

So, what can I do? Because when backuping some data this is really annoying =/

View 6 Replies View Related

Programming :: Copying Data To Clipboard Using OSF/Motif, C++, And XRT Table?

Dec 23, 2010

I am working on an application in Motif and C++, which uses an XRT Table. With the XRT Table being an infrequently used product, it is hard to find good documentation on it, and one area in particular is sorely lacking... a good explanation on how to copy text from the table to the clipboard used by other X11 applications. I've come across an example application that demonstrates how to copy text to the clipboard, but I cannot seem to merge that knowledge with what I'm provided with the XRT Table API. Does anyone have any knowledge in using the XRT Table, and in particular, with copying selected fields within the table to the clipboard?

View 3 Replies View Related

CentOS 5 :: 5.3 Hangs While Remotely Copying Data Onto Server?

Jan 25, 2010

Problem : centos 5.3 hangs while remotely copying data onto this server.

I have A centos 5.3 x86 Version installed on Xeon Quad core , running on 8 GB DDR2 RAM, RAID 1 confgured on SATA drives. this was old installation copy and It has many more things running on it.Therfore, I can't just reinstall it.

I have setup SAMBA PDC + ldap on it. I encounter that system hangs when I copy data into this server from LAN computers.

My troubleshooting steps :

1. I have checked for network issue , My network works fine when I transfer data between other LAN compuers.

2. Even I have tried confguring seprate LAN....

3. I thought their might be some problem with my SAMBA configuration, therefore I did data transfer from sftp .

View 3 Replies View Related

Programming :: Bash / Perl : Copying Data From A CD/DVD To Hard Drive?

May 4, 2010

Seeking a decent Perl or Bash script or hack used to copy data from a CD/DVD to local or even remote hard drive/storage.

View 7 Replies View Related

Software :: Using Shotwell To Add Location Data To Images?

May 15, 2011

I am starting to use Shotwell for my photo management in lieu of DigiKam. One tool that I liked in DigiKam which does not seem to be present in Shotwell is the ability to add/edit geolocation data. Is there anyway of working with geolocation data from within Shotwell?

View 4 Replies View Related

Software :: Writing Data Into A Memory Location?

Feb 1, 2010

I am using ARM9(S3C2440) board in which linux kernel 2.6.30.4 is ported and i need to write some 8-bit data(say 0xAA) into the memory location 0x08000000 and i need to trace the data written into the location is correct or not how to do this in linux.

View 3 Replies View Related

Fedora :: Copying Data From A (western Digital) Usb Drive (ntfs Partition)?

Feb 20, 2009

I'm actually not a Linux newbie, but I'm DEFINITELY no expert either... I'm trying to copy all my data(approx 50 GB) from a usb drive(western digital 250GB) with ntfs partition in one go... The problem is that it only fails for big transfers... works fine for smaller transfers like 1Gigs or less... I have just one internal hdd partitioned into two ext3 partitions.. so I have sda1(Primary.. mount pt /), sda2(swap) and sda3(mount pt /piyush)... The usb drive comes up as sdb(sdb1).. just has one ntfs partition... I've also installed the ntf-3g drivers.... but doesn't seem to work... I've also noticed that when the machine hangs and I try to shut down, it fails and I get a message again again... (sdb1- no sense detected) or something like this... don't remember the exact message... will post the exact one if no one is able to figure out what's wrong...

View 4 Replies View Related

Ubuntu Installation :: Copying Data Setup Tells About An Input/Output Error?

Dec 20, 2010

I want to install Xubuntu 10.10 x64, but it does not work. While copying data the setup tells me about an Input/Output error, but i don't think there are hardware errors.

The environment:

AMD Phenom II 1055t 6x2,8 Ghz
2x 2gb ram
Hitachi 1TB hard drive
Two partitions: 1st for Windows 7 Ultimate (NTFS), 2nd for my Data (NTFS)

So I decreased the size of the data partition and created two new partitions beside the Win7 partition and the data partition. The first is ext4-journal (20gb) the second is Swap (4gb). I've done that all by the Xubuntu setup.

I've downloaded the image from the german mirror (TU Chemniz) and checked the integrety via SHA1. Checksum was correct. I also checked the data after burning.

View 4 Replies View Related

Ubuntu :: Change Data On Location? System Time Always Wrong On Re-boot

Mar 30, 2011

when I installed Ubuntu 9.10 I put in one time setting but it was wrong, and now I don't know where to change it. I tried to change the time preferences, but on reboot I am back to the wrong time.

I know the data is in there somewhere and I can change if I knew where it was.

View 3 Replies View Related

Ubuntu Servers :: How To Change Mysql Data Directory Location In Lampp

Aug 23, 2011

I use dual boot with windos 7. i use xampp in win7. want to use lampp for ubuntu 10.04. i want to use one local server directoy for both . i successfuly changed htdocs location in lampp. but could not change mysql data directory location.

View 4 Replies View Related

Ubuntu :: Copying Lots And Lots Of Data (and Preserving Emblems)?

Oct 26, 2010

I am currently in the process of moving around 20TB of data from one server to another. Security is not a concern, since the data are freely available to anyone on our network anyway. There are a couple of things that I'm trying to decide on:

(1) protocol choice

Of all the choices I have--nfs, ftp, scp, rsync, samba--has anyone done any benchmarking to show which would be the fastest/most robust transfer protocol? I know nfs has slow write speeds for synchronous transfers. Asynchronous would be faster, but less robust. I'm leaning toward rsync since it performs md5sums to confirm the file transfers. (Remember if there's a 1 in a billion chance that a byte will get corrupted, then I'll have 20,000 corrupt bytes in the transfer.)

(2) Nautilus emblems

We use emblems in Nautilus to categorize files. The old and the new server have the same directory structure.Is there any way to copy the Nautilus emblems from the old server to the new server. What I want is that if a user had marked a particular file with a star on the old server, then that file would be marked with a star on the new server when he/she logs in.

View 1 Replies View Related

Ubuntu Networking :: Wifi Is Fast Then Slow Then Fast Then Slow Connect Disconnect ?

May 7, 2010

My wireless seems to be fast for a good 30secs then bang takes good while to load the next page almost as if it's disconnecting and then reconnecting/scanning reconnecting. Why cant it stay connected. I have WAP PSK security here is my network setting please let me know if I should change any of them:(side not is there a way to fix this problem occuring so frequently it says on the wiki that it should only occur once in a whilce https:[url].....

View 2 Replies View Related

Ubuntu :: OpenMotif : Create Network Location Link As Local Filesystem Location?

Apr 26, 2011

I'm working with a program that uses Open Motif to create all of the widgets, including the Open File dialog box (obviously). However, Open Motif being kinda old-timey, 80's vintage, and for the most part now an abandoned project, it is quite clunky. So, actually what I need to do is to open some files located on my work server. I have already successfully connected to the relevant server directories with Samba, and with programs built with GTK+ (such as GIMP) I can open files across the network because I have created a bookmark in Nautilus, and those bookmarks appear in the Open File dialog box created by GTK+. Now, Open Motif is different: it doesn't see network locations, orNautilus shortcuts. When I type "smb://serveripyadayada" in the search folder, it really doesn't like it and complains. So, what do I do? Can I get somehow Open Motif to open a network location? Or can I do a run-around and place a shortcut in the file system that points to the network location?

View 2 Replies View Related

OpenSUSE Install :: Respawning Too Fast - Error: "Respawning Too Fast - Disabled For 5 Min" Freeze

Dec 12, 2009

Installing 11.2 from KDE LiveCD on an IBM ThinkCenter with 3.2Gb CPU and 1Gb RAM. Ubuntu 9.04 on first two partitions. I go through the configuration, click to 'install': Install display bars remain blank. After 2-3 minutes, black screen with scroll of attempted installation pieces and the error message: "Respawning too fast. Disabled for 5 min." Freeze.

Other posts mention problem with init. But this is happening with the install so not able to address that. No apparent md5chksum for LiveCDs. No mention of this problem in installation help guide. Does anyone know how to deal with this? If you need more info, I will provide. Though it seems this is not an unusual problem when booting an installed system, there's no mention of it happening during installation.

View 6 Replies View Related

Ubuntu :: Nautilus Location Bar: How To Write Manually Location

Oct 30, 2010

I have been testing ubuntu 10.10 maverick, it has some nice features. Anyway I am missing the possibility of writing manually the folder you want to go on nautilus using the Location bar. It was used to have some kind of icon which you can click and it switched between graphich breadcrumbs or the location of the folder and you could changed it manually, you know what I mean?

View 2 Replies View Related

General :: Fast Change Directory For The Cli?

Jun 29, 2010

In the old days of M$-DOS, there was the NCD (Norton Change Directory) utility. Anything of the sort in Linux?Explanatory note: you typed out the name of the directory you wanted to go to, that is, last element of the dir path.And you were, ipso facto, in that dir. If that was the only one by that name, good. When not, and if that wasn't the intended dir, you typed the same command again and you were in a second dir of that name. If this was the intended dir, good. And so on. It simply maintained a data base with the whole tree, and updated it when invoked from a newly created dir o by means of an option, NCD/R.

View 14 Replies View Related

General :: Fast Way To Become Master In System?

Nov 5, 2010

I came across Linux in university syllabus and quite loved it.Hope I will get to learn here Linux. How to become master in Linux can some body suggest some fast ways to do the same?I want to learn Linux Very fast.

View 14 Replies View Related

General :: SH: Erasing Fast A Cdrom ?

Jun 23, 2011

To do that:

Code:

But -blank=fast makes it really faster? Visibly not so much, right?

View 3 Replies View Related

General :: Mount: /dev/mapper/gegevens-Data Already Mounted Or /data Busy

Jul 14, 2010

A few months ago I have setup a server with three hard disks. The partition mapping the disks as follows:

Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x7ca36fee

[code]....

Now I have the following problem the LVM file system don't mount properly.If I open the mount point I see only a few files of the LVM disk. If I want to unmount the disk I get the following error:

umount /data/
umount: /data/: not mounted

If I want to mount the volume I get the following error:

mount -a
mount: /dev/mapper/gegevens-Data already mounted or /data busy

View 3 Replies View Related

General :: Get A Fast Free Unix Native On A Mac Pro?

Oct 22, 2010

I am interested in running Linux on my Mac Pro (8-core, 24 GB RAM).

What are the main caveats one should expect? Can all hardware be used natively after booting, say Linux or FreebSD?
Does Solaris run on this type of machine?

My use case is mostly Mail, instant messaging, web browsing and network simulation (hence this machine) and I value interactivity under full system load the most. How is interactivity under full load in Linux? My experiences with Debian "lenny" showed delays when task switching of up to 1.5 seconds. May I should look at FreeBSD?

View 3 Replies View Related

General :: Command Line - Looking For A Fast CLI Distro?

Apr 26, 2011

I'm looking for a fast Linux distro to put on a USB key. The goal is to be able to boot in as few seconds as possible, with just enough to mount a hard drive and do some basic operations in there (bash would be enough).

I do need:
x86 and x86_64 support
EXT2/3 and NTFS mounting capabilities (read & write)

Networking support (/etc/network/ config is fine, no need for detection) Bash (another shell would also work, but I would have to modify some of my scripts I would prefer if I didn't to have to build these programs for the selected distro, but that's always an option. I do not need:

X, or any form of GUI
more languages (english is enough)
anything not mentioned

I don't care about the size on the USB key, but the bigger it is, the longer it will take to load. My research pointed me towards these distros, but I not sure which one to choose:

ttylinux
Tiny Core Linux
tomsrtbt (doesn't look maintained anymore)

I also found these tools I could use to build my own distro (as a last resort)

View 6 Replies View Related

General :: Choosing A Fast And Powerful Distro?

Feb 4, 2011

I've been using linux for a while (various distros) but somehow they dissapointed me. I know what I'm looking for, a lightweight, fast, minimalist but customizable enough, with no specific graphical environment, bleeding edge distro for a new laptop (used for studying and surfing internet), that hopefully works with my hardware.

I want to have the possibility to compile from source to make my own changes but also to install from binaries easily. I'm not a linux expert, not even an advanced user but I'm willing to learn anything to get my distro running so I'm not looking for a full out of the box distro. It would be great if this distro also had a good community.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved