Unsubscribe

Jack Craig jack.craig.aptos at gmail.com
Tue Sep 22 15:46:51 UTC 2015


condolences...

On Tue, Sep 22, 2015 at 6:29 AM, David Neil Kristensen <acednk at hotmail.com>
wrote:

> Sorry.
>
> But I want to unsubscribe.
>
> I use Windows 10.
>
> Thanks.
>
> Best regards
>
> David Neil Kristensen
>
>
> From: users-request at lists.fedoraproject.org
> Subject: users Digest, Vol 139, Issue 46
> To: users at lists.fedoraproject.org
> Date: Tue, 22 Sep 2015 12:00:02 +0000
>
> Send users mailing list submissions to
> 	users at lists.fedoraproject.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> 	https://admin.fedoraproject.org/mailman/listinfo/users
> or, via email, send a message with subject or body 'help' to
> 	users-request at lists.fedoraproject.org
>
> You can reach the person managing the list at
> 	users-owner at lists.fedoraproject.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of users digest..."
>
>
>
> --Videresendt meddelelse med vedhæftet fil--
> From: pdupre at gmx.com
> CC: users at lists.fedoraproject.org
> To: users at lists.fedoraproject.org
> Date: Tue, 22 Sep 2015 00:14:44 +0200
> Subject: Re: ssh -X gnome-terminal
>
>
> > On 09/21/2015 02:58 PM, Patrick Dupre wrote:
> > > Hello,
> > >
> > > In fc22 (in fc20 it was OK, if I remember correctly), when I login
> > > with ssh -X and then on the server, I run gnome-terminal, I get:
> > > ** (gnome-terminal:2515): WARNING **: Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus-N20xllktmP: Connection refused
> > >
> > > I read a couple of comments about this issue, but I am not sure about the
> > > right solution.
> > > Could you help me?
> > > For example, I found:
> > > http://unix.stackexchange.com/questions/120612/why-cant-i-run-gnome-apps-over-remote-ssh-session
> > >
> > > Thank for your help.
> >
> > Uhm, I believe you need to edit your /etc/ssh/sshd_config and make sure
> > you have the line:
> >
> > 	X11Forwarding yes
> >
> > By default it's disabled (or commented out). Once you edit it, do
>
> On both machines, this line was uncommented.
> (X11Forwarding yes)
>
> However,
> #AllowAgentForwarding yes
>
> is commented.
>
>
> > 	sudo systemctl restart sshd.service
> >
> > ----------------------------------------------------------------------
> > - Rick Stevens, Systems Engineer, AllDigital    ricks at alldigital.com -
> > - AIM/Skype: therps2        ICQ: 226437340           Yahoo: origrps2 -
> > -                                                                    -
> > -  "Men occasionally stumble over the truth, but most of them pick"  -
> > -     themselves up and hurry off as if nothing had happened."       -
> > -                                  -- Winston Churchill              -
> > ----------------------------------------------------------------------
> > --
> > users mailing list
> > users at 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
> >
>
>
>
> --Videresendt meddelelse med vedhæftet fil--
> From: lists at petetravis.com
> To: users at lists.fedoraproject.org
> Date: Mon, 21 Sep 2015 17:34:31 -0500
> Subject: Re: ssh -X gnome-terminal
>
>
> On Sep 21, 2015 4:59 PM, "Patrick Dupre" <pdupre at gmx.com> wrote:
> >
> > Hello,
> >
> > In fc22 (in fc20 it was OK, if I remember correctly), when I login
> > with ssh -X and then on the server, I run gnome-terminal, I get:
> > ** (gnome-terminal:2515): WARNING **: Couldn't connect to accessibility
> bus: Failed to connect to socket /tmp/dbus-N20xllktmP: Connection refused
> >
> > I read a couple of comments about this issue, but I am not sure about the
> > right solution.
> > Could you help me?
> > For example, I found:
> >
> http://unix.stackexchange.com/questions/120612/why-cant-i-run-gnome-apps-over-remote-ssh-session
> >
> > Thank for your help.
> >
> >
> ===========================================================================
> >  Patrick DUPRÉ
>
> Debug output about the accessibility dbus connection is different from
> information about X forwarding.  Is there anything else?
>
> Perhaps try `ssh -X user at server gnome-terminal` to rule out what "...and
> then on the server" might construe.  Also try `ssh -X user at server
> some_other_application` to rule out that specific application's behavior.
>
> --Pete
>
>
> --Videresendt meddelelse med vedhæftet fil--
> From: horsley1953 at gmail.com
> To: users at lists.fedoraproject.org
> Date: Mon, 21 Sep 2015 18:43:29 -0400
> Subject: Re: ssh -X gnome-terminal
>
> The simplest solution is to ssh -X xterm instead of gnome-terminal
> since xterm doesn't desperately need to talk dbus like every
> gnome application.
>
> The complicated solution is to run a script rather than
> a simple gnome-terminal command and have the script
> do something like:
>
> #!/bin/bash
> unset DBUS_SESSION_BUS_ADDRESS
> eval `dbus-launch --sh-syntax --exit-with-session`
> exec gnome-terminal
>
> That will create a new dbus session on the remote
> side for the duration of the gnome-terminal
> (but I haven't actually tried this :-).
>
>
>
> --Videresendt meddelelse med vedhæftet fil--
> From: horsley1953 at gmail.com
> To: users at lists.fedoraproject.org
> Date: Mon, 21 Sep 2015 18:47:45 -0400
> Subject: Re: ssh -X gnome-terminal
>
> On Mon, 21 Sep 2015 18:43:29 -0400
> Tom Horsley wrote:
>
> > The complicated solution...
>
> Actually, there is also another solution, run the command
> inside-out like so:
>
> gnome-terminal -e "ssh -X remotesystem"
>
> That way you make gnome-terminal happy by using the
> local dbus session and you get to the remote system
> via ssh inside the local gnome-terminal.
>
>
>
> --Videresendt meddelelse med vedhæftet fil--
> From: jon.ingason at telia.com
> To: users at lists.fedoraproject.org
> Date: Tue, 22 Sep 2015 07:43:07 +0200
> Subject: Re: [Solved]: After fedup fc21 to fc22 dnf wanted to install
> kernel fc21-4.1.4-100
>
> Den 2015-09-21 kl. 21:57, skrev Rick Stevens:
> > On 09/21/2015 12:31 PM, Jon Ingason wrote:
> >> Den 2015-09-21 kl. 14:40, skrev Jon Ingason:
> >>> I just did fedup from fc21 to fc22 without any problems.
> >>
> >> Sorry for the noise. This was note a problem. Should have read what
> >> stood in the output :-(
> >>
> >>> Then I just tested dnf:
> >>>
> >>> $ sudo dnf upgrade --refresh
> >>
> >>> Tar bort:
> >> --^^^^^^^^
> It means removes :-)
> >> I don't know how I could miss this :-)
>
>
> > Uhm, I don't speak any Scandinavian languages, Jon, so I have no idea
> > what it means so I ignored it. Based on the tone of your response, I
> > guess I can assume it means "remove" or something along those lines. If
> > so, then that surely makes sense. :-)
>
> Thanks anyway.
> > ----------------------------------------------------------------------
> > - Rick Stevens, Systems Engineer, AllDigital    ricks at alldigital.com -
> > - AIM/Skype: therps2        ICQ: 226437340           Yahoo: origrps2 -
> > -                                                                    -
> > -  Money can't buy happiness, but it can take the sting out of being -
> > -                             miserable!                             -
> > ----------------------------------------------------------------------
>
>
> --
> Med vänliga hälsningar/Kærar kveðjur/Regards
>
> Jon Ingason
>
> Stortorpsvägen 75
> 142 65 Trångsund
> Sverige/Svíþjóð/Sweden
>
> T: +46(0)8 - 514 911 01
> M: +46(0)70 - 514 91 12
> E: jon at ingason.se
> W: www.ingason.se
> B: www.ingason.se/blogg
>
>
>
> --Videresendt meddelelse med vedhæftet fil--
> From: mschwendt at gmail.com
> To: users at lists.fedoraproject.org
> Date: Tue, 22 Sep 2015 12:04:52 +0200
> Subject: Re: yum upgrade stuck
>
> On Sun, 20 Sep 2015 18:16:35 -0600, jd1008 wrote:
>
> > >>> --> Processing Conflict: mutter-3.16.2-1.fc22.x86_64 conflicts
> > >>> gnome-shell < 3.16.1
> > >>> ...
> > >>> How do I resolve this?
> > >> Hard to say, since gnome-shell should be in the upgrade set.  Your
> > >> system is in a weird state.
> > > Has any trouble-shooting been done to examine that "weird state"?
> >
> > Not sure how to proceed on that.
>
>   rm -f /var/lib/rpm/__db*
>   rpm -vv --rebuilddb
>   yum check
>   yum --debuglevel=255 update gnome-shell mutter
>
> and the full output from that last command see what packages it's looking
> at during the depsolving stage.
>
> For comparison, "dnf update gnome-shell mutter", what does it do?
> It's the default command with F22 instead of Yum.
>
> For comparison, "pkcon update gnome-shell", what does it do?
>
> > > Typically, one submits a couple of rpm/dnf/repoquery based queries
> > > to examine what is installed and what is available. Has that been
> > > done yet?
> > Yes. No duplicates at all - but how would that help in understanding the
> > cause of the hang?
>
> Duplicates and dependency problems within the set of installed packages
> can confuse the depsolvers.
>
>
>
> --Videresendt meddelelse med vedhæftet fil--
> From: pdupre at gmx.com
> To: users at lists.fedoraproject.org
> Date: Tue, 22 Sep 2015 13:22:53 +0200
> Subject: acl
>
> Hello,
>
> I am trying to use the acl, but I have not been successful.
> I modified the /etc/fstab file:
> from
> dev/mapper/VolGrpUsr_DK0-home /home                   ext4    default       1 2
> to
> dev/mapper/VolGrpUsr_DK0-home /home                   ext4    rw,acl       1 2
>
> and
> mount -v -o remount /home
> mount: /dev/mapper/VolGrpUsr_DK0-home mounted on /home.
>
> This what I get:
> /dev/mapper/VolGrpUsr_DK0-home on /home type ext4 (rw,relatime,seclabel,stripe=2,data=ordered)
>
> This is the same with default or with acl.
> There is not indication that the acl are working!
>
> Do I need to do something else?
>
> Thank.
>
>
>
> ===========================================================================
>  Patrick DUPRÉ                                 | | email: pdupre at 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 at 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
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.fedoraproject.org/pipermail/users/attachments/20150922/0042151e/attachment.html>


More information about the users mailing list