Ubuntu :: Get Encrypt Decrypt Function Into Nautilus Again?
Aug 1, 2011
Have installed seahorse, gpg works otherwise, but the encrypt/ decrypt in the nautilus menu are still not present.
Anybody seen this? How to get the encrypt decrypt function into the nautilus again.
View 1 Replies
ADVERTISEMENT
Jan 8, 2010
I Have shell script like this
Code:
#!/usr/bin/expect
set password "XXXXXXXX"
[code]...
View 13 Replies
View Related
Jul 27, 2011
How do i encrypt & decrypt password in a file for security reason ? is there any shell scripts available to do the same?
OS : aix 5.3
View 3 Replies
View Related
Mar 31, 2011
I was wondering if any free, small, portable, cross platform programme exists for encrypting/decrpyitng simple txt files?
I know a couple of small ones for windows systems (nosee, dscrypt) but i wonder if there is any i could use on both linux and windows OS. the idea is to be able to carry it on USB key and the programme (or probably there will have to be 2 versions of it) would run either on windows or linux os and i could decrypt and encrypt the file if i needed to. no matter on what system i plug the USB key to.
View 9 Replies
View Related
Dec 17, 2010
I'm trying to setup vi to automatically encrypt/decrypt .pgp and .asc files. The encryption part works. If I "vi testfile.gpg" it will auto encrypt it on save.
However when I try and vi the encrypted file it does not prompt me for my pass phrase. I just get this:
Quote:
Here's what I have in my ~/.vimrc file.
Quote:
This is on gentoo linux if it makes any difference.
View 9 Replies
View Related
Feb 15, 2010
I want to be able to encrypt files on my netbook with Ubuntu 9.04 UNR and on my MacBook (Mac OS 10.6.2) and be able to exchange them and decrypt them on the other platform.The Ubuntu command Edit>Encrypt is so easy to use but works only on the netbook. I haven't, thus far, found a program to open them on the Mac or to create an encrypted file on the Mac that I can open on the netbook.
View 3 Replies
View Related
Jul 25, 2010
How can I make Debian encrypt and decrypt my home folder when I log in/out like Ubuntu does?
View 1 Replies
View Related
Jan 4, 2010
Is there anyway to decrypt some plain text which was encrypted using the function crypt()?
View 3 Replies
View Related
Dec 5, 2008
how to get a right click option to encrypt a file in nautilus. Per the subject line, right click works ok in the other two applications but doesn't seem to have integrated into nautilus. (both KGpg and Seahorse are installed and each seems to work correctly).
View 1 Replies
View Related
Jul 11, 2010
I'm having trouble decrypting a GNU key from LaunchPad.I have followed what the doc's say about it but it doesn't work for me.My Thunderbird can't read it also. I have used the plug-in but I have hotmail.
View 1 Replies
View Related
Sep 5, 2010
I am trying to decrypt wmv files in Ubuntu. I have installed the w32codecs and I am able to decrypt dvds. I also have access to medibuntu, but I cannot tell which package(s) at that repository are helpful (if any). The tunebite converter only appears to work on Windows.
View 5 Replies
View Related
Mar 24, 2011
I bought a multifunction stylus sx218 Espon model and I can not run the scanner function. I did some research and found a few solutions and very functional. I hope someone solves the problem. My version of openSUSE 11.2.
View 9 Replies
View Related
Nov 16, 2010
Code:
#include <iostream>
using namespace std;
[code]...
View 1 Replies
View Related
May 18, 2010
I am doing some Linux kernel programming for my research project. I need to record the timestamp (by using cpuid and rdtsc) when an interrupt handler (top half) is first invoked. Due to the time critical nature of the problem itself, I have to do the timestamping inside the interrupt handler itself (the first operation when the handler is called). However, I understand that tasks that are not so time critical should be deferred to a tasklet function (bottom half) for processing because other interrupts are disabled in a (top-half) interrupt handler. I am currently out of idea on how I can pass the timestamp information that I have obtained in the interrupt handler to the corresponding tasklet function.
View 2 Replies
View Related
Mar 30, 2011
I'm currently using OpenSuse 11.1 web server. This is bad since 11.1 is no longer supported. the reason why I am using it is because Function set_magic_quotes_runtime() was no longer being used. (so I was told)
That being said, is there a way to get Function set_magic_quotes_runtime() to function on the newer versions of OpenSuSE?
View 9 Replies
View Related
Feb 21, 2010
the function terminates if no key is pressed for 10 consecutive seconds. I tried using the -t option as suggested in some forums, but my version of showkey doesn't have the option of changing the timeout. The options I get are:
-h --helpdisplay this help text
-a --asciidisplay the decimal/octal/hex values of the keys
-s --scancodesdisplay only the raw scan-codes
-k --keycodesdisplay only the interpreted keycodes (default).
Is it possible to write a script to use this function and still keep the function active until an interrupt is recieved?
View 6 Replies
View Related
Nov 15, 2010
How to decrypt encrypted home folder?Which is already encrypted ?
View 9 Replies
View Related
Dec 10, 2010
i have a encrypted file using .aes256. I'm trying to decrypt but it fails. This is the command i used
Quote: openssl enc -d -aes256 -in insurance.aes256 > /media/DATA/out.dec And here's the error:Quote: enter aes-256-cbc decryption password: bad decrypt13930:error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt:evp_enc.c:330:
View 3 Replies
View Related
May 23, 2011
I chose the option to encrypt my home folder during installation, but I don't want it encrypted anymore since that makes it impossible to access any files in my home folder unless I'm logged in as that user.
I'm really hoping to avoid reinstalling from scratch just to fix this. Anyone know how to do it?
BTW, it's Ubuntu Server 11.04 32-bit.
View 4 Replies
View Related
Nov 30, 2010
lets say I install Ubuntu 10.10 on my laptop. I check the box that says encrypt my home directory, and my password is a randomly generated 10 character password using uppercase and lowercase letters and numbers. The next day my laptop gets stolen or something. How hard would it be for someone to decrypt the home directory if that were the goal?
View 5 Replies
View Related
Jan 19, 2009
I'm a new user to Fedora and wonder one thing.
I install like this. code...
All whas encrypted thrue the setup.
When i log back in i check places/removeable media/25.1 GB Encrypted data. and when i press i type my password and hit enter, but it wont decrypt?
I have disk on desktop, bt i cant do anything whit it?
View 1 Replies
View Related
May 6, 2010
I need to be able to decrypt data, like simple text files, that have been encrypted and base64 encoded with my public key.I need to use openssl so i do:
Code:
$cat encrypted | openssl enc -base64 -d > ./answer.txt
and i get exactly the same data as before the command was run. Am i right in thinking that i need to decode before decrypting? I tried decrypting, before i realized that i had to decode first,using this command:
[Code]...
View 5 Replies
View Related
Jul 25, 2010
I have a Qr barcode to decrypt and to do this I installed from the official ubuntu repo the software needed.
The problem is this: I can't see the software in any menu.
From shell I know how to create a Qr barcode, but I'm unable to decrypt one.
Someone have any idea about how to do it from CLI or in any other way?
View 7 Replies
View Related
Jul 19, 2010
I'm trying to install debian on a encrypted partition with LUKS and LVM. I've found a good tutorial for ubuntu (here but it's in french). The idea is to create a sda1 partition for /boot and create a sda2 partition which is encrypted with luks ("cryptsetup -c aes-xts-plain -s 512 luksFormat /dev/sda2") and on this encrypted partition, I use LVM to divide it in several different partitions (root, swap, home,...).
I can do it all with the debian live cd but once it's done I need to install debian. The problem is that with the basic install cd (I use netinstall), I cannot decrypt the partition for the installation (or if I can how ?)And with the live cd, I didn't find any option to do that.
View 6 Replies
View Related
Mar 21, 2010
Is there a way for my home folder to not be automatically mounted when i log in? And for that matter a way to change the password from my log in password to something else?
View 2 Replies
View Related
Feb 11, 2011
Is it possible to change my current nautilus window to have sudo capabilities,? e.g. to delete locked files. It may be lazy but if it takes a lot of navigation then it would be handy to somehow activate sudo from the open window without the terminal command (gksudo nautilus) which always begins at root.
View 5 Replies
View Related
Mar 15, 2010
Can I decrypt an encrypted drive without loss of data?
View 13 Replies
View Related
Mar 15, 2010
how to decrypt an entire /home drive in Fedora12KDE?
View 8 Replies
View Related
Jun 20, 2010
I attempted to install Nautilus Elementary...the results were not what I expected however. First of all, it doesn't seem to even have installed correctly, but thats not the main issue...after installing, Nautilus looks like this...
View 2 Replies
View Related
Jan 25, 2016
I'dont get prompt for passphrase for decrypt luks during boot.Instead it says 'error: device name required, press any key to continue"
Grub.cfg: http://pastebin.com/GZsuXp1y
kernel: linux-image-4.3.0-1-amd64
video with issue: https://www.youtube.com/watch?v=13ruhtUcwRo&feature=youtu.be
VM disk has 2 partitions:
sda1 with /boot
sda2 - luks encrypted
View 1 Replies
View Related