I am running PopOS 22.04 on my MacBook Pro 2015, and having received some help from the linux community am now productive on it. Things feel snappier than under the old MacOSX, but I have not timed anything.
I have a question about how to organize my time shift backups. Since I am running EXT4...
My question: I have a large amount of files on a disk and I have three different methods to move/copy them:
1. using find:
```
find /disk -xdev -type f -iname "*.pdf" -exec cp -ga "{}" /dest \:
```
2. using find print0 and grep -z:
```
find /disk -xdev type f -iname "*" -print0 > ./alllist.txt...
Hi folks,
(misplaced my earlier login, so starting anew)
Been using various flavours of Linux for ages, primarily server-side, but coming back to the desktop for a primary workhorse after a significant hiatus.
Rolling with Fedora (34) this time, as I find it better suited to BaU work more than...
Hey everyone,
I have 2 remote Servers: Server A and Server B.
On Server A I have a directory named: 'Example'
I need to copy 'Example' directory from Server A to Server B and then delete it from Server A (if there's a possibility to do it by one command it would be better of course).
I would...
Dear all
I'm using rsync to keep a backup of certain directories on my backup server.
I notice the following rsync command works, and place a folder called "zipped" inside the "/backup/" directory and deletes removed files on the source:
rsync -vrptgolz --progress --stats --delete...
Hello everyone. I am using arch linux and since i could not currently use timeshift I decided to just manually back up my system with rsync if there is any problems in the future so i will have backup. I tried to use rsync and every time I used the command within about 3-5 minutes of it backing...