Re: Xorg.log.0

2018-05-28 Thread Fernando Gozalo

Hello:


Should there be an Xorg.log.0 in fedora 28? How come I don't have one
after a brand new install?


Look for it in ~/.local/share/xorg/Xorg.0.log

Regards,
Fernando.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/A7I45YKNY5O33C7QCXRNYIRXOYBRDSUM/


Re: First NFS entry in fstab not mounting at boot

2010-05-20 Thread Fernando Gozalo
Hi,

> Inside of /etc/rc.d/init.d/netfs - the part that mounts the NFS shares, I
> put:
>
> sleep 30


Is your switch a Cisco one?

http://fedoraproject.org/wiki/Anaconda/NetworkIssues#Cisco_Switch_Issues

Regards,
Fernando.


-- 
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


Re: bonded nic not starting at boot

2010-09-03 Thread Fernando Gozalo
Hi,

> /etc/init.d/network stop and then /etc/init.d/network start brings the
> bond0 interface down and up as expected.  Could there be an issue
> with when the aliases are available from /etc/modprobe.conf?  There
> is nothing in dmesg or /var/log/messages that show the system even trying
> to start this interface on boot. 


/sbin/chkconfig network on

Regards,
Fernando.



-- 
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


Re: how to list packages installed from a particular repo

2014-01-28 Thread Fernando Gozalo
Hi

> I was wondering if there is an easy way to list all the packages
> installed on a F20 system from a particular repo.


yum list | grep '@repo'

Regards,
Fernando.



-- 
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 to disable IPv6 configuration properly?

2016-03-01 Thread Fernando Gozalo

Hi,

El 01/03/16 a las 20:15, Peter Boy escribió:

Now I’m wondering what I may have overlooked or missed?


Try this:
https://wiki.centos.org/FAQ/CentOS6#head-d47139912868bcb9d754441ecb6a8a10d41781df

Fernando.
--
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: Multiple default routes, same subnet

2012-11-09 Thread Fernando Gozalo
Hi,

> I have two internet links, from different ISPs for my office network,
> each one with it's own router (which is a linux PC) so I don't loose
> internet connectivity easily. One ISP has a much higher bandwitch, so
> usually all my computers use it as the default gateway. The other one is
> intended as a contingency link.

Another point of view for your problem. As one router/link is master and
the other is backup and both are linux PC, you can configure VRRP in the
LAN side of both of them using as virtual IP the IP configured as default
gateway in all your computers. You can have in the master router a script
that monitors the internet link and change the priority of the VRRP config
according with the status of the internet link.

Regards,
Fernando.


-- 
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


F18: ~/.vnc/xstartup example

2013-01-30 Thread Fernando Gozalo
Please,

could someone copy-paste a working ~/.vnc/xstartup so I can have a gnome3
session when I access my computer using VNC?

The ~/.vnc/xstartup I used in F17 doesn't work in F18.

Thanks,
Fernando.



-- 
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: F18: ~/.vnc/xstartup example

2013-01-31 Thread Fernando Gozalo
Hi,

> do us a favor for archive sake, post what you had/used for the F17
> version.


First time I used this info
(http://www.oracle-base.com/articles/linux/configuring-vnc-server-on-linux.php)
to correlate the old and the new config.

To use the display number 10 this is the recipe:

1. Install tigervnc-server:

yum install tigervnc-server

2. Create the .service file:

cp /lib/systemd/system/vncserver@.service \
   /lib/systemd/system/vncserver@:10.service

3. In the new file are instruccions to customize vncserver@:10.service.
You need to change the "username" that will use this access. In a command:

sed -i -e 's//username/g' /usr/lib/systemd/system/vncserver@:10.service

   or, like me, customize the start line with "-geometry 800x600 -nolisten
tcp -localhost". In a command:

sed -i -e 's//username/g' \
-e 's/ExecStart\(.*\)"/ExecStart\1 -geometry 800x600 -nolisten tcp
-localhost"/g' \
   /usr/lib/systemd/system/vncserver@:10.service

4. Reload systemd config files:

systemctl daemon-reload

5. Enable the new service:

systemctl enable vncserver@:10.service

6. Before start the new service set a VNC password for "username":

su - username
vncpasswd
exit

7. Start the new service:

systemctl start vncserver@:10.service




When you want to access your VNC server you must open a SSH connection
redirecting the port 5910 and then connect to localhost:10:

ssh -l username -L 5910:localhost:5910  your-vnc-server
vncviewer localhost:10



Regards,
Fernando.




-- 
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: F18: ~/.vnc/xstartup example

2013-01-31 Thread Fernando Gozalo
Hi,

>> could someone copy-paste a working ~/.vnc/xstartup so I can have a
>> gnome3
>> session when I access my computer using VNC?
>>
>> The ~/.vnc/xstartup I used in F17 doesn't work in F18.
>
> It has been years since the last time I got gnome
> to work in a VNC session, it seems way too dependent
> on 3D stuff to function reasonably. I do have a
> working script, but I use FVWM and don't try
> to run a full blown gnome 3. I think the main
> trick to getting apps to work is to get a dbus
> session started. This provides me a minimal session
> where I can manually run other programs as I need them:
>
> #!/bin/bash
> exec > $HOME/.vnc/xstartup.log 2>&1
> . $HOME/.bash_profile
> unset SSH_AGENT_PID
> unset SSH_CLIENT
> unset SSH_AUTH_SOCK
> unset DBUS_SESSION_BUS_ADDRESS
> unset SSH_CONNECTION
> eval `dbus-launch --exit-with-session --sh-syntax`
> fvwm &
> /usr/bin/xterm
> --

Thanks to all. I've found https://bugzilla.redhat.com/show_bug.cgi?id=896648

Waiting for a fix...

Thanks,
Fernando.


-- 
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: mail from the command line ??

2013-09-15 Thread Fernando Gozalo
Hi,

> set smtp-use-starttls
> set smtp=smtp://smtp.mail.yahoo.com:465

Port 465 is smtpS so you don't use STARTTLS in this connection. Try
replacing both lines with this one:

set smtp=smtps://smtp.mail.yahoo.com:465


Regards,
Fernando.




-- 
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: Firefox does not connect to a secure page

2019-03-27 Thread Fernando Gozalo
Hi Enrique,

> An error occurred during a connection to rrhh.unizar.es. Cannot communicate 
> securely with peer: no common encryption algorithm(s). Error code: 
> SSL_ERROR_NO_CYPHER_OVERLAP

If you want to know what's going on: "man crypto-policies".

A ¿workaround? for firefox is execute firefox with 
"NSS_IGNORE_SYSTEM_POLICY=1" in the environment. You can achieve this 
creating a bash script named "firefox" in the ~/bin directory.

You can create the file easily if copy&paste all-in-one this text in a 
terminal window:

#8<- copy from here...

mkdir ~/bin

cat > ~/bin/firefox 

Re: Firefox does not connect to a secure page

2019-03-29 Thread Fernando Gozalo
Hi Enrique,

> Is it a risk to use firefox like that?

Not sure, but I don't think so.

Regards,
Fernando.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Figuring out a headless server's zeroconf addr

2014-07-21 Thread Fernando Gozalo
Hi,

> So given ipv6 local-scope, how do I learn the other system's addr.


According to http://www.tldp.org/HOWTO/Linux+IPv6-HOWTO/x1162.html

ip -6 neigh show


Regards,
Fernando.



-- 
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