How to backup the Secure Folder on your Samsung Galaxy phone/tablet… when you’re a techie

Whoever has sensitive data on their Samsung Galaxy phone or tablet may be a happy user of the Samung Secure Folder app, or "Veilige Map" as we call it in Dutch. It's a great way to keep your family out of your financial files or even your girl's nudies :-)

One thing is lacking though: A good backup procedure. Or as Samsung states on their website:

Although backing up your data is no longer supported in Secure Folder, you can restore data from previous backups and transfer your Secure Folder to a new device using Smart Switch. -- https://www.samsung.com/us/support/answer/ANS10001401/

Great! But I need to have backups in the future, not in the past. Luckily I found a great way to backup my data!

The Secure Folder seems to be a stripped down user that runs in parallel on the same device. Android supports multiple users by default, but not all devices show that option. Galaxy Tablets usually do, Galaxy Phones don't. But in this case, you don't want to switch users, it's more like Windows' "run as..." option that you want to use: to run an application as a different user, with that users permissions and resources.

That Secure Folder user does not allow much access. For example, the My Files app does not have SMB (Samba) access, while the My Files app of the main user does have that option. But trying to get that to work gave me some ideas.

You can easily install all sorts of apps in the Secure Folder container. Using the plus sign at the top of the Secure Folder app, you can install apps from the main user in the Secure Folder. Also, Google Play and Galaxy Store are available via this route. You can install dozens of SSH Server, SMB Server and other apps that make your Secure Folder data accessible from your computer. (Just remember to close the connection then the backup is done.)

Downside to this approach is that both Google Play and Galaxy Store require you to log in, and I have no idea what happens then. Will they see it as a new user? Mess up my settings? Personally, I downloaded F-Droid from the main user, then moved the APK into the Secure Folder. There I installed it, after which I had access to multiple Server apps. I chose SshDaemon.

After configuring SshDaemon, you can easily log in to the phone via sshfs (on Linux) or a random scp client such as FileZilla. For sshfs, this link could be handy.

I might explore FolderSync Pro at some point. I'm already using this app for the main user, it was well worth the €7. (There's a ad-supported version available as well.)

So, while Samsung does not support backupping your Secure Folder, I believe there are plenty of options available to the the more technical user.

© GeekLabInfo How to backup the Secure Folder on your Samsung Galaxy phone/tablet... when you're a techie is a post from GeekLab.info. You are free to copy materials from GeekLab.info, but you are required to link back to https://www.geeklab.info

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...

Android: Calendar items set to tentative

Yay, I got myself a Samsung Galaxy SII. Great phone running Android!

There's just one thing that annoys the shit out of me: When I create a new agenda item in my google agenda, it shows up in my thunderbird as "tentative". These items will have a lower opacity, which makes the agenda harder to read.

I've google'd around, and found a lot of complaints about this problem, but there's no solution to make appointments confirmed right away. And I'm definitely not opening all items in thunderbird to confirm them by hand.

There's a simple solution to this problem: I made Thunderbird render the agenda differently. Using the file userChrome.css, I set opacity to 100%. (If you don't know what userChrome.css is, read this page at mozilla.org.) The actual CSS is:
calendar-event-box[invitation-status="TENTATIVE"],
calendar-editable-item[invitation-status="TENTATIVE"],
calendar-month-day-box-item[invitation-status="TENTATIVE"],
calendar-event-box[status="TENTATIVE"],
calendar-editable-item[status="TENTATIVE"],
calendar-month-day-box-item[status="TENTATIVE"]
{
opacity: 1 !important;
}

Restart thunderbird and you're done.

This "solution" does not set any appointments to "confirmed". It just renders tentative appointments the same as confirmed items, so that you don't see the difference anymore.© GeekLabInfo
Android: Calendar items set to tentative is a post from GeekLab.info. You are free to copy materials from GeekLab.info, but you are required to link back to https://www.geeklab.info

1 Star2 Stars3 Stars4 Stars5 Stars (9 votes, average: 5.00 out of 5)
Loading...