Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


ageorge

626 posts

Ultimate Geek


#261821 16-Dec-2019 20:05
Send private message


 Hi Ive been trying to get my data off one drive and onto another using this command and variants;
 sudo tar -cvpzf alsmain2018.tar.gz --exclude=alsmain2018.tar.gz --exclude-caches --one-file-system /media/alistair/USB450G/backintime/alsmain/ --exclude-from <(find /media/alistair/USB450G/backintime/alsmain/ -size +100M)
 which results in:
 tar: /dev/fd/63: No such file or directory
 tar: Error is not recoverable: exiting now

 


 Ive tried removing last directory backslash and if I run the command: sudo find /media/alistair/USB450G/backintime/alsmain/ -size +100M
 find works as expected, finding files over 100m.

 


 If I run command: sudo tar -cvpzf alsmain2018.tar.gz --exclude=alsmain2018.tar.gz --exclude-caches --one-file-system /media/alistair/USB450G/backintime/alsmain/
 backup works no errors.

 

 

 

Can anyone figure why my find is wrong?
 Thanks kindly, Al.


Create new topic
alexx
867 posts

Ultimate Geek


  #2376618 16-Dec-2019 20:44
Send private message

Most of the examples I’ve seen run find and pipe (or use -exec) the output to the tar command:
https://www.cyberciti.biz/faq/linux-unix-find-tar-files-into-tarball-command/





#include <standard.disclaimer>




jlittle
188 posts

Master Geek

ID Verified
Subscriber

  #2376787 17-Dec-2019 09:47
Send private message

It's the combination of sudo and the <( ) construct.

 

$ cat <(echo foo)

 

foo

 

$ sudo cat <(echo foo)

 

cat: /proc/self/fd/11: No such file or directory

 

You could run the find to a file in /tmp, then use that.


qwerty123
147 posts

Master Geek


  #2376864 17-Dec-2019 11:32
Send private message

In the command you use sudo elevates tar only. You cannot pipe data between processes running under different user IDs. You can try:

 

sudo sh -c 'sudo tar -cvpzf alsmain2018.tar.gz --exclude=alsmain2018.tar.gz --exclude-caches --one-file-system /media/alistair/USB450G/backintime/alsmain/ --exclude-from <(find /media/alistair/USB450G/backintime/alsmain/ -size +100M)'




ageorge

626 posts

Ultimate Geek


  #2377026 17-Dec-2019 13:46
Send private message

Thanks, that was it, sudo was doing the damage.


Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.