As a lot as I like the comfort of retaining my necessary information secure within the cloud, there’s nonetheless a lingering worry in my head — what if the cloud or my web connection fails me? It has occurred to me no less than a couple of instances, which is why I’m at all times adamant about retaining a fail-safe that’s really dependable.
On this regard, good outdated bodily media won’t ever fail me; that’s the reason I hold a cohort of USB drives as a security internet in case something goes unsuitable. Now this backup plan would not simply contain retaining my private information secure; I additionally use these drives as security tools or as bootable drives for after I need to swap to a different OS.
10 Practical Uses for a USB Flash Drive You Didn’t Know About
You’ve got used USB sticks to move information between computer systems and again up information, however there’s way more you are able to do with a USB stick.
A few of my information are too delicate to again up within the cloud
No drive, no entry
I desire to entry my information with out utilizing a third-party service, which is why I at all times retailer my private and delicate information regionally. There are too many caveats to storing information within the cloud, like phrases of service adjustments or your account getting suspended, that may lock you out of your information. Even regionally, I take additional measures to safeguard my information in opposition to malware and hacks. One of many methods I achieve this is by locking it behind a bodily key for my PC, and for that, I hold a thumb drive on me.
Now, reworking your USB drive right into a bodily key would not take a lot apart from software program to encrypt your information and lock it to the drive. The one I like to recommend is USB Raptor, which may lock your file or the LAN on a number of PCs and works with just aboutall drives. To configure:
- Obtain USB Raptor.
- Set up the software program and settle for the EULA when opening this system.
- To configure, insert the USB drive and choose it in Superior Configuration.
- Create a k3y, an authorization file saved in your thumb drive, to entry the file you need to lock in your PC.
USB Raptor additionally allows you to create a backup password in case you lose the USB drive. This is able to make your system safe on a bodily stage.
- OS
-
Home windows
- Pricing mannequin
-
Free
A free open-source Home windows utility that allows you to lock and unlock your PC through the use of any USB flash drive as a bodily key to guard your system from informal entry.
I hold a bootable Linux drive in case Home windows fails me
A secondary bootable drive generally is a lifesaver
I have been a Home windows consumer for many of my life, however the latest development and recognition of Linux incline me to check out the OS. Despite the fact that Linux can by no means substitute Home windows for me, the argument goes each methods as a result of there are some duties that solely Linux can do for me.
This is the reason I’ve a bootable Linux OS in my drawer. I admit I fiddle with my system most of the time, and if the whole lot fails, I can at all times boot into Linux and try to recover Windows. This one time, I used my drive on a pal’s setup to transform their storage from MBR to GPT to put in Home windows 11.
Not simply Linux, you may as well create a Home windows 11 bootable drive in your Mac machine, for example, the place Apple’s OS fails to ship a process solely meant for Microsoft to finish. Or, you need to use the USB drive to securely browse the web with out the worry of getting tracked by putting in Tails, a Debian-based Linux distro that runs by means of the Tor community and utterly masks your location and id.
I at all times hold a Home windows installer on standby
Contemporary set up only a drive away
I like constructing PCs and have assembled a number of builds for household and pals over a decade and a half. I feel that is partly why I at all times have a Home windows setup on one in every of my USB drives. I’ve carried on that custom to this point now, and even when the necessity hardly ever arrives, I nonetheless hold a Home windows 11 setup USB drive as a backup, and I’ve already bought to make use of it twice within the final 12 months — one time when my Home windows 11 broke and when the 2H2 replace first debuted which was fairly lackluster, and it harm efficiency, prompting me to roll again to an earlier model from the setup I’ve in my USB drive.
The half most cloud companies miss
Whereas cloud companies protect your precise information, most of them skip out completely on the metadata, which, in easier phrases, is the descriptive data embedded in your file. Relying on the file sort, it could cowl so much, together with: file title/dimension/time, lens, focus mode, aperture, unique seize information for images; codec, decision, GPS information, scene information for movies; file permissions/timestamps, dependencies, construct information, commit historical past, merge historical past, and extra for tasks/code.
Defending metadata is important for professionals who need to hold observe of their tasks; with out it, they’re just about misplaced. For a photographer or a videographer, metadata would assist observe the precise unique timeline of the work and defend the originality. For a coder, it could enhance collaboration with new staff members and debug way more successfully.
As knowledgeable freelancer who juggles a number of tasks at a time, I create a snapshot of my tasks no less than as soon as each couple of months, and for video and images, I take advantage of ExifTool, a standard command-line utility that works throughout varied file sorts.
To create a metadata snapshot of your media, observe these steps:
- Obtain ExifTool.
- Open Command Immediate as an admin.
-
Now, go to the listing the place all of your images is perhaps or the file location itself and paste it to your USB drive:
exiftool -r -a -g1 -json "D:Media" > "E:full_metadata_backup.json" -
I additionally advocate checking if the backup exists, and to take action, sort this command in Command Immediate
dir "E:*.json" -
Now, in a case the place your information is stripped of its metadata, you may paste it again by way of this command,
exiftool -r -TagsFromFile "Originalspercentf.%e" "-all:all" "Stripped"
ExifTool creates a backup of every file earlier than overwriting it as “filename”_original in the identical folder. As soon as confirmed that the restore labored, you may delete these copies.
For exporting code/challenge metadata, the steps are as follows:
- Obtain Git Bash, a CMD-like command-line interpreter that gives a Unix-like setting and is important to again up metadata for code.
-
Go to your challenge listing
cd path/to/challenge -
Now, export information for the code/challenge by this command:
discover . -type f -exec sha256sum {} ; > checksums.txt -
If utilizing Git, export the commit historical past by way of
git log --oneline > git_history.txt - Now, copy the created information to your USB drive, and you will have a snapshot of your metadata.
This metadata can now be used to confirm the integrity of your code, get well timestamps, and protect historical past on the whole.
Bodily media nonetheless has a spot alongside the cloud
USB drives are indispensable, and past backups, there are various methods to repurpose a thumb drive, reminiscent of building a private LLM locally or utilizing it as additional storage in your TV. Do remember that the data on your USB drive is slowly degrading over time since these drives even have a restricted shelf life, so I would advocate not utilizing an older one for delicate information or retaining it as a bodily lock.
Source link

