Windowsからもアクセスできるusb pendrive/thumdrive /を暗号化する方法は?実際、私はubuntu(Home)とWindows(Office)の両方を持っているので、usb pendriveを使用してデータをあちこち移動する必要があります。それで、クロスプラットフォームOSロック解除からパスワードを使ってファイルを追加できるソフトウェアが必要です。私を助けてください 。前もって感謝します ...
私にとって、WindowsおよびUbuntuからアクセスできるサムドライブを暗号化する最も簡単な方法は、Veracryptです。 WindowsとUbuntuの両方で使用できます。いつも使っています。
クラウドに保管するためにコンテナーを暗号化する必要がある場合は、Cryptomatorを検討してください。 Windows、Ubuntu、お使いの携帯電話/タブレットで利用できます。
Zip -e
-追加のハードウェアやソフトウェアはありません-使いやすいが非常に安全ではありません暗号化されたZip
ファイルを使用すると、シンプルでセキュリティレベルが低く、多数のファイルまたはディレクトリツリーを含めることができます。 Zipファイルの標準的な暗号化を使用している限り、UbuntuとWindowsで動作します。
UbuntuにはZip
があり、Windowsには互換性のあるいくつかのツールがあります(ただし、Windowsで「高度な暗号化」を使用すると、UbuntuのZip
はおそらく暗号化を解除できません)。
現在のディレクトリ内のすべてのファイル:
Zip -e file.Zip *
現在のディレクトリツリー内のすべてのファイルについて、「サブディレクトリに再帰」します。
Zip -er file.Zip *
で解凍
unzip file.Zip
man Zip
(Ubuntu)から、-e
または--encrypt
がアーカイブを暗号化するオプションであることがわかります。
-e --encrypt Encrypt the contents of the Zip archive using a password which is entered on the terminal in response to a Prompt (this will not be echoed; if standard error is not a tty, Zip will exit with an error). The password Prompt is repeated to save the user from typ‐ ing errors.
ただし、オプション-P
または--password
は使用しないでください。
-P password --password password Use password to encrypt zipfile entries (if any). THIS IS INSECURE! Many multi-user operating systems provide ways for any user to see the current command line of any other user; even on stand-alone sys‐ tems there is always the threat of over-the-shoulder peeking. Stor‐ ing the plaintext password as part of a command line in an automated script is even worse. Whenever possible, use the non-echoing, interactive Prompt to enter passwords. (And where security is truly important, use strong encryption such as Pretty Good Privacy instead of the relatively weak standard encryption provided by zipfile util‐ ities.)
gpg
は、Pretty Good PrivacyのGNU実装です。更新が正しく転送されたことを確認するために使用され、ファイルを圧縮するために使用できるため、Ubuntuに付属しています。たとえば、tar
アーカイブや、ファイルを含む暗号化されていないZip
ファイルなどです。乗り換えたいインストールできるWindows用のバージョンがあります。 (私は数年前にWindowsにgpg
をインストールしました。)この目的では、Veracryptがgpg
よりも便利だと思うので、Zip
または同様のツールよりも優れたセキュリティが必要な場合は、Veracryptまたは専用の(すでに暗号化された)USBペンドライブをお勧めします。 Linuxと互換性があります。
7Zip/P7ZipはAES-256ごとに暗号化します。
7ZipはWindowsで利用できます: https://www.7-Zip.org/
P7ZipはUbuntuで使用できます:Ubuntu Software Centerから、および以下を使用して入手できます。
Sudo apt-get install p7Zip-full
どちらも自分でドラッグアンドドロップで暗号化フォルダーを作成するのに役立ちませんでしたが、両方を一緒にインストールすると、7Zipファイルを暗号化フォルダーとして作成できます。