Fedora Security :: Import Key To /etc/pki/rpm-gpg Fails
Mar 15, 2009
I want to import a key called PGP-public-key.asc, that is placed in the download folder to /etc/pki/rpm-gpg, but it fails. I tried both:
rpm --import /etc/pki/rpm-gpg/PGP-public-key.asc
and
rpm --import /etc/pki/rpm-gpg/
rpm --import /etc/pki/rpm-gpg/home/my/Download/PGP-public-key.asc
View 8 Replies
ADVERTISEMENT
Nov 4, 2010
I have read the man of ldif .In my attempt to build my current directory, I have taken a dump of my last successful implementation (which was created on FreeBSD 8.1) and substituted values for the dc=company and dc=com values with the correct ones for the current directory (attempting to implement under CentOS 5.4) and even tho the correct schemas are in place it is choking on entry.
View 9 Replies
View Related
May 20, 2010
Wanted to double check if I've done something stupid in my update, or whether this is a known issue.
$ python
>>> import wx
Traceback (most recent call last):
File "<stdin>", line 1, in ?
[code]....
View 1 Replies
View Related
Dec 27, 2010
It would appear that novell openoffice 3.2.1.4 on opensuse 11.3 fails to correctly import pps/ppt files. Slide transition data is lost and this results in presentations without sound. This problem does not exist in openoffice from openoffice.org. openoffice from openoffice.org will play pps files with sound which will not play with openoffice from Novell. However the openoffice.org version requires JMF.
JMF is old and 32 bit. I have tested openoffice 3.2.1 from openoffice.org with JMF on a 32 bit 11.2 system and it works. I assume that JMF will not work with a 64 bit JRE. I also assume that it would be difficult to get a 32 bit jre to work with a 64 bit openoffice FMJ is an alternative to JMF. It plays various types of audio including mp3 and wav. It is packaged for installation on 11.3. Does anybody know if this works in place of JMF with openoffice from openoffice.org on a 64 bit system?
View 9 Replies
View Related
Jul 19, 2011
I've been using OpenSUSE 11.4 with GNOME for quite a while now and so far I've been a happy camper. This morning I decided to try GNOME 3 and the install went smoothly, with the only exception of rhytmbox(my music player of choice) not being available.Later I found rhythmbox for GNOME 3 in this repo: Index of /repositories/ GNOME:/ Apps/openSUSE_11.4+GNOME_STABLE_3.0.It works well but the Cover Art plugin won't load because it fails to import python-gstreamer.Should I report a bug against OpenSUSE 11.4 or maybe I am doing something wrong?
View 1 Replies
View Related
Oct 18, 2010
I have an encrypted document (with my key) which I should decrypt. After the generation of my key, my computer is formated and new reinstalled. Now GnuPG find my key public and I can't use it for decryption!
View 9 Replies
View Related
Sep 10, 2009
I recently made a custom spin of fedora on 29th August 2009. It initially failed to go past the slash screen but a solution was found here on fedora forum. It included adding the following to kernel line in grub.
enforcing=0
I later checked SElinux and found the option to do a filesystem relabel at next boot was enabled. I rebooted the system without adding the above words "enforcing=o" and it got stuck after the the splash screen (the blue screen with a fedora bubble). I then did some more research on SElinux and filesystem relabelling. There were several comments that said that a notice is given in the event of a filesystem relabel. I went to the konsole and as root I wrote the following commands:
touch /.autorelabel
reboot
I gave my pc 20Hrs 48min and nothing happened. My HDD is 80GB but it only had 7.5GB of data. There were no messages that indicated that the filesystem relabel was in progress or even if it had started. I also tried the following command but failed:
make relabel
I have now had to edit grub.conf and added the words "enforcing=0" as it is the only way the system will go passed the splash screen.
View 13 Replies
View Related
Jun 29, 2010
last week I decided to not just run dist-upgrade, but give the Lynx a completely fresh install. Before that I've only copied my home folder to an external hard-drive.
Now that I'm on Ubuntu 10.04 I have no clue how to import my old personal key and the passwords from the backup (my old home folder).
View 3 Replies
View Related
May 17, 2010
after I had to rebuild the rpmdb because of some errors within it, i can't import any gpg-keys with the command "rpm --import". All I get is this:
[Code]....
View 14 Replies
View Related
Feb 11, 2011
When I do a "openssl x509 -in server1.pem -issuer -noout" after I've supposedly signed it with the CA, the issuer is, for some reason, the DN string of server1. If server1 generated the CSR, and it is coming up as issued by server1, doesn't that indicate a self signed cert? How could the CA be producing a cert that has an issuer of another server? Am I just completely off base? Sorry, I'm a bit of a newb with the SSL pieces.
I hope this is the right place for this, but I'm having some difficulty using the java keytool and OpenSSL tool on a Solaris system.
I have a server (CA server) with OpenSSL installed that I would like to use as a Certificate Authority. The second server (server1) is a WebLogic server with JDK 1.6.0_21. I'm trying to configure it to use a certificate that has been signed by server1.
For some reason it keeps giving me this error when I try to import the signed SSL certificate: keytool error: java.lang.Exception: Public keys in reply and keystore don't match
Am I doing something wrong in this whole process?
1) Generate the Private Key for the CA server
openssl genrsa -out CA.key -des 2048
2) Generate the CSR on the CA
openssl req -new -key CA.key -out CA.csr
3) Sign the new CSR so that it can be used as the root certificate openssl x509 -extensions v3_ca -trustout -signkey CA.key -days 730 -req -in CA.csr -out CA.pem -extfile /usr/local/ssl/openssl.cnf
4) On server1, create Server Private Key KeyStore keytool -genkey -alias server1 -keysize 2048 -keyalg RSA keystore server1.jks -dname "CN=server1.domain.com,OU=Organization,O=Company,L=City,ST=State,C=US"
5) On server1, create a CSR from the recently created Private Key
keytool -certreq -alias server1 -sigalg SHA1WithRSA -keystore server1.jks -file server1.csr
6) Transfer the CSR over to the CA (server1) so that it can be signed openssl x509 -extensions v3_ca -trustout -signkey CA.key -days 365 -req -in server1.csr -out server1.pem -extfile /usr/local/ssl/openssl.cnf
7) Transfer CA Public Cert to server1 and Import into keytool keytool -import -trustcacerts -alias CA_Public -file CA.pem -keystore server1.jks
8) Import recently signed CSR to app server keystore (This is where I receive the error) keytool -import -trustcacerts -alias server1 -file server1.pem -keystore server1.jks
View 1 Replies
View Related
Feb 26, 2009
Is it possible to import an xorg.conf file from Debian to Fedora and have it work? The reason for this is that I have an older monitor that only offers 800x600 as the maximum resolution.
View 2 Replies
View Related
Mar 30, 2010
I've installed audacity, and have the LAME plugin installed. Problem is, I can't import mp3 files into audacity, I keep getting:
"This version of audacity is not compiled with mp3 support"
DO I need to do anything to get audacity to import mp3s ? The preferences only had an area for encoder (i.e. export) nothing for import.
View 3 Replies
View Related
May 1, 2011
I've added my public key to the remote machine's authorized_keys file, and I can ssh over without password. But when I try to mount the remote share using sshfs it -always- asks for my user's password. I have set sshd_config|PasswordAuthentication no
... and when I mount the share as root it says, "read: Connection reset by peer". My mount is being done as user, so it shouldn't be a root authentication problem:
sshfs#bill@droog://media/droogfuseuser,noauto,gid=6,umask=007,cache=no,ServerAliveInterval=15,reconnect,allow_other,comment=sshfs 0 0
I can't mount as user because /dev/fuse is not suid, and I'd rather not set it such.
View 10 Replies
View Related
Sep 12, 2009
I'm running GNOME on Fedora 11. My daughter is shortly due to take possession of a digital SLR camera - a Canon EOS 400D. Apparently it comes with a USB cable. I know very little of photography, or of image stuff on Linux, so I have a few questions: Will I be able to connect it to my Linux box and import the images? Is gthumb-importer the appropriate application for this? Is there better? Are the images jpegs, or something else? I only need to copy the images to the laptop and to be able to view them - I don't need to edit them or any such.
View 1 Replies
View Related
May 3, 2011
I'm building a new machine with slackware 13.37 64bit and so far all has gone well except for secure smtp. My previous setup was with slackware 13.1 32bit which worked fine. If I run with (`confAUTH_OPTIONS', `A p y') in my sendmail config it shows "AUTH warning: no mechanisms" in my maillog and obviously fails to authenticate. When I take the 'p' out and run with (`confAUTH_OPTIONS', `A y') then it does list the defined confAUTH_MECHANISMS and works. I would prefer to run with the 'p' option and require the security layer.
Most of my setup guidance has come from the "Sendmail SMTP AUTH Howto":
http://www.linuxquestions.org/questi...-howto-224543/
The Sendmail "TLS SASL SMTP-AUTH" page on slackwiki:
http://www.slackwiki.org/Sendmail_TLS_SASL_SMTP-AUTH
And this page for debugging "How to test Sendmail SASL Authentication":
http://networking.ringofsaturn.com/P...entication.php
[Code]...
My hope is that I'm just missing something simple. Does anyone have insight into why adding the 'p' to confAUTH_OPTIONS is causing this behavior?
View 2 Replies
View Related
May 8, 2011
I'm building a new machine with slackware 13.37 64bit and so far all has gone well except for secure smtp. My previous setup was with slackware 13.1 32bit which worked fine.
If I run with (`confAUTH_OPTIONS', `A p y') in my sendmail config it shows "AUTH warning: no mechanisms" in my maillog and obviously fails to authenticate.
When I take the 'p' out and run with (`confAUTH_OPTIONS', `A y') then it does list the defined confAUTH_MECHANISMS and works.
I would prefer to run with the 'p' option and require the security layer.
Most of my setup guidance has come from the "Sendmail SMTP AUTH Howto":
My goal is to be able to send mail remotely with secure authentication. If the way I'm trying to go about it is old and there is some newer/better way I'm happy to go with that - but sendmail/saslauthd has worked for me in the past.
Sendmail is version 8.14.4 and looks like it has the necessary options compiled in:
Code:
saslauthd is version 2.1.23 and supports shadow:
Code:
I did discover the need to link /etc/sasl2 to /usr/lib64/sasl2 and created the Sendmail.conf file there:
Code:
Here's the sendmail configuration script I'm using. Its really just the vanilla /usr/share/sendmail/cf/cf/sendmail-slackware-tls-sasl.mc file with my cert file names:
Code:
When I try to connect with (`confAUTH_OPTIONS', `A p y') in the config here is the output I get in maillog (none of the other logs seem to show anything and I dont see any errors/warnings when I restart sendmail):
Code:
If I change the option so its just (`confAUTH_OPTIONS', `A y') then it does work and this is the log output I get:
Code:
My client is configured to use SSL and when I go through the setup, it does appear to authenticate against the smtp server and it validates. The fail comes in when trying to actually send mail.
Does anyone have insight into why adding the 'p' to confAUTH_OPTIONS is causing this behavior?
View 4 Replies
View Related
Jun 2, 2010
Cobbler import does not seem to work as described here:[URL]..I have selinux disabled.
Code:
# mount -o loop,ro Fedora-13-i686-Live.iso /mnt/dvd
# cobbler import --path="/mnt/dvd" --arch=i386 --name=fedora13task started: 2010-06-01_235629_import
task started (id=Media import, time=Tue Jun 1 23:56:29 2010)
running: rsync -a '/mnt/dvd/' /var/www/cobbler/ks_mirror/fedora13-i386 --exclude-from=/etc/cobbler/rsync.exclude --progress
[Code]...
The following are potential configuration items that you may want to fix:
1 : since iptables may be running, ensure 69, 80, and 25151 are unblocked
2 : debmirror package is not installed, it will be required to manage debian deployments and repositories
Restart cobblerd and then run 'cobbler sync' to apply changes. The listed ports are open in iptables, and I do not need to manage a debian deployment.
View 2 Replies
View Related
Nov 4, 2010
Just trying my first live upgrade but hit an issue with not being able to import the GPG key for FC14:
[root@jahama ~]# rpm --import https://fedoraproject.org/static/97A1071F.txt error: https://fedoraproject.org/static/97A1071F.txt: import failed. I downloaded the key to a file and had the same error so I know I haven't mistyped anything. What have I missed and what can I do to resolve it?
View 2 Replies
View Related
Jan 15, 2011
How do you import photos to your ipod touch?
View 7 Replies
View Related
Mar 18, 2010
I have a CGI script that when called runs another script as a different user. Yet when the script does run I keep getting a permission denied in the logs and the script fails
In the sudoers file-
Defaults env_reset
www-data ALL=(charly) NOPASSWD=ALL
For the full question-
When looking at /etc/sudoers there is the defaults line that you can add things to. When doing a sudo -L so that I can see what I can put on that defaults line. Can an individual user have specific defaults? Ones that don't effect the rest of the people in /etc/sudoers?
View 1 Replies
View Related
May 24, 2010
I like to import mails from Evolution 2.28.3 into Mozilla Thunderbird 3.x. I guess I'll have to export them into mbox format. Correct ?
View 8 Replies
View Related
Jun 2, 2010
I've installed Fedora 13 and would like to find a way to import my pidgin accounts, data, and logs into empathy. The Empathy FAQ doesn't mention this, there's nothing in the Empathy help about it, and I've gone through every menu looking for anything like an "import" option and come up empty. I tried asking on irc.gimp.org#empathy but got no response there. I'm guessing that means there's no built-in upgrade path. But maybe somebody has a script that will do it? Or worst case, maybe someone could point me to instructions on how to manually convert the data?
View 2 Replies
View Related
Jun 6, 2010
how to model using blender(2.48) on fedora 9, and I'm having one small problem. I have been modeling on Tremulous on and off, but I have been having a recurring problem with vert counts that I have decided to address. I had planned to add plugin scripts to blender that will let me import/export md3 files. I was able to download the plugins in a zip file and I know where the blender scripts are located, but this is where I'm having problems. When I try to move the extracted plugins into the folder, I get a warning about me not having permission. I know I can get around the problem by using my root login command. What I don't know the command I need to use to move the plugins where they need to go.
View 5 Replies
View Related
Feb 25, 2011
I have a digital camcorder (panasonic NV-GS33) and would like to get the video's to my Hd for editing etc,etc. From what i can see, linux only supports ieee1394. But, as with most google searches and linux you only ever seem to see the problem stories so thought id ask here to see how i could transfer via the usb2 port or weather its even possible?
View 3 Replies
View Related
Jun 21, 2011
is it possible to import mail from older evolution client (GNOME evolution 2.28.3) to the evolution now running on fedora 15 ( Evolution 3.0.2)on the older client, there appears to be a .evolution folder off home directory and mail under that.However I dont see this hidden directory on fedora 15.Is there a way to transfer the mails?
View 9 Replies
View Related
Sep 16, 2010
I'm running eeebuntu on a Toshiba Satellite R10, I installed the Netbook Remix Package which was apparently a horrible idea. I cant click properly. I tried to open synaptic package manager to uninstall it but it tells me my password is wrong, which i know it is not. Is there anyway to fix this, i can open terminal.
View 3 Replies
View Related
Jan 23, 2009
I am trying to upgrade RH9 to F10. I have downloaded dvd iso image i386. The SHA1 integrity check passes. The installer fails media check due to "errors". I did an independent verification of the DVD and zero errors found. Download was from Fedora's own torrent, so files should be verified anyway. If I bypass the media check I get the message : Running anaconda 11.4.1.62 the Fedora system installer - please wait.....
[Code]....
View 7 Replies
View Related
Mar 5, 2010
I am curious if yum can be used to export a list of packages from machine 'A' then I can take it to machine 'B' and import/install the list so my machines all have the same software.
View 4 Replies
View Related
Apr 3, 2010
My goal is to import and organize photos from my SD Card I have a built in SD Card Reader on my Toshiba Satellite A205 with Fedora 12 installed
1st: I tried to just use gThumb but some of the images wouldn't render after import. - Also at this point, I selected for Fedora to automatically open gThumb Import when I enter the SD Card. Now I can't figure out how to stop it from doing that. If anyone could answer this too, i would be very grateful
2nd: I tried f-spot but it also wouldn't render some of the images after import and I don't like that it orders the photos by day and doesn't let you manage it yourself. Correct me if I'm wrong with this.
Now: I loved Picasa on Windows so I loaded the Picasa 3.0 RPM. I had an apparently common problem with the Wine preloader being blocked by SELinux. I followed the SELinux recommendation to lift the restriction. I realize its not as safe but I thought if I could get Picasa to work I could live with it. But I can't seem to import from Picasa either! When I start an import from Picasa it gets about 20 pictures though and then stops with the following error:
Code: An error has ocurred during importing. Either the source is unavailable or the destination is full or readonly. (11) And also the gThumb import window opens... actually as I'm writing this, it probably is the auto action i set up earlier that's throwing it off. That would probably make the "source unavailable" like the error implies.
I would like to remove the auto load behavior i set up when entering an sd card. If anyone has any other ideas why I can't view all of the images in the other programs i'd like to give them a fair evaluation also. A few of them render ok, but most of them just show a broken image link.
View 8 Replies
View Related
May 9, 2011
I'm very slow with Linux, so I will probably ask for clarification. I'm running Fedora 14 on an HP mini-notebook. I recently bought a Nikon Coolpix L120. I am having trouble importing photographs from my camera onto the computer. I've tried several different programs, and I have F-Spot and digiKam.
In digiKam, it auto-detects my camera, but I get this message when I attempt to import pictures:Failed to connect to the camera. Please make sure it is connected properly and turned on. Would you like to try again?
I've seen this problem before on different forums, but I couldn't find any solutions that I understand. Do I have to mess with permissions? I don't know what this means, and I could use some help.
F-spot doesn't even detect my camera. I read that F-spot requires gphoto libraries that would have something for my device. Unfortunately, on this list my camera isn't listed. The Nikon Coolpix L120 connects via USB cable.
View 5 Replies
View Related