The time now is Fri 06 Dec 2019, 13:56
All times are UTC - 4 |
Author |
Message |
neerajkolte

Joined: 10 Feb 2014 Posts: 517 Location: Pune, India.
|
Posted: Fri 08 Aug 2014, 22:37 Post subject:
|
|
nic007 wrote: | Why do you reckon sda1 or sda5 are folders and not partitions? Strange | I think he just meant Everything is a file on Linux.
I don't know why SFR's app doesn't copy to root of partition. I haven't used it.
But logic says, once mounted a partition is just another folder.
Hope I am right (I am still learning Linux).
Thanks.
- Neeraj.
_________________ "One of my most productive days was throwing away 1000 lines of code."
- Ken Thompson
“We tend to overestimate the effect of a technology in the short run and underestimate the effect in the long run.”
- Amara’s Law.
|
Back to top
|
|
 |
SFR

Joined: 26 Oct 2011 Posts: 1749
|
Posted: Sat 09 Aug 2014, 12:46 Post subject:
|
|
Ok, I feel obliged to sort things out.
MochiMoppel is right - with MultiCopyPaste you can paste stuff into the root of any partition.
The only inaccessible place if the root of the entire filesystem (/).
An example:
nic007 wrote: | Anyhow, you can't copy to the root directory of /mnt/home |
Let's say you have ROX-Filer's window already opened in /mnt/home.
Now simply click the up arrow, which will bring you to the parent (/mnt) directory.
At this point you can right-click home symlink and choose "Multi-Paste" action.
The same goes to other partitions like sda1, sdc5 etc.
To recap: if you need to copy something into the directory where you currently in, just move one level up (up arrow) and right-click that directory.
Hope it's clearer now...
PS. @Don: sorry for kinda hijacking your thread.
Greetings!
_________________ [O]bdurate [R]ules [D]estroy [E]nthusiastic [R]ebels => [C]reative [H]umans [A]lways [O]pen [S]ource
Omnia mea mecum porto.
|
Back to top
|
|
 |
Flash
Official Dog Handler

Joined: 04 May 2005 Posts: 13387 Location: Arizona USA
|
Posted: Wed 13 Aug 2014, 11:14 Post subject:
|
|
MochiMoppel wrote: | Flash wrote: | Pardon my stupid question, but why not just highlight the files you want to copy, then drag them to the folder where you want them? | Actually a good question, which keeps me wondering why you use a tool like CopyFast? Or is your copy order problem the only reason to use it? | Actually, yes. Drag-and-drop in ROX works fine for everything else. Sorry it took so long to reply. I was busy.
Quote: | I've seen you mentioning this problems a couple of times, but I was never able to reproduce it. I use a mp3 player myself which insists on playing tracks in the copy order, not alphabetical order (the company regarded this as a bug and offered a patch, which I will never ever install since the copy order makes so much more sense), but I had never problems to copy in the order I choose. | Well there you go then, you know what I mean. However I don't understand what you meant by that last sentence. How do you choose the copy order?
Quote: | Maybe you can revive your still unsolved ancient post and give a reproducible example.
| Thanks for reminding me about that thread.
If you have an mp3 player that plays files in the order they were loaded, then all you have to do is find a folder that contains a large number of mp3 files numbered in sequential order (at least a hundred I would guess, though I've never tried to find the fewest number that will cause the problem) and drag it into the mp3 player, in ROX. Pay close attention to the order in which ROX transfers the files and you will probably see that it does not follow their number sequence from first to last.
Quote: | Quote: | The visual drag-and-drop method has the advantage of reducing the likelihood of mistakes caused by fat fingered typing | Typing? Where do you see typing involved in any of the other methods? | Using a command-line program, I have to type in paths, directory names, etc. Also, if those directory names contain spaces, I have to remember to deal with that. It's slow, tedious work and I often make mistakes. Point-and-click or drag-and-drop, where feasible, is way more accurate for me.
|
Back to top
|
|
 |
MochiMoppel

Joined: 26 Jan 2011 Posts: 1937 Location: Japan
|
Posted: Thu 14 Aug 2014, 23:44 Post subject:
|
|
Flash wrote: | I don't understand what you meant by that last sentence. How do you choose the copy order? | For normal files this should be obvious: I copy them in the order I require. If the ROX sort order is what I need, I select all and copy them over, if not, then I have to copy one by one. But I assume that you refer to folders. To make sure that the folder and its content is copied in a specific order, I have to make sure the files were written to the folder in the desired order.
Quote: | If you have an mp3 player that plays files in the order they were loaded, then all you have to do is find a folder that contains a large number of mp3 files numbered in sequential order (at least a hundred I would guess, though I've never tried to find the fewest number that will cause the problem) and drag it into the mp3 player, in ROX. Pay close attention to the order in which ROX transfers the files and you will probably see that it does not follow their number sequence from first to last. | This I can't confirm. The important information in your explanation is missing: How were the files ordered in the source folder? You can find out with ls -fl <folderpath> command. This gives you the order of files on the disk. I have tested with 250 files. Copied the folders around in Puppy, copied them to a FAT partion, copied between FAT partions...Result: The file order in the folder never changed. Input = output. No mix-up after 100 files or similar spooky things.
When you copy a folder which contains files with sequential names, you can't expect that the copy program copies the content of the folder in alphabetical order. In fact the program doesn't care about names, dates or any other metadata of the files, it simply copies in the order it find the files on disk. For copying in alphabetical order it would have to run a pre-check and only then start the copy process - this is what rsync is doing. Unfortunately I must say, because my mp3 files are named <artist>-<title> and tracks within albums are sorted by file creation date and were originally copied to the folder in this order. The last thing I want is a copy tool like rsync to change this order.
|
Back to top
|
|
 |
Flash
Official Dog Handler

Joined: 04 May 2005 Posts: 13387 Location: Arizona USA
|
Posted: Fri 15 Aug 2014, 00:34 Post subject:
|
|
MochiMoppel wrote: | ...When you copy a folder which contains files with sequential names, you can't expect that the copy program copies the content of the folder in alphabetical order... | Why yes, I can. In fact, I expect ROX's copy program to copy files in the order that ROX displays the files. For ROX to copy them in any other order when I drag and drop them is unexpected behavior.
Quote: | ...In fact the program doesn't care about names, dates or any other metadata of the files, it simply copies in the order it find the files on disk... | Maybe my problem is caused by the fact that I'm not copying from a hard disk, but from a USB flash drive. I don't even have a hard disk drive in my computer. Who knows what the controller in a USB flash drive does with the files it's recording.
Quote: | ...For copying in alphabetical order it would have to run a pre-check and only then start the copy process - this is what rsync is doing... | Then that must be what I inadvertently did by clicking ROX's first column order, as I believe I described in the first post in the old thread you mentioned.
|
Back to top
|
|
 |
MochiMoppel

Joined: 26 Jan 2011 Posts: 1937 Location: Japan
|
Posted: Fri 15 Aug 2014, 03:51 Post subject:
|
|
Flash wrote: | I expect ROX's copy program to copy files in the order that ROX displays the files. For ROX to copy them in any other order when I drag and drop them is unexpected behavior. | Yes, and I never challenged this. It copies files which it displays in the order it displays them (you confirmed this in your other thread), but there is no rule for the files it does not display. i.e. all the files and subfolders contained in a folder.
Maybe it's clearer with a simple example. Go to /root and sort by name. Now select the folder .local and the 2 regular files .bashrc and .Xdefaults. You now have 3 files selected. When you drag these files to a target folder ROX calls the cp command and passes a command line which may look like this:
cp -a /root/.local /root/.bashrc /root/.Xdefaults /Targetfolder
The cp command will copy from left to right, which is the order you saw in ROX and is probably what you want, but cp has no idea that you pulled the files from a sorted ROX display, it has no idea that .local followed by .bash is considered an ascending order in ROX, it has no idea that this is the result of a sort by name and not of a sort by size - in which case you would expect the contents of .local copied in size order?. There is no way ROX can instruct cp to copy the contents of the folder .local in a particular order. Everything beyond the order of the 3 files you see in the command line is decided by cp and the most efficient copy algorithm and not by you or me or anyone else, not even by ROX
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5384 Location: Ontario
|
Posted: Sat 13 Sep 2014, 16:43 Post subject:
|
|
new version 2.3 - new German translation added
5 languages now supported.
Automatically lists Windows share folder (see image below)
Some notes: Fat 32 disk doesn't support some characters such as colon :
therefore the file won't copy. You don't get a warning of this problem.
Also linux links aren't supported in fat32 and ntfs partitions so if a folder with
some links is copied to a windows partition an error is reported in rsync log window.
However the other files will transfer.
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5384 Location: Ontario
|
Posted: Mon 01 Dec 2014, 21:30 Post subject:
|
|
New version 2.4
Support for samba tng
/mnt/network/PUPPYSERVER/pupshare
will be on list if it is available
___________________________________
|
Back to top
|
|
 |
Flash
Official Dog Handler

Joined: 04 May 2005 Posts: 13387 Location: Arizona USA
|
Posted: Mon 16 May 2016, 21:28 Post subject:
|
|
When I enter Copy Fast in the Forum Search, it never finds this thread.
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5384 Location: Ontario
|
Posted: Tue 17 May 2016, 15:57 Post subject:
|
|
I use google with a plus sign (+) for multiple topics.
______________________________________________
|
Back to top
|
|
 |
LazY Puppy

Joined: 21 Nov 2014 Posts: 2007 Location: Germany
|
Posted: Tue 17 May 2016, 16:59 Post subject:
|
|
Entering Copy AND Fast into the search field will find the topic.
_________________ RSH
"you only wanted to work your Puppies in German", "you are a separatist in that you want Germany to secede from Europe" (musher0)
No, but I gave my old drum kit away for free to a music store collecting instruments for refugees! 
|
Back to top
|
|
 |
MochiMoppel

Joined: 26 Jan 2011 Posts: 1937 Location: Japan
|
Posted: Thu 19 May 2016, 02:54 Post subject:
|
|
Flash wrote: | When I enter Copy Fast in the Forum Search, it never finds this thread.  | That's why it is called "Search" and not "Find"
The forum search is a constant source of joy and surprises. Let's see:
copy fast , All posts: no match (should match hundreds of posts)
copy fast , 1 year only: 201 matches
copyfast , All posts: 15 matches, "Copy Fast" is second. Best result! But: Nowhere is it written as one word "copyfast"
copyfast , 1 year only: no match
copy AND fast , All posts: 14 matches, "Copy Fast" is seventh
copy AND fast , 1 year only: 28 matches, "Copy Fast" is third
copy OR fast , All posts: 29 matches, "Copy Fast" is not included
copy OR fast , 1 year only: 201 matches (apparently same as above 'copy fast')
Google search puppy linux "copy fast": "Copy Fast" is first match!
|
Back to top
|
|
 |
Flash
Official Dog Handler

Joined: 04 May 2005 Posts: 13387 Location: Arizona USA
|
Posted: Thu 19 May 2016, 10:05 Post subject:
|
|
Google search is the clear winner! Plus, Google search lets you do many searches in rapid succession. The forum search limits you to a search every few minutes.
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5384 Location: Ontario
|
Posted: Wed 01 Nov 2017, 20:07 Post subject:
version 2.5 |
|
Version 2.5
Added the icon to be sure it appears
/mnt/home will appear if possible
more open office documents should have a right click menu item
___________________________________
There is also a fatdog64 710 version available...
http://murga-linux.com/puppy/viewtopic.php?p=973020#973020
_______________________________________
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5384 Location: Ontario
|
Posted: Sat 04 Nov 2017, 15:14 Post subject:
|
|
Version 2.6
Added .blender files and .img files to file types that can be copied.
_________________________________
|
Back to top
|
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|