Re: encription

2013-09-28 Thread Heinz Diehl
On 28.09.2013, Patrick Dupre wrote: 

 I would like that it ask me the paraphrase every time that the key
 in replugged. How can I get this behavior?

You have to check if there's something which caches your passphrase,
and in this case you should prevent your passphrase from being
cached. If this isn't the case, you can take a look into /dev/mapper
and see if your crypto-device is properly unregistered. If it's not,
you'll have to do that manually:

 cryptsetup close /dev/mapper/your_device

Anyway, you could choose to mount/umount your device manually all the
way, to avoid some third partys software to interact. This would solve
your problems immediately.

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problems booting Fedora 19 with UEFI

2013-09-28 Thread T.C. Hollingsworth
Hi!

Sorry for the lack of response; UEFI gives *all of us* nothing but grief.  ;-)

On Sun, Sep 22, 2013 at 2:11 AM, Edward Quick edwardqu...@hotmail.com wrote:
 Hi,

 I recently purchased a Dell Inspiron 5721 which came with Windows 8. I
 would like to dual boot this with Fedora but am having problems running
 the Fedora Install. I have Fedora-19-x86_64-DVD.iso on usb, and whenever
  I boot with UEFI (secure on or off), the
 boot process hangs at the line, Reached target Basic System:
snip output

 [  197.574126] localhost dracut-initqueue[395]: Warning: /dev/root does not 
 exist

Hmm, so the boot process can't find the root image on the USB drive.
This could be because whatever made the USB drive didn't set the
kernel command line arguments properly.

How did you make the USB drive?  With liveusb-creator, unetbootin, dd,
or something else?

If it was anything but liveusb-creator, it might not have done the
necessary magic to make UEFI boot work properly.  Grab it from
https://fedorahosted.org/liveusb-creator/ and try remaking the USB
drive with it, and see if it works.

 Please note that if I install in basic graphics mode, I still get the
 same result. The only way I can get the install to work, is if I boot in
  legacy mode. Unfortunately after doing this, I can no longer boot up
 Windows.

 If anyone knows how to fix this, I'd be really grateful for some help :-)

-T.C.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


readline (in c)

2013-09-28 Thread Patrick Dupre
Hello,

It is probably not the right list to post my question, just in case!

I would like to catch the ESC or ctl C key when using readline.

Is it possible?

Thank

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


mock -r *.src wildcard?

2013-09-28 Thread Frank Murphy
Put the following commands together:
#!/bin/bash
## Download no-bebug rawhide kernel
/usr/bin/cd 
/var/cache/yum/x86_64/20/fedora-rawhide-kernel-nodebug-source/packages
 \ 
/usr/bin/yumdownloader  --source --disablerepo=*
--enablerepo=fedora-rawhide-kernel-nodebug kernel 
 \ 
/usr/local/bin/mock-kernel

followed by:
#!/bin/bash 
## rebuild no-debug kernel using mock
cd /etc/mock  \
/usr/bin/mock -r fedora-20-x86_64
--noclean 
/var/cache/yum/x86_64/20/fedora-rawhide-kernel-nodebug-source/packages/kernel
# can kernel\* be used here,
# Because until downloaded don't knoe the exact veriosn of kernel?

  \ /usr/bin/createrepo /var/lib/mock/fedora-20-x86_64/result  \
 yum check-update

-- 
Regards,
Frank 
www.frankly3d.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Script Help (Bash)

2013-09-28 Thread Frank Murphy
Still haven't mastered bash, not even a jack (

Have strung some command(s) together in /etc/cron.daily

#!/bin/bash
## Download no-bebug rawhide kernel
/usr/bin/cd 
/var/cache/yum/x86_64/20/fedora-rawhide-kernel-nodebug-source/packages
 \ /usr/bin/reposync  --source -n =fedora-rawhide-kernel-nodebug
kernel  \ 
##  used to rebuild new no-debug
##  Rawhide kernels for non eol FedoraN
/usr/local/bin/mock-kernel --- (which is below question)
Question: How do I prevent the above line from happening if nothing
new was downloaded?


#!/bin/bash 
## rebuild no-debug kernel using mock
cd /etc/mock  \
/usr/bin/mock -r fedora-20-x86_64
--no-clean 
/var/cache/yum/x86_64/20/fedora-rawhide-kernel-nodebug-source/packages/*.rpm
 \
/usr/bin/createrepo /var/lib/mock/fedora-20-x86_64/result  \
yum check-update  \
/usr/bin/mock -r mock -r
fedora-19-x86_64 
/var/cache/yum/x86_64/20/fedora-rawhide-kernel-nodebug-source/packages/kernel

/snipped F18
-- 
Regards,
Frank 
www.frankly3d.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Which book to follow for RHCSA ?

2013-09-28 Thread Navdeep Singh Sidhu
Hello everybody,
Can any body suggest me any material or book which i can follow for the
prepration of RHCSA certification !!!

With regards
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


RE: Problems booting Fedora 19 with UEFI

2013-09-28 Thread Edward Quick


 From: tchollingswo...@gmail.com
 Date: Sat, 28 Sep 2013 01:40:29 -0700
 Subject: Re: Problems booting Fedora 19 with UEFI
 To: users@lists.fedoraproject.org
 
 Hi!
 
 Sorry for the lack of response; UEFI gives *all of us* nothing but grief.  ;-)
 
 On Sun, Sep 22, 2013 at 2:11 AM, Edward Quick edwardqu...@hotmail.com wrote:
  Hi,
 
  I recently purchased a Dell Inspiron 5721 which came with Windows 8. I
  would like to dual boot this with Fedora but am having problems running
  the Fedora Install. I have Fedora-19-x86_64-DVD.iso on usb, and whenever
   I boot with UEFI (secure on or off), the
  boot process hangs at the line, Reached target Basic System:
 snip output
 
  [  197.574126] localhost dracut-initqueue[395]: Warning: /dev/root does not 
  exist
 
 Hmm, so the boot process can't find the root image on the USB drive.
 This could be because whatever made the USB drive didn't set the
 kernel command line arguments properly.
 
 How did you make the USB drive?  With liveusb-creator, unetbootin, dd,
 or something else?
 
 If it was anything but liveusb-creator, it might not have done the
 necessary magic to make UEFI boot work properly.  Grab it from
 https://fedorahosted.org/liveusb-creator/ and try remaking the USB
 drive with it, and see if it works.
 
  Please note that if I install in basic graphics mode, I still get the
  same result. The only way I can get the install to work, is if I boot in
   legacy mode. Unfortunately after doing this, I can no longer boot up
  Windows.
 
  If anyone knows how to fix this, I'd be really grateful for some help :-)
 
 -T.C.
 -- 

Thank you TC, that was spot on! I was trying to install fedora with a usb 
created from unetbootin. The usb created by liveusb-creator booted fine though 
and now I can see Windows in the grub menu. Oddly (and not a major issue), I 
can only boot Windows if secure mode is off. Fedora boots fine if secure mode 
is on or off.


  -- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Script Help (Bash)

2013-09-28 Thread Frank Murphy
On Sat, 28 Sep 2013 13:55:15 +0100
Patrick O'Callaghan pocallag...@gmail.com wrote:

 On Sat, Sep 28, 2013 at 12:21 PM, Frank Murphy
 frankl...@gmail.com wrote:
 
  /usr/bin/cd
 
 
 Without looking any further, this is clearly wrong. Even if there
 is a /usr/bin/cd file (see recent discussion) in order to have any
 effect on the current directory used by subsequent commands you
 *have* to use the Shell built-in cd.
 
 poc

I got around that by adding script to path,
then alias my_script=. my_script

so it download where I need it.

-- 
Regards,
Frank 
www.frankly3d.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Script Help (Bash)

2013-09-28 Thread Junk



On 28 Sep 2013, at 14:19, Frank Murphy frankl...@gmail.com wrote:

 On Sat, 28 Sep 2013 13:55:15 +0100
 Patrick O'Callaghan pocallag...@gmail.com wrote:
 
 On Sat, Sep 28, 2013 at 12:21 PM, Frank Murphy
 frankl...@gmail.com wrote:
 
 /usr/bin/cd
 
 
 Without looking any further, this is clearly wrong. Even if there
 is a /usr/bin/cd file (see recent discussion) in order to have any
 effect on the current directory used by subsequent commands you
 *have* to use the Shell built-in cd.
 
 poc
 
 I got around that by adding script to path,
 then alias my_script=. my_script
 
 so it download where I need it.
 
 -- 
 Regards,
 

reposync -p dest-dir would be easier. 

Junk
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Script Help (Bash)

2013-09-28 Thread Frank Murphy
On Sat, 28 Sep 2013 14:27:57 +0100
Junk j...@therobinsonfamily.net wrote:


 
 reposync -p dest-dir would be easier. 
 
 Junk

That's cleaner,
but how do I stop the script if nothing to sync.


-- 
Regards,
Frank 
www.frankly3d.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problems booting Fedora 19 with UEFI

2013-09-28 Thread T.C. Hollingsworth
On Sat, Sep 28, 2013 at 6:15 AM, Edward Quick edwardqu...@hotmail.com wrote:
 Thank you TC, that was spot on!

No problem; glad it's working for you now!

 I was trying to install fedora with a usb
 created from unetbootin. The usb created by liveusb-creator booted fine
 though and now I can see Windows in the grub menu.

Yeah, the unetbootin folks are primarily concerned with Ubuntu so
Fedora installs made with it tend to break from time to time.  I
reported it to them so they can fix it for other folks in the future:
https://bugs.launchpad.net/unetbootin/+bug/1232455

 Oddly (and not a major
 issue), I can only boot Windows if secure mode is off. Fedora boots fine if
 secure mode is on or off.

That's rather ironic.  :-D

-T.C.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Script Help (Bash)

2013-09-28 Thread inode0
On Sat, Sep 28, 2013 at 6:21 AM, Frank Murphy frankl...@gmail.com wrote:
 Still haven't mastered bash, not even a jack (

 Have strung some command(s) together in /etc/cron.daily

 #!/bin/bash
 ## Download no-bebug rawhide kernel
 /usr/bin/cd 
 /var/cache/yum/x86_64/20/fedora-rawhide-kernel-nodebug-source/packages
  \ /usr/bin/reposync  --source -n =fedora-rawhide-kernel-nodebug
 kernel  \
 ##  used to rebuild new no-debug
 ##  Rawhide kernels for non eol FedoraN
 /usr/local/bin/mock-kernel --- (which is below question)
 Question: How do I prevent the above line from happening if nothing
 new was downloaded?

While there might be a cleaner way to detect that something was
downloaded what I do is log the output from reposync and then

if grep -q Download REPOSYNCLOG; then
  # do stuff when new things were synced
fi

John
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Script Help (Bash)

2013-09-28 Thread Frank Murphy
On Sat, 28 Sep 2013 10:31:07 -0500
inode0 ino...@gmail.com wrote:

 While there might be a cleaner way to detect that something was
 downloaded what I do is log the output from reposync and then
 
 if grep -q Download REPOSYNCLOG; then
   # do stuff when new things were synced
 fi
 
 John

With bash would there be an 
else 
exit
?

Maybe me need to lookup bash functions :(

-- 
Regards,
Frank 
www.frankly3d.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Script Help (Bash)

2013-09-28 Thread inode0
On Sat, Sep 28, 2013 at 11:30 AM, Frank Murphy frankl...@gmail.com wrote:
 On Sat, 28 Sep 2013 10:31:07 -0500
 inode0 ino...@gmail.com wrote:

 While there might be a cleaner way to detect that something was
 downloaded what I do is log the output from reposync and then

 if grep -q Download REPOSYNCLOG; then
   # do stuff when new things were synced
 fi

 John

 With bash would there be an
 else
 exit
 ?

You can add one if you want one.

if something; then
  something
else
  something else
fi

John
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Script Help (Bash)

2013-09-28 Thread g


hi frankly,

On 09/28/2013 11:30 AM, Frank Murphy wrote:

On Sat, 28 Sep 2013 10:31:07 -0500
inode0 ino...@gmail.com wrote:


While there might be a cleaner way to detect that something was
downloaded what I do is log the output from reposync and then

if grep -q Download REPOSYNCLOG; then
   # do stuff when new things were synced
fi


With bash would there be an
else
exit
?


frankly, no.

if the if fails, there is nothing else to do, so it will exit.


Maybe me need to lookup bash functions :(


frankly, would not hurt.


--

peace out.

in a world with out fences, who needs gates.

tc.hago.

g
.

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: 4in6 tunnel

2013-09-28 Thread Bill Davidsen

William Brown wrote:

Hi,

I am currently attempting to run an experiment with a segment of my
network that is ipv6 only. As such, I would like to run a 4 in 6 tunnel
to allow my systems to connect to v4 systems.

The ability to do this is described here:

http://tldp.org/HOWTO/Linux+IPv6-HOWTO/x1373.html

I would like to find a way to automate this process by the addition of
these commands to my ifcfg-enp0s25 file. I have been reading the ifup
files and cannot find an (obvious) method of doing this.

Has anyone done this before? Has anyone got ideas on how to approach
this.


You should be able to put it in rc.local

--
Bill Davidsen david...@tmr.com
  We have more to fear from the bungling of the incompetent than from
the machinations of the wicked.  - from Slashdot
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


F18: Problem with Abort

2013-09-28 Thread Dan Thurman

I did a ps command and found the following:

root   622 1  0 10:52 ?00:00:00 /usr/bin/abrt-watch-log 
-F BUG: WARNING: at INFO: possible recursive locking detected ernel BUG 
at list_del corruption list_add corruption do_IRQ: stack overflow: ear 
stack overflow (cur: eneral protection fault nable to handle kernel 
ouble fault: RTNL: assertion failed eek! page_mapcount(page) went 
negative! adness at NETDEV WATCHDOG ysctl table check failed : nobody 
cared IRQ handler type mismatch Machine Check Exception divide error: 
bounds: coprocessor segment overrun: invalid TSS: segment not present: 
invalid opcode: alignment check: stack segment: fpu exception: simd 
exception: iret exception: /var/log/messages -- /usr/bin/abrt-dump-oops -xD


So what do I need to do?
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: readline (in c)

2013-09-28 Thread Bill Oliver

On Sat, 28 Sep 2013, Patrick Dupre wrote:


Hello,

It is probably not the right list to post my question, just in case!

I would like to catch the ESC or ctl C key when using readline.

Is it possible?

Thank




I'm not sure, but I think you can set behaviors for special keys in an inputrc 
file.

See: http://unixhelp.ed.ac.uk/CGI/man-cgi?readline+3

billo
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problems booting Fedora 19 with UEFI

2013-09-28 Thread Robert Holtzman
On Sat, Sep 28, 2013 at 01:40:29AM -0700, T.C. Hollingsworth wrote:

 ...snip...
 
 If it was anything but liveusb-creator, it might not have done the
 necessary magic to make UEFI boot work properly.  Grab it from
 https://fedorahosted.org/liveusb-creator/ and try remaking the USB
 drive with it, and see if it works.

 .snip.

Will this liveusb-creator work with other OSs, specifically debian?


-- 
Bob Holtzman
Your mail is being read by tight lipped 
NSA agents who fail to see humor in Doctor 
Strangelove 
Key ID 8D549279


signature.asc
Description: Digital signature
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problems booting Fedora 19 with UEFI

2013-09-28 Thread Joe Zeff

On 09/28/2013 02:30 PM, Robert Holtzman wrote:

Will this liveusb-creator work with other OSs, specifically debian?


Not as far as I know.  I tried to use it recently to make a live USB 
version of Xubuntu for a friend of mine and failed.  AFAIK it's designed 
to work with Fedora only.  UnetBooten, however worked fine.

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


yum grouplist does not show all groups

2013-09-28 Thread Özgür

Hi,

The command

yum grouplist

does not show all available groups in Fedora 19. I had the same problem 
before in CentOS and other versions of Fedora. As an example, I can 
install


yum groupinstall Development Libraries

but yum grouplist does not show such a group. Is that a bug, or am I doing 
something wrong?


Regards, Ozgur
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org