At First trying to make a hardlink from backupfile#63
Open
dolorosus wants to merge 2 commits intoOpenELEC:masterfrom
dolorosus:master
Open
At First trying to make a hardlink from backupfile#63dolorosus wants to merge 2 commits intoOpenELEC:masterfrom dolorosus:master
dolorosus wants to merge 2 commits intoOpenELEC:masterfrom
dolorosus:master
Conversation
On small systems like cubox or RasPi a restore of larger backups fails due to missing space caused by making a copy of the tarfile to .restore. Trying to make a hardlink instead of copying the tar file could solve this.
Trying to create a link of the backup tarfile
Contributor
|
@lfiebach @sraue you ok with this ? @dolorosus please remove the merge commit and set some more clear commit msg instead of "update xxx" on the other. thanks. |
Contributor
|
@dolorosus for some weird stupid reason, LOT of RPi/RPi2 users prefer to have their /storage formatted as fat32 (of couse we dont support that). just fyi, this will break backup/restore for people who do nonsense ;) |
Author
|
No, it won't ;) |
Contributor
|
oh. cool. |
Contributor
|
mind rebasing ? see my first comment, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
On small systems (e.g. openelec with 8Gb Micro sim), large Backupfiles can't be restore due to missing space for creating the copy of the backup tarfile in .restore.
Trying first to create a hardlink of the tarfile will avoid this this problem. creating a hardlink is much faster than than copying the tarfile.
If cerating the link results in error, a copy of the tarfile will be created the same way as before .