Re: Latest systemd news

2014-11-17 Thread Juan Orti
El sáb, 15-11-2014 a las 08:53 -0500, Sam Varshavchik escribió:
> Making the rounds of various technical mailing lists yesterday, with a  
> subject that's typically a variation of "Just for yucks, and giggles" is a  
> link to a commit to systemd's git, adding DNS caching to systemd; in one,  
> huge 857 line glop. Here's its entire commit message: "resolved: add DNS  
> cache".

systemd-resolved is a daemon for resolving DNS. What's wrong about
caching? All DNS servers perform caching.

It's like if you have unbound at 127.0.0.1 as local resolver, that's a
very common setup.


signature.asc
Description: This is a digitally signed message part
-- 
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: network vs network manager wait online

2014-12-10 Thread Juan Orti

El 2014-12-10 15:17, Tom Horsley escribió:

I was trying to change from NetworkManager to network on a fresh
install of f21 workstation, and it sort of works, but the boot
hangs for a long time with a start job running for NetworkManager
Wait Online.

There doesn't seem to be any service with a name like that that I can
disable.

How do I make this stop? (Shouldn't the wait online stuff be smart
enough to recognize NetworkManager is masked and avoid waiting)?


NetworkManager-wait-online.service is disabled by default, if you 
enabled it in the past, you should disable it:


# systemctl disable NetworkManager-wait-online.service

--
Juan Orti
https://miceliux.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: network vs network manager wait online

2014-12-10 Thread Juan Orti

El 2014-12-10 15:43, Tom Horsley escribió:

On Wed, 10 Dec 2014 15:33:31 +0100
Juan Orti wrote:


NetworkManager-wait-online.service is disabled by default, if you
enabled it in the past, you should disable it:


This was a fresh install from scratch. I never enabled it
(but something did).


# systemctl disable NetworkManager-wait-online.service


Why doesn't this service show up in list-unit-files?


It shows up in my system. Maybe something related to the upper case 
letters?


# systemctl list-unit-files | grep -i networkmanager
dbus-org.freedesktop.NetworkManager.service enabled
NetworkManager-dispatcher.service   enabled
NetworkManager-wait-online.service  enabled
NetworkManager.service  enabled

--
Juan Orti
https://miceliux.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: How can I make systemd stop grabbing NFS mounts?

2014-01-15 Thread Juan Orti Alcaine
2014/1/15 Tom Horsley 

> Not when it was dead easy to change the init script to stick
> an '&' on the end of the umount command, it didn't wait then, and
> even when you forgot to do that, it didn't take hours to
> timeout like systemd does.
>
> But of course, according to the devs, it is a common myth that
> systemd isn't scriptable, so obviously there is a simple way to
> change this behavior, right? (Though I've been poking through
> the source and it sure looks to me like the only way to change
> this is to rebuild from source and check fstype for "nfs" to
> prevent it from trying forever to umount it).
>
>

Try to add the mount option "_netdev", it should schedule the mount/umount
after/before  the network.

-- 

Juan Orti

GPG Key: DEEBD08B - http://jorti.fedorapeople.org/pubkey.asc

Blog: https://apuntesderoot.wordpress.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: btrfs snapshot send howto?

2014-01-16 Thread Juan Orti Alcaine
2014/1/16 Neal Becker :
> Trying to follow the example in this article:
>
> http://arstechnica.com/information-technology/2014/01/bitrot-and-atomic-cows-inside-next-gen-filesystems/3/
>
> [root@nbecker1 nbecker]# btrfs subvolume list /
> ID 256 gen 563294 top level 5 path home
> ID 258 gen 563294 top level 5 path root
> ID 370 gen 563278 top level 5 path home/.snapshots
> ID 371 gen 563279 top level 5 path home/.snapshots/01162014
>
> [root@nbecker1 nbecker]# btrfs send /home/.snapshots/01162014 > /dev/null
> At subvol /home/.snapshots/01162014
> ERROR: open home/.snapshots/01162014 failed. No such file or directory
>
> OK, I have no clue why this doesn't work.
>


I'm not sure about the snapshots-inside-a-subvolume thing. I have the
root (subvolid=0) mounted in /mnt/btrfs and take there the snapshots,
so they are not nested:

# btrfs sub list /mnt/btrfs
ID 284 gen 15086 top level 5 path root
ID 1032 gen 12751 top level 5 path root@2014-01-14_23:45:01
ID 1033 gen 12777 top level 5 path root@2014-01-15_07:45:01
ID 1034 gen 12794 top level 5 path root@2014-01-15_08:00:01
ID 1035 gen 12811 top level 5 path root@2014-01-15_08:15:01
ID 1036 gen 12829 top level 5 path root@2014-01-15_08:30:01
ID 1037 gen 12844 top level 5 path root@2014-01-15_08:45:01
ID 1038 gen 12863 top level 5 path root@2014-01-15_09:00:01
ID 1039 gen 12880 top level 5 path root@2014-01-15_09:15:01

Also, to send a subvolume, it must be read-only:

# btrfs sub snapshot -r / /mnt/btrfs/my-ro-root
# btrfs send /mnt/btrfs/my-ro-root

You can later make a read-write snapshot of a read-only one to work with it.

-- 
Juan Orti

GPG Key: DEEBD08B - http://jorti.fedorapeople.org/pubkey.asc

Blog: https://apuntesderoot.wordpress.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: IPv6 breakage in NetworkManager

2014-01-22 Thread Juan Orti Alcaine
I have no problems with latest NetworkManager and IPv6 (configured as
static address)

2014/1/22 Dan Irwin :
> Hi all,
>
> Seeing significant issues with IPv6. After some time, IPv6 completely seems
> to stop working. IPv4 is unaffected.
>
> Re-connecting to wifi seems to restore IPv6 connectivity.
>
> However, various things (ssh, firefox) stop working completely. Open ssh
> sessions "freeze". Web page requests time out.
>
> At the same time, I can access IPv6 resources from other machines which do
> not run NetworkManager.
>
> Next time this occurs, I hope to have some time to diagnose this problem
> further. In the meantime, is anyone else seeing such breaking wrt IPv6?
>
> Something to note, I run numerous servers with IPv6, both physical and
> virtual. These servers run CentOS; None run NetworkManager, and all have
> working IPv6 connectivity.
>
> Cheers,
>
> Dan
>
> --
> 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
>



-- 
Juan Orti
GPG Key: DEEBD08B - http://jorti.fedorapeople.org/pubkey.asc
Blog: https://apuntesderoot.wordpress.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


Cannot ping6

2016-07-01 Thread Juan Orti Alcaine
advertisement, tgt is
fe80::5054:ff:fee1:2f75, length 24
15:42:02.992244 IP6 2001:470:7950:10::100 > ff02::1:ff00:1: ICMP6,
neighbor solicitation, who has 2001:470:7950:10::1, length 32
15:42:03.994060 IP6 2001:470:7950:10::100 > ff02::1:ff00:1: ICMP6,
neighbor solicitation, who has 2001:470:7950:10::1, length 32
^C
12 packets captured
12 packets received by filter
0 packets dropped by kernel


Thank you.

-- 
Juan Orti
https://apuntesderootblog.wordpress.com/
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org
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


NetworkManager-wait-online.service is not run

2016-07-04 Thread Juan Orti Alcaine
Hi,

I'm having problems with some services which depend of network-online.target
Although I've enabled NetworkManager-wait-online.service, it is not
run at boot. Any idea?

[root@xenon ~]# systemctl status network-online.target
● network-online.target - Network is Online
   Loaded: loaded (/usr/lib/systemd/system/network-online.target;
static; vendor preset: disabled)
   Active: inactive (dead)
 Docs: man:systemd.special(7)
   http://www.freedesktop.org/wiki/Software/systemd/NetworkTarget

[root@xenon ~]# systemctl status NetworkManager.service -n5
● NetworkManager.service - Network Manager
   Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service;
enabled; vendor preset: enabled)
   Active: active (running) since lun 2016-07-04 10:58:19 CEST; 2h 38min ago
 Main PID: 1191 (NetworkManager)
Tasks: 3 (limit: 512)
   CGroup: /system.slice/NetworkManager.service
   └─1191 /usr/sbin/NetworkManager --no-daemon

jul 04 10:58:27 xenon NetworkManager[1191]:   [1467622707.1465]
manager: startup complete
jul 04 10:58:51 xenon NetworkManager[1191]:   [1467622731.8390]
device (br-lan): link connected
jul 04 10:58:52 xenon NetworkManager[1191]:   [1467622732.2913]
connectivity: check for uri
'http://fedoraproject.org/static/hotspot.txt' failed with 'Error al
resolver «fedoraproject.org»: Name or service not known'
jul 04 10:58:52 xenon NetworkManager[1191]:   [1467622732.2940]
connectivity: check for uri
'http://fedoraproject.org/static/hotspot.txt' failed with 'Error al
resolver «fedoraproject.org»: Name or service not known'
jul 04 10:58:52 xenon NetworkManager[1191]:   [1467622732.6142]
manager: NetworkManager state is now CONNECTED_GLOBAL

[root@xenon ~]# systemctl status NetworkManager-wait-online.service
● NetworkManager-wait-online.service - Network Manager Wait Online
   Loaded: loaded
(/usr/lib/systemd/system/NetworkManager-wait-online.service; enabled;
vendor preset: disabled)
   Active: inactive (dead)

[root@xenon ~]# journalctl -b -u NetworkManager-wait-online.service
-- No entries --


-- 
Juan Orti
https://apuntesderootblog.wordpress.com/
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org
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: Changing umask in fedora24

2016-10-28 Thread Juan Orti Alcaine
2016-10-28 3:38 GMT+02:00 Fred Smith :
> On Thu, Oct 27, 2016 at 03:57:18PM -0400, Alex wrote:
>> Hi,
>>
>> I posted a message the other day regarding changing the umask for
>> users in an apache DocumentRoot on a fedora24 system and haven't
>> received any responses. Maybe my question too confusing with the
>> DocumentRoot discussion.
>>
>> Does anyone know how to reliably change the umask for regular users
>> (specifically the apache user) on fedora24?
>
> put a umask command in the user's .bash_profile?

If it is running as a service, you also have the UMask directive.

# systemctl edit httpd.service

[Service]
UMask=0002


-- 
Juan Orti
https://apuntesderootblog.wordpress.com/
GPG: 61F0 8272 6882 BCA6 3A35  88F6 B630 4B72 DEEB D08B
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


F25-Atomic - Error creating Vagrant synced folder

2016-11-25 Thread Juan Orti Alcaine
Hi,

I'm launching a fedora/25-atomic-host with Vagrant but it fails to
create the synced folder although the VM boots fine and I can ssh in
it. I haven't done any customization, just launching the box like
explained in the instructions to get Fedora 25 Atomic.

Should I open a bug?

This is the error:

---
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

mkdir -p /vagrant

Stdout from the command:



Stderr from the command:

mkdir: cannot create directory ‘/vagrant’: Operation not permitted
---

Thanks.

-- 
Juan Orti
https://apuntesderootblog.wordpress.com/
GPG: 61F0 8272 6882 BCA6 3A35  88F6 B630 4B72 DEEB D08B
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: F25-Atomic - Error creating Vagrant synced folder

2016-11-25 Thread Juan Orti Alcaine
2016-11-25 15:12 GMT+01:00 Matthew Miller :
> On Fri, Nov 25, 2016 at 10:09:16AM +0100, Juan Orti Alcaine wrote:
>> I'm launching a fedora/25-atomic-host with Vagrant but it fails to
>> create the synced folder although the VM boots fine and I can ssh in
>> it. I haven't done any customization, just launching the box like
>> explained in the instructions to get Fedora 25 Atomic.
>> Should I open a bug?
>
> Yes please. An issue at https://pagure.io/atomic-wg/ is probably the
> best place.
>

Created: https://pagure.io/atomic-wg/issue/181
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Bridge LAN and WiFi interfaces

2012-11-19 Thread Juan Orti Alcaine
Use a bonding interface for that


2012/11/15 Frank Pikelner 

> Hello,
>
> I'm running a couple of Lenovo T410 with Fedora 16 and 17. The laptops are
> generally connected via LAN or WiFi to the same subnet (typically same DHCP
> address).
>
> Is there a way to bridge both the LAN and Wifi interfaces so that the
> communication is done using the bridge and serviced by either interface
> that is currently active?
>
> I'm using the default Network Manager and mostly use the laptops for
> working and testing KVM with virtual hosts.
>
> Thanks,
>
> Frank
>
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
>
>
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Fedora hangs driving me nuts, in Windows it works without problems!

2013-01-03 Thread Juan Orti Alcaine
I can only say I'm runnig on a sandybridge CPU i7-2600K with GPU kernel
driver i915 and have absolutly no problems at all.

Is your kernel tainted? check this:
# cat /proc/sys/kernel/tainted


2013/1/3 valent.turko...@gmail.com 

> I'm I not in 2013? Is this back to 1999 so I need to recompile my own
> kernel to get anything working? I have been using Fedora since FC1 and
> reported numerous bugs but none stopped me from working, since F16 kernel
> (sandybridge atleast) is shit. I have F17 and F18beta on few other machines
> and they are working great. I'm considering switching to F18 but 32bit
> kernel and crossing my fingers.
>
> I'm willing to work with kernel developers and anybody else to track down
> root cause of this issue and help other Fedora and future Red Hat users to
> avoid this issue, but so far nobody is interested.
>
>
> On Wed, Jan 2, 2013 at 3:23 PM, Heinz Diehl  wrote:
>
>> On 02.01.2013, valent.turko...@gmail.com wrote:
>>
>> > Shit, frozen again after almost 5 days of uptime. I'm switching to
>> debian
>> > if Fedora 18 kernel turns out to be shit as F16 & F17 :(
>>
>> How about just installing a plain vanilla 3.6.11 or 3.7.1 from
>> kernel.org?
>>
>> --
>> users mailing list
>> users@lists.fedoraproject.org
>> To unsubscribe or change subscription options:
>> https://admin.fedoraproject.org/mailman/listinfo/users
>> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
>> Have a question? Ask away: http://ask.fedoraproject.org
>>
>
>
>
> --
> follow me - www.twitter.com/valentt & http://kernelreloaded.blog385.com
> linux, anime, spirituality, wireless, scuba, linuxmce smart home, zwave
> ICQ: 2125241, Skype: valent.turkovic, MSN: valent.turko...@hotmail.com
>
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
>
>
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: network-scripts documentation

2013-01-27 Thread Juan Orti Alcaine
2013/1/27 Sam Varshavchik 

> Google isn't helping me find the documentation for /etc/sysconfig/network-
> **scripts/* in F18. It brings me to F14's "Deployment Guide", and
> browsing TOCs for the F18 documentation doesn't find anything promising.
>
> My old router, that was running DD-WRT firmware, bit the dust. The stock
> brand router that replaced it doesn't have the ability to send NTP for
> clients via DHCP. I'm trying to figure out if I had drop something into
> /etc/sysconfig/network-scripts/ifcfg-*, that'll have the effect of doing
> that.
>

The documentation is in: /usr/share/doc/initscripts-9.42.1/sysconfig.txt
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: gpg-agent

2013-08-23 Thread Juan Orti Alcaine

El 2013-08-22 20:18, Martin S escribió:

As I understand it the file gpg-agent-startup.sh should be placed in
/etc/kde/env and made executable for the gpg-agent to start att boot 
time?

Agent is also enabled in the ~/.gnupg/gpg.conf

Running the file manually it starts the agent, but after having booted, 
the
gpg-agent isn't started, so it seems the directory/file isn't read at 
boot

time?

Where should that file be place to be run at startup?

/Martin S



My setup with ssh-agent and gpg-agent:

$ cat ~/.kde/env/ssh-agent.sh
#!/bin/bash
# SSH Agent
if [ -f "${HOME}/.ssh/environment" ]; then
. "${HOME}/.ssh/environment" > /dev/null
fi

$ cat ~/.kde/env/gpg-agent.sh
#!/bin/bash
# Set GPG Agent environment
if `tty -s`; then
   GPG_TTY="$(tty)"
   export GPG_TTY
else
   unset GPG_TTY
fi
if [ -n "$(pgrep -U $LOGNAME gpg-agent)" -a -f 
${HOME}/.gnupg/gpg-agent-info ]; then

   . ${HOME}/.gnupg/gpg-agent-info
   export GPG_AGENT_INFO
else
   unset GPG_AGENT_INFO
   if [ -f ${HOME}/.gnupg/gpg-agent-info ]; then
  rm -f ${HOME}/.gnupg/gpg-agent-info
   fi
fi

$ cat ~/.kde/Autostart/ssh-add.sh
#!/bin/sh
ssh-add @reboot umask 0077; rm -f $HOME/.gnupg/gpg-agent-info; pgrep -U 
$LOGNAME gpg-agent >/dev/null 2>&1 || gpg-agent --daemon 
--write-env-file "${HOME}/.gnupg/gpg-agent-info" >/dev/null 2>&1


# SSH Agent
@reboot umask 0077; rm -f $HOME/.ssh/environment; pgrep -U 
$LOGNAME ssh-agent >/dev/null 2>&1 || ssh-agent | sed 's/^echo/#echo/' > 
$HOME/.ssh/environment

--
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: gpg-agent

2013-08-23 Thread Juan Orti Alcaine

El 2013-08-23 07:19, Juan Orti Alcaine escribió:

El 2013-08-22 20:18, Martin S escribió:

As I understand it the file gpg-agent-startup.sh should be placed in
/etc/kde/env and made executable for the gpg-agent to start att boot 
time?

Agent is also enabled in the ~/.gnupg/gpg.conf

Running the file manually it starts the agent, but after having 
booted, the
gpg-agent isn't started, so it seems the directory/file isn't read at 
boot

time?

Where should that file be place to be run at startup?

/Martin S



My setup with ssh-agent and gpg-agent:



I forgot ~/.bashrc :

# GPG Agent
GPG_TTY="$(tty)"
export GPG_TTY
if [ -n "$(pgrep -U $LOGNAME gpg-agent)" -a -f 
${HOME}/.gnupg/gpg-agent-info ]; then

   . ${HOME}/.gnupg/gpg-agent-info
   export GPG_AGENT_INFO
else
   unset GPG_AGENT_INFO
   if [ -f ${HOME}/.gnupg/gpg-agent-info ]; then
  rm -f ${HOME}/.gnupg/gpg-agent-info
   fi
fi

# SSH Agent
if [ -f "${HOME}/.ssh/environment" ]; then
. "${HOME}/.ssh/environment" > /dev/null
fi

--
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: OpenSSL: ECDHE arrives in Fedora

2013-10-16 Thread Juan Orti Alcaine

El 2013-10-16 22:51, Itamar Reis Peixoto escribió:


sounds good,

I think now we can have bitcoin in fedora right ?



I'm working on a bitcoin package, I hope to submit it soon.

--
Juan Orti
GPG Key: DEEBD08B - https://www.miceliux.com/~juan/pubkey.asc
Blog: https://apuntesderoot.wordpress.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: OpenSSL: ECDHE arrives in Fedora

2013-10-18 Thread Juan Orti Alcaine

El 2013-10-17 17:57, Suvayu Ali escribió:


There is already a community repo with bitcoin packages:





I've based my work on that:
https://bugzilla.redhat.com/show_bug.cgi?id=1020292

--
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: KDE without gnome-shell?

2013-10-31 Thread Juan Orti Alcaine

El 2013-10-31 12:47, Oliver Ruebenacker escribió:

 Hello,

  When I boot, my system will start gnome-shell, before I can log in
and choose whether I want Gnome of KDE. When I uninstall gnome-shell,
it fails to boot.



# yum groupinstall kde-desktop-environment
# systemctl enable kdm.service

--
Juan Orti
GPG Key: DEEBD08B - https://www.miceliux.com/~juan/pubkey.asc
Blog: https://apuntesderoot.wordpress.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


What user and password to use in cloud images?

2013-11-07 Thread Juan Orti Alcaine
Hello, I've deployed a Fedora20 Beta qcow2 image in a VM, but I'm unable to 
login.

What is the default user and password?
And what is the cloud-init program that starts at boot? it tries to contact 
some http url, but it fails.

I cannot find any documentation about it.
Thank you.

-- 
Juan Orti
GPG Key: DEEBD08B - https://www.miceliux.com/~juan/pubkey.asc
Blog: https://apuntesderoot.wordpress.com/

signature.asc
Description: This is a digitally signed message part.
-- 
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: What user and password to use in cloud images?

2013-11-07 Thread Juan Orti Alcaine
El Jueves, 7 de noviembre de 2013 14:55:57 Kevin Fenzi escribió:
> On Thu, 07 Nov 2013 21:56:54 +0100
> 
> Juan Orti Alcaine  wrote:
> > Hello, I've deployed a Fedora20 Beta qcow2 image in a VM, but I'm
> > unable to login.
> > 
> > What is the default user and password?
> 
> user 'fedora' and no password (which you will be unable to login to via
> ssh since sshd defaults to not allowing empy passwords). You should be
> able to login on console tho.
> 

I cannot login with the user 'fedora'. I'm connected to the console (it is a 
CloudStack  cloud), and have tried all combinations of ec2-user/fedora 
/passwords/without-passwords.

I also have tried in a local KVM vm, but cannot login.
These are the images I have used:

Fedora-x86_64-20-Beta-TC6-20131026-sda.qcow2
Fedora-x86_64-20-Beta-20131106-sda.qcow2

Should I report a bug or I am missing something?

-- 
Juan Orti
GPG Key: DEEBD08B - https://www.miceliux.com/~juan/pubkey.asc
Blog: https://apuntesderoot.wordpress.com/

signature.asc
Description: This is a digitally signed message part.
-- 
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: What user and password to use in cloud images?

2013-11-07 Thread Juan Orti Alcaine

El 2013-11-08 04:05, Matthew Miller escribió:

On Thu, Nov 07, 2013 at 09:56:54PM +0100, Juan Orti Alcaine wrote:
Hello, I've deployed a Fedora20 Beta qcow2 image in a VM, but I'm 
unable to

login.
What is the default user and password?


There is none -- as you've discovered, that's created by cloud-init.

And what is the cloud-init program that starts at boot? it tries to 
contact

some http url, but it fails.


See http://cloudinit.readthedocs.org/en/latest/

If you are running the cloud image locally, you will need to either 
provide
a "fake" ec2 metadata service -- see 
https://gist.github.com/smoser/1278651
for one example -- or use the "nocloud" data source to provide files 
via an

attached vfat or iso filesystem. Docs for the latter are at
http://cloudinit.readthedocs.org/en/latest/topics/datasources.html#no-cloud.



Understood. Thank you!
--
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


VMs do not shutdown when powering off a F20 host

2013-11-19 Thread Juan Orti Alcaine
Hello,

I have upgraded to F20 and now my virtual machines don't shutdown when I
shutdown the host.

In /etc/sysconfig/libvirt-guests I have:
ON_SHUTDOWN=shutdown
SHUTDOWN_TIMEOUT=100

This is what I see in the log (in Spanish):

# journalctl -a _SYSTEMD_UNIT=libvirt-guests.service
_SYSTEMD_UNIT=libvirtd.service

nov 17 23:38:15 xenon.miceliux.com libvirtd[750]: libvirt version: 1.1.3.1,
package: 1.fc20 (Fedora Project, 2013-11-06-18:12:08,
buildvm-04.phx2.fedoraproject.org)
nov 17 23:38:15 xenon.miceliux.com libvirtd[750]: Received unexpected event 1
nov 17 23:38:16 xenon.miceliux.com libvirtd[750]: Error interno: Fin del
archivo desde monitor
nov 17 23:38:16 xenon.miceliux.com libvirtd[750]: Error interno: Falta objeto
de respuesta de monitor
nov 17 23:38:16 xenon.miceliux.com libvirt-guests.sh[21049]: Ejecutando
huéspedes en URI default:lithium
nov 17 23:38:16 xenon.miceliux.com libvirt-guests.sh[21049]: Cerrando
huéspedes en URI default...
nov 17 23:38:16 xenon.miceliux.com libvirt-guests.sh[21049]: Starting shutdown
on guest: lithium
nov 17 23:38:17 xenon.miceliux.com libvirtd[750]: Object (nil) ((unknown)) is
not a virObjectLockable instance
nov 17 23:38:17 xenon.miceliux.com libvirtd[750]: Argumento inválido: el
monitor no debe poseer un valor NULL
nov 17 23:38:17 xenon.miceliux.com libvirt-guests.sh[21049]: Error:Falló al
apagar el dominio 3ee0acb2-3da9-7045-868c-3dec16e03ad1
nov 17 23:38:17 xenon.miceliux.com libvirt-guests.sh[21049]: Error:Argumento
inválido: el monitor no debe poseer un valor NULL


Which translated is something like:

nov 17 23:38:15 xenon.miceliux.com libvirtd[750]: libvirt version: 1.1.3.1,
package: 1.fc20 (Fedora Project, 2013-11-06-18:12:08,
buildvm-04.phx2.fedoraproject.org)
nov 17 23:38:15 xenon.miceliux.com libvirtd[750]: Received unexpected event 1
nov 17 23:38:16 xenon.miceliux.com libvirtd[750]: Internal error: End of file
from monitor
nov 17 23:38:16 xenon.miceliux.com libvirtd[750]: Internal error: Response
object from monitor is missing
nov 17 23:38:16 xenon.miceliux.com libvirt-guests.sh[21049]: Running guests in
URI default:lithium
nov 17 23:38:16 xenon.miceliux.com libvirt-guests.sh[21049]: Closing guests in
default URI...
nov 17 23:38:16 xenon.miceliux.com libvirt-guests.sh[21049]: Starting shutdown
on guest: lithium
nov 17 23:38:17 xenon.miceliux.com libvirtd[750]: Object (nil) ((unknown)) is
not a virObjectLockable instance
nov 17 23:38:17 xenon.miceliux.com libvirtd[750]: Invalid argument: monitor
must not have a NULL value
nov 17 23:38:17 xenon.miceliux.com libvirt-guests.sh[21049]: Error:Failed to
shutdown domain 3ee0acb2-3da9-7045-868c-3dec16e03ad1
nov 17 23:38:17 xenon.miceliux.com libvirt-guests.sh[21049]: Error:Invalid
argument: monitr must not have a NULL value


Any idea? do I open a bug report?

--
Juan Orti
GPG Key: DEEBD08B - https://www.miceliux.com/~juan/pubkey.asc
Blog: https://apuntesderoot.wordpress.com/



signature.asc
Description: PGP 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: VMs do not shutdown when powering off a F20 host

2013-11-19 Thread Juan Orti Alcaine
El Martes, 19 de noviembre de 2013 21:01:49 Mateusz Marzantowicz escribió:
> On 19.11.2013 19:32, Juan Orti Alcaine wrote:
> > Hello,
> > 
> > I have upgraded to F20 and now my virtual machines don't shutdown when I
> > shutdown the host.
> > 
> > [...]
> > 
> > Any idea? do I open a bug report?
> 
> https://lists.fedoraproject.org/pipermail/test/2013-November/118835.html
> 
> 
> 
> Mateusz Marzantowicz

Thank you.
-- 
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: sharing /boot among multible Linux distros

2013-11-28 Thread Juan Orti Alcaine

Give a look to this proposal:

http://www.freedesktop.org/wiki/Specifications/BootLoaderSpec/


--
Juan Orti
GPG Key: DEEBD08B - http://jorti.fedorapeople.org/pubkey.asc
Blog: https://apuntesderoot.wordpress.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


Kernel tainted

2012-02-02 Thread Juan Orti Alcaine
Hello, I see that my kernel is tainted but I don't know which module
to blame. The taint code is 4096, so it must be a out-of-tree module.
I have listed all modules, and all seem to be in-tree, I have used
this command:

# lsmod | awk {'print $1'} | xargs modinfo | grep intree

and all modules have intree: Y

I have examined the kernel logs, but can't find why the kernel is
tainted. I haven't compiled any kernel module myself, all are bundled
in Fedora 16 default kernel.

How can I debug this? These are the modules loaded:

Module  Size  Used by
tcp_lp 12663  0
fuse   77538  3
ppdev  17635  0
parport_pc 28082  0
lp 17874  0
parport44515  3 ppdev,parport_pc,lp
ebtable_nat12807  0
ebtables   30649  1 ebtable_nat
ipt_MASQUERADE 12880  3
iptable_nat13383  1
nf_nat 25322  2 ipt_MASQUERADE,iptable_nat
xt_CHECKSUM12549  1
iptable_mangle 12695  1
tun22768  3
lockd  84578  0
bridge 90784  0
stp12823  1 bridge
llc14090  2 bridge,stp
rfcomm 68661  4
bnep   19570  2
ip6t_REJECT12939  1
nf_conntrack_ipv6  14290  19
nf_defrag_ipv6 18139  1 nf_conntrack_ipv6
ip6table_filter12815  1
ip6_tables 26976  1 ip6table_filter
nf_conntrack_netbios_ns12665  0
nf_conntrack_broadcast12527  1 nf_conntrack_netbios_ns
nf_conntrack_ipv4  14622  32 iptable_nat,nf_nat
nf_defrag_ipv4 12673  1 nf_conntrack_ipv4
xt_state   12578  48
nf_conntrack   82331  8
ipt_MASQUERADE,iptable_nat,nf_nat,nf_conntrack_ipv6,nf_conntrack_netbios_ns,nf_conntrack_broadcast,nf_conntrack_ipv4,xt_state
sunrpc235041  2 lockd
snd_hda_codec_hdmi 36277  1
snd_hda_codec_realtek   231881  1
arc4   12529  2
raid45668735  1
async_raid6_recov  17112  1 raid456
async_pq   13278  2 raid456,async_raid6_recov
raid6_pq   87918  2 async_raid6_recov,async_pq
async_xor  12917  3 raid456,async_raid6_recov,async_pq
xor12849  1 async_xor
async_memcpy   12603  2 raid456,async_raid6_recov
async_tx   13254  5
raid456,async_raid6_recov,async_pq,async_xor,async_memcpy
uvcvideo   71509  0
videodev   97776  1 uvcvideo
ir_lirc_codec  13021  0
media  20408  2 uvcvideo,videodev
lirc_dev   19504  1 ir_lirc_codec
v4l2_compat_ioctl3216726  1 videodev
ir_mce_kbd_decoder 13248  0
ir_sony_decoder12713  0
ir_jvc_decoder 12751  0
ir_rc6_decoder 12833  0
ir_rc5_decoder 12710  0
ir_nec_decoder 12915  0
mceusb 17920  0
rc_core26635  8
ir_lirc_codec,ir_mce_kbd_decoder,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,ir_nec_decoder,mceusb
snd_usb_audio 125353  1
snd_usbmidi_lib24763  1 snd_usb_audio
snd_rawmidi29530  1 snd_usbmidi_lib
eeepc_wmi  12826  0
asus_wmi   23919  1 eeepc_wmi
sparse_keymap  13526  1 asus_wmi
ath5k 149828  0
ath23089  1 ath5k
btusb  23904  2
bluetooth 244750  23 rfcomm,bnep,btusb
mac80211  439421  1 ath5k
snd_hda_intel  33276  2
snd_hda_codec 114615  3
snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_intel
microcode  23240  0
cfg80211  194802  3 ath5k,ath,mac80211
snd_hwdep  17611  2 snd_usb_audio,snd_hda_codec
snd_seq64807  0
iTCO_wdt   17948  0
snd_seq_device 14129  2 snd_rawmidi,snd_seq
iTCO_vendor_support13419  1 iTCO_wdt
rfkill 21410  5 asus_wmi,bluetooth,cfg80211
i2c_i801   17765  0
snd_pcm97100  4
snd_hda_codec_hdmi,snd_usb_audio,snd_hda_intel,snd_hda_codec
r8169  60789  0
mii13527  1 r8169
snd_timer  28815  2 snd_seq,snd_pcm
snd74425  18
snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_usb_audio,snd_usbmidi_lib,snd_rawmidi,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_seq,snd_seq_device,snd_pcm,snd_timer
soundcore  14484  1 snd
snd_page_alloc 18101  2 snd_hda_intel,snd_pcm
virtio_net 22936  0
kvm_intel 132336  3
kvm   401177  1 kvm_intel
uinput 17606  0
mxm_wmi12823  0
wmi18697  2 asus_wmi,mxm_wmi
usb_storage56207  0
i915  452926  4
drm_kms_helper 40141  1 i915
drm   225894  5 i915,drm_kms_helper
i2c_algo_bit   13156  1 i915
i2c_core   37955  6
videodev,i2c_i801,i915,drm_kms_helper,drm,i2c_algo_bit

Re: Fedora 18 and network

2013-02-20 Thread Juan Orti Alcaine
2013/2/20 Martín Marqués 

> 2013/2/20 Reindl Harald :
>
> > well it is a sysv-script, but chkconfig/systemctl are working in both
> > directions as wrapper
>
> U
>
> # systemctl enable network.service
> network.service is not a native service, redirecting to /sbin/chkconfig.
> Executing /sbin/chkconfig network on
>
> Looks like network is still a SysV
>
> I'll check later if after rebooting network come up or not.
>

network.service is the old SysV scripts, it is disabled by default.
NetworkManager.service is the default in Fedora.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: anyone managed to install F18 or f19 beta under Virtualbox???

2013-06-19 Thread Juan Orti Alcaine

El 2013-06-19 06:40, Fernando Cassia escribió:

On Tue, Jun 18, 2013 at 10:22 PM, Dan Thurman  wrote:


I gave up trying to install F18/9.  The installer is unable
to find and use an existing partition and thinks that
there is no storage space available.


Thanks to everyone who replied. I think Dan is right. The only way I
was able to install (F19 beta) was after I removed all existing
partitions... in fact I removed the previous .vdi altogether and
created a new vbox VM with an empty 6GB .vdi, telling the anaconda to
use the whole drive w LVM.



I have installed F19 in VirtualBox without problems, and with existing 
partitions. Just click in "reclaim space" when you are prompted to 
select manual or automatic partitioning.


--
Juan Orti
PGP Key: 0627 6B28 7B8D 51FF C2AD  6A7A 2681 05AE 108A A109
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Booting

2013-07-04 Thread Juan Orti Alcaine

El 2013-07-04 02:04, T.C. Hollingsworth escribió:
On Jul 3, 2013 1:12 PM, "Richard Vickery"  
wrote:

> Is there a way to reboot the computer while its stuck on "Starting
GNOME Desktop Manager"?

Usually by this point in the boot process you can press CTRL+ALT+F2 to
get a console login. From there you can run ’reboot ’ to restart your
system, or even better, just try restarting gdm with ’systemctl reboot
gdm ’.

-T.C.


Another good option if everything else fails (and you have configured 
previously kernel.sysrq=1 with sysctl) is:


Alt+SysRq+ {R, E, I, S, U, B}

See: https://en.wikipedia.org/wiki/Magic_SysRq_key#Uses

--
Juan Orti
PGP Key: 0627 6B28 7B8D 51FF C2AD  6A7A 2681 05AE 108A A109
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Booting

2013-07-05 Thread Juan Orti Alcaine

El 2013-07-04 23:52, g escribió:

hello juan,

On 07/04/2013 04:49 AM, Juan Orti Alcaine wrote:
<>

Another good option if everything else fails (and you have configured
previously kernel.sysrq=1 with sysctl) is:

Alt+SysRq+ {R, E, I, S, U, B}

See: https://en.wikipedia.org/wiki/Magic_SysRq_key#Uses

very good read. thanks for posting.

1 question. would not {r, e, i, s, u, b}, lower case, be used,
as that is what is shown in chart?



Yes, the letters should be lower case


--
Juan Orti
PGP Key: 0627 6B28 7B8D 51FF C2AD  6A7A 2681 05AE 108A A109
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Booting

2013-07-05 Thread Juan Orti Alcaine

El 2013-07-05 05:47, Tim escribió:

Allegedly, on or about 04 July 2013, Juan Orti Alcaine sent:
Another good option if everything else fails (and you have configured
previously kernel.sysrq=1 with sysctl) is:

Alt+SysRq+ {R, E, I, S, U, B}

See: https://en.wikipedia.org/wiki/Magic_SysRq_key#Uses

Would you expect this to work with USB keyboards?  There's more
protocols in the way of USB than PS/2, or other schemes, requiring a
working operating system.



I've had no problems with USB keyboards, it should work as expected.

--
Juan Orti
PGP Key: 0627 6B28 7B8D 51FF C2AD  6A7A 2681 05AE 108A A109
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Never ending stream of PackageKit messages

2017-09-06 Thread Juan Orti Alcaine
Hi,

My journal is full of these PackageKit messages, one of them each
second and never stop. Anyone knows how to stop them?

I have opened this bug:
https://bugzilla.redhat.com/show_bug.cgi?id=1479665

sep 06 21:27:18 xenon PackageKit[32714]: get-updates transaction
/1315687_cdacdeee from uid 1000 finished with success after 528ms
sep 06 21:27:18 xenon PackageKit[32714]: get-updates transaction
/1315688_cbbabdbc from uid 1000 finished with success after 55ms
sep 06 21:27:19 xenon PackageKit[32714]: get-updates transaction
/1315689_eeabbdec from uid 1000 finished with success after 30ms
sep 06 21:27:20 xenon PackageKit[32714]: get-updates transaction
/1315690_aadccaca from uid 1000 finished with success after 31ms
sep 06 21:27:21 xenon PackageKit[32714]: get-updates transaction
/1315691_dbadaebb from uid 1000 finished with success after 35ms
sep 06 21:27:22 xenon PackageKit[32714]: get-updates transaction
/1315692_aaadddec from uid 1000 finished with success after 30ms
sep 06 21:27:23 xenon PackageKit[32714]: get-updates transaction
/1315693_bbadcdcc from uid 1000 finished with success after 36ms
sep 06 21:27:24 xenon PackageKit[32714]: get-updates transaction
/1315694_dcecbede from uid 1000 finished with success after 33ms


Thanks.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


No Flash in Firefox 56?

2017-10-04 Thread Juan Orti Alcaine
Hi,

My Firefox has been upgraded to version 56 (F26) and I cannot use
flash pages any more. I have the addon installed and in click-to-play
mode, but I just get an empty space. Is it a bug? I though flash is
still going to be supported until 2020.

Thanks.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: No Flash in Firefox 56?

2017-10-04 Thread Juan Orti Alcaine
2017-10-04 16:13 GMT+02:00 Ambrogio :
> Hi Juan
> Il giorno mer, 04/10/2017 alle 13.56 +0200, Juan Orti Alcaine ha
> scritto:
>> Hi,
>>
>> My Firefox has been upgraded to version 56 (F26) and I cannot use
>> flash pages any more. I have the addon installed and in click-to-play
>> mode, but I just get an empty space. Is it a bug? I though flash is
>> still going to be supported until 2020.
>
> It works for me.
> I installed in this moment the flash plugin because I didn't done
> before.
>
> What is the result of
> # dnf list flash-plugin

$ rpm -q flash-plugin
flash-plugin-27.0.0.130-release.x86_64

>
> I enabled the Adobe repo for 64 bit with this commands:
>
> # rpm -ivh 
> http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm
> # rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
> # dnf install flash-plugin
>
> I tested the plugin on this page: https://helpx.adobe.com/flash-player.html

I see the gray box to click and enable flash, but after clicking on
it, the gray box dissapears and nothing happens.

Maybe is this bug: https://bugzilla.redhat.com/show_bug.cgi?id=1497932
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: No Flash in Firefox 56?

2017-10-04 Thread Juan Orti Alcaine
2017-10-04 18:09 GMT+02:00 Juan Orti Alcaine :
> Maybe is this bug: https://bugzilla.redhat.com/show_bug.cgi?id=1497932

Confirmed, that update fixes the problem with the flash plugin.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org