Displaying 3 results from an estimated 3 matches for "home_dirs_sort".
Did you mean:
home_dirs_sorted
2020 Sep 10
2
Copying TBs -> error -> work around
...'rsync [sender] expand file_list pointer array to xxx bytes, "did
move"'
with rsync hanging - after breakout on /home for writing I then get:
"Read-only file system"
So after unmounting and remounting /home I did:
cd /home
find /home/ -type d | sort > ./home_dirs_sorted.txt
delete first line "/home/" of ./home_dirs_sorted.txt then:
while read dir ; do echo $dir ; rsync -lptgod "$dir" /mntb5/"$dir" ;
done < ./home_dirs_sorted.txt
and:
while read dir ; do echo $dir ; rsync -lptgoD "$dir"/\.[a-zA-Z0-9]*
/mntb5/...
2020 Sep 11
2
Copying TBs -> error -> work around
...ove"'
>>
>> with rsync hanging - after breakout on /home for writing I then get:
>>
>> ? "Read-only file system"
>>
>> So after unmounting and remounting /home I did:
>>
>> ? cd /home
>> ? find /home/ -type d | sort > ./home_dirs_sorted.txt
>>
>> delete first line "/home/" of ./home_dirs_sorted.txt then:
>>
>> ? while read dir ; do echo $dir ; rsync -lptgod "$dir" /mntb5/"$dir" ;
>> done < ./home_dirs_sorted.txt
>>
>> and:
>>
>> ? while re...
2020 Sep 14
0
Copying TBs -> error -> work around
...nc hanging - after breakout on /home for writing I then get:
> > >
> > > ? "Read-only file system"
> > >
> > > So after unmounting and remounting /home I did:
> > >
> > > ? cd /home
> > > ? find /home/ -type d | sort > ./home_dirs_sorted.txt
> > >
> > > delete first line "/home/" of ./home_dirs_sorted.txt then:
> > >
> > > ? while read dir ; do echo $dir ; rsync -lptgod "$dir" /mntb5/"$dir" ;
> > > done < ./home_dirs_sorted.txt
> > >
> &g...