* [gentoo-user] systemd and gnome3
@ 2012-07-20 9:56 Stefan G. Weichinger
2012-07-20 10:58 ` Samuraiii
2012-07-20 15:30 ` Canek Peláez Valdés
0 siblings, 2 replies; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 9:56 UTC (permalink / raw
To: gentoo-user
Does anyone use systemd on gentoo, with gnome3?
Would someone share a tarball of /etc/systemd/system with me (off-list)
so I could figure out what services and stuff are needed?
Tried to follow the wiki-pages, but somehow after logging into gdm the
session hangs ...
Thanks, Stefan
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 9:56 [gentoo-user] systemd and gnome3 Stefan G. Weichinger
@ 2012-07-20 10:58 ` Samuraiii
2012-07-20 12:43 ` Peter Alfredsen
2012-07-20 15:30 ` Canek Peláez Valdés
1 sibling, 1 reply; 24+ messages in thread
From: Samuraiii @ 2012-07-20 10:58 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1.1: Type: text/plain, Size: 797 bytes --]
Hi,
I would be also interested in such configuration preview.
S
On 2012-07-20 11:56, Stefan G. Weichinger wrote:
> Does anyone use systemd on gentoo, with gnome3?
>
> Would someone share a tarball of /etc/systemd/system with me (off-list)
> so I could figure out what services and stuff are needed?
>
> Tried to follow the wiki-pages, but somehow after logging into gdm the
> session hangs ...
>
> Thanks, Stefan
>
--
Samuraiii
e-mail: samurai.no.dojo@gmail.com <mailto:samurai.no.dojo@gmail.com>
GnuPG key ID: 0x80C752EA
<http://pgp.mit.edu:11371/pks/lookup?search=0x80C752EA&op=vindex&fingerprint=on&exact=on>
(obtainable on http://pgp.mit.edu)
Full copy of public timestamp block <http://publictimestamp.org>
signatures id- (from ) is included in header of html.
[-- Attachment #1.2: Type: text/html, Size: 1518 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 262 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 10:58 ` Samuraiii
@ 2012-07-20 12:43 ` Peter Alfredsen
2012-07-20 13:42 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Peter Alfredsen @ 2012-07-20 12:43 UTC (permalink / raw
To: gentoo-user
(I am assuming that you are using systemd-186 -- all earlier releases
I checked have bugs I ran into)
If it's right after logging in, then I would suspect some PAM
deficiency. I wrote a bit about this on G+ yesterday:
"For anyone battling the trifecta of PAM, systemd and gnome on Gentoo,
take note that once you've gotten rid of consolekit, you need to add
the line:
-session optional pam_systemd.so
to system-auth, system-login and system-services in /etc/pam.d
The first two are documented elsewhere but the last one ensures that
gdm-welcome registers with systemd-logind, which fixed reboot from gdm
and gnome not working for me."
And, you need to get USE=-consolekit and mask consolekit, and you need
to get pulseaudio rebuilt after installing systemd and you need to get
>=polkit-0.107 working. That last bit was a bit hairy for those who
lived through it, but now I think it should do to:
chown -R polkitd:polkitd /var/lib/polkit-1
Generally, as long as you start services the right way:
systemctl start gdm.service (for example)
and they start without error, the dependency checking should get all
the dependencies started also.
FWIW, here's the output of "find /etc/systemd/system", but those are
all symlinks to /usr/lib/systemd/system
/etc/systemd/system/
/etc/systemd/system/bluetooth.target.wants
/etc/systemd/system/bluetooth.target.wants/bluetooth.service
/etc/systemd/system/default.target
/etc/systemd/system/graphical.target.wants
/etc/systemd/system/graphical.target.wants/rtkit-daemon.service
/etc/systemd/system/graphical.target.wants/gdm.service
/etc/systemd/system/multi-user.target.wants
/etc/systemd/system/multi-user.target.wants/remote-fs.target
/etc/systemd/system/multi-user.target.wants/ntpd.service
/etc/systemd/system/multi-user.target.wants/NetworkManager.service
/etc/systemd/system/getty.target.wants
/etc/systemd/system/getty.target.wants/getty@tty1.service
/etc/systemd/system/dbus-org.freedesktop.NetworkManager.service
/etc/systemd/system/local-fs.target.wants
/etc/systemd/system/sysinit.target.wants
/etc/systemd/system/network.target.wants
/etc/systemd/system/network.target.wants/NetworkManager-wait-online.service
/Peter
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 12:43 ` Peter Alfredsen
@ 2012-07-20 13:42 ` Stefan G. Weichinger
2012-07-20 13:54 ` Peter Alfredsen
0 siblings, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 13:42 UTC (permalink / raw
To: gentoo-user
Am 2012-07-20 14:43, schrieb Peter Alfredsen:
> (I am assuming that you are using systemd-186 -- all earlier releases
> I checked have bugs I ran into)
thanks for all the information ... added those pam.d-lines, no success
Unmasking systemd-186 brought up dependencies like udev .. I hesitate to
go bleeding edge there as well.
So maybe I just cancel this for now.
Thanks, anyway, Stefan
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 13:42 ` Stefan G. Weichinger
@ 2012-07-20 13:54 ` Peter Alfredsen
2012-07-20 14:42 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Peter Alfredsen @ 2012-07-20 13:54 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 3:42 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
> Am 2012-07-20 14:43, schrieb Peter Alfredsen:
>> (I am assuming that you are using systemd-186 -- all earlier releases
>> I checked have bugs I ran into)
>
> thanks for all the information ... added those pam.d-lines, no success
>
> Unmasking systemd-186 brought up dependencies like udev .. I hesitate to
> go bleeding edge there as well.
>
> So maybe I just cancel this for now.
Yeah udev is incorporated into later versions of systemd on gentoo and
the reason it is masked is because you have to do some
package.provided magic to get it all to work.
/Peter
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 13:54 ` Peter Alfredsen
@ 2012-07-20 14:42 ` Stefan G. Weichinger
2012-07-20 15:00 ` Peter Alfredsen
0 siblings, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 14:42 UTC (permalink / raw
To: gentoo-user
Am 2012-07-20 15:54, schrieb Peter Alfredsen:
> Yeah udev is incorporated into later versions of systemd on gentoo and
> the reason it is masked is because you have to do some
> package.provided magic to get it all to work.
sounds as if all this is still to much "beta" for me to make it worth
the effort.
Thanks, Stefan
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 14:42 ` Stefan G. Weichinger
@ 2012-07-20 15:00 ` Peter Alfredsen
0 siblings, 0 replies; 24+ messages in thread
From: Peter Alfredsen @ 2012-07-20 15:00 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 4:42 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
> Am 2012-07-20 15:54, schrieb Peter Alfredsen:
>
>> Yeah udev is incorporated into later versions of systemd on gentoo and
>> the reason it is masked is because you have to do some
>> package.provided magic to get it all to work.
>
> sounds as if all this is still to much "beta" for me to make it worth
> the effort.
Nah, it's perfectly stable once you get over the first hurdles. It's
just not integrated into Gentoo at the moment.
/Peter
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 9:56 [gentoo-user] systemd and gnome3 Stefan G. Weichinger
2012-07-20 10:58 ` Samuraiii
@ 2012-07-20 15:30 ` Canek Peláez Valdés
2012-07-20 15:54 ` Peter Alfredsen
1 sibling, 1 reply; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-20 15:30 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 4:56 AM, Stefan G. Weichinger <lists@xunil.at> wrote:
>
> Does anyone use systemd on gentoo, with gnome3?
>
> Would someone share a tarball of /etc/systemd/system with me (off-list)
> so I could figure out what services and stuff are needed?
>
> Tried to follow the wiki-pages, but somehow after logging into gdm the
> session hangs ...
I'm running GNOME 3 with, systemd 44 and udev 186, the first from my overlay:
https://github.com/canek-pelaez/gentoo-systemd-only/
However, the ebuilds in my overlay just change some dependencies so I
don't need to install OpenRC. Otherwise, they are identical to the
ones in the official tree. As Peter, I have the line
-session optional pam_systemd.so
in /etc/pam.d/system-auth. However, I still have consolekit started
(no problems whatsoever).
All in all, I run systemd+GNOME3 very close to the official tree, as I
said. I have been doing it since last year; usually I don't have any
problem. A little more info would help; what does
$HOME/.xsession-errors says?
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 15:30 ` Canek Peláez Valdés
@ 2012-07-20 15:54 ` Peter Alfredsen
2012-07-20 16:08 ` Canek Peláez Valdés
0 siblings, 1 reply; 24+ messages in thread
From: Peter Alfredsen @ 2012-07-20 15:54 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 5:30 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
> On Fri, Jul 20, 2012 at 4:56 AM, Stefan G. Weichinger <lists@xunil.at> wrote:
>>
>> Does anyone use systemd on gentoo, with gnome3?
>>
>> Would someone share a tarball of /etc/systemd/system with me (off-list)
>> so I could figure out what services and stuff are needed?
>>
>> Tried to follow the wiki-pages, but somehow after logging into gdm the
>> session hangs ...
>
> I'm running GNOME 3 with, systemd 44 and udev 186, the first from my overlay:
>
> https://github.com/canek-pelaez/gentoo-systemd-only/
>
> However, the ebuilds in my overlay just change some dependencies so I
> don't need to install OpenRC. Otherwise, they are identical to the
> ones in the official tree. As Peter, I have the line
>
> -session optional pam_systemd.so
>
> in /etc/pam.d/system-auth. However, I still have consolekit started
> (no problems whatsoever).
There were some integration issues in upstream Gnome where most
distros changed abruptly from using consolekit to systemd-logind which
affected me when I went from systemd-44 to -185 because I ran into
some race condition with -44. I imagine using consolekit will probably
work in ~arch with no unmasks if you don't run into those race
conditions on -44. But you gotta admit, it will probably be easier to
follow the way Redhat is doing it than starting mixing and matching,
because you will know that at least your combination works somewhere.
/Peter
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 15:54 ` Peter Alfredsen
@ 2012-07-20 16:08 ` Canek Peláez Valdés
2012-07-20 17:21 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-20 16:08 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 10:54 AM, Peter Alfredsen
<peter.alfredsen@gmail.com> wrote:
> On Fri, Jul 20, 2012 at 5:30 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
>> On Fri, Jul 20, 2012 at 4:56 AM, Stefan G. Weichinger <lists@xunil.at> wrote:
>>>
>>> Does anyone use systemd on gentoo, with gnome3?
>>>
>>> Would someone share a tarball of /etc/systemd/system with me (off-list)
>>> so I could figure out what services and stuff are needed?
>>>
>>> Tried to follow the wiki-pages, but somehow after logging into gdm the
>>> session hangs ...
>>
>> I'm running GNOME 3 with, systemd 44 and udev 186, the first from my overlay:
>>
>> https://github.com/canek-pelaez/gentoo-systemd-only/
>>
>> However, the ebuilds in my overlay just change some dependencies so I
>> don't need to install OpenRC. Otherwise, they are identical to the
>> ones in the official tree. As Peter, I have the line
>>
>> -session optional pam_systemd.so
>>
>> in /etc/pam.d/system-auth. However, I still have consolekit started
>> (no problems whatsoever).
>
> There were some integration issues in upstream Gnome where most
> distros changed abruptly from using consolekit to systemd-logind which
> affected me when I went from systemd-44 to -185 because I ran into
> some race condition with -44. I imagine using consolekit will probably
> work in ~arch with no unmasks if you don't run into those race
> conditions on -44. But you gotta admit, it will probably be easier to
> follow the way Redhat is doing it than starting mixing and matching,
> because you will know that at least your combination works somewhere.
Not really "mix and match". I run systemd/udev/GNOME3 in ~amd64,
that's all, and I don't unmask any hard masked package. It's been
working fine like that since, oh I don't know, when they removed the
mask on GNOME 3?
Again, Stefan has probably a valid problem, and we need more info to
nail it down (hence the petition for $HOME/.xsession-errors). Just
unmasking everything and hoping that will solve the issues is usually
not the best practice; specially since the Gentoo developers haven't
decided how to handle the merge of udev/systemd.
Some want to provide a virtual/udev that systemd satisfy, and others
want to keep things as they were before the merge, with the udev
ebuild simply not installing the systemd parts.
Given that they haven't reached an agreement, I would *highly*
recommend not trying yet systemd/udev >= 186.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 16:08 ` Canek Peláez Valdés
@ 2012-07-20 17:21 ` Stefan G. Weichinger
2012-07-20 17:34 ` Canek Peláez Valdés
0 siblings, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 17:21 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]
Am 20.07.2012 18:08, schrieb Canek Peláez Valdés:
> Not really "mix and match". I run systemd/udev/GNOME3 in ~amd64,
> that's all, and I don't unmask any hard masked package. It's been
> working fine like that since, oh I don't know, when they removed the
> mask on GNOME 3?
Thanks for motivating me!
I will try to use your overlay ...
> Again, Stefan has probably a valid problem, and we need more info to
> nail it down (hence the petition for $HOME/.xsession-errors).
See attachment.
Do I need rtkit or not?
I also had added the USE-flag "systemd" and re-built every package
having that useflag.
> Just
> unmasking everything and hoping that will solve the issues is usually
> not the best practice; specially since the Gentoo developers haven't
> decided how to handle the merge of udev/systemd.
>
> Some want to provide a virtual/udev that systemd satisfy, and others
> want to keep things as they were before the merge, with the udev
> ebuild simply not installing the systemd parts.
>
> Given that they haven't reached an agreement, I would *highly*
> recommend not trying yet systemd/udev >= 186.
OK, fine, thanks so far.
S
[-- Attachment #2: xsess_errors --]
[-- Type: text/plain, Size: 3128 bytes --]
/etc/gdm/Xsession: Beginning session setup...
localuser:sgw being added to access control list
/etc/gdm/Xsession: Setup done, will execute: /usr/bin/dbus-launch --exit-with-session /usr/bin/ssh-agent -- gnome-session
GNOME_KEYRING_CONTROL=/tmp/keyring-uskBGJ
GNOME_KEYRING_CONTROL=/tmp/keyring-uskBGJ
GNOME_KEYRING_CONTROL=/tmp/keyring-uskBGJ
SSH_AUTH_SOCK=/tmp/keyring-uskBGJ/ssh
GPG_AGENT_INFO=/tmp/keyring-uskBGJ/gpg:0:1
GNOME_KEYRING_CONTROL=/tmp/keyring-uskBGJ
SSH_AUTH_SOCK=/tmp/keyring-uskBGJ/ssh
(gnome-settings-daemon:5621): common-plugin-WARNING **: Key 0x0 (keycodes: 130) with state 0x0 (resolved to 0x0) has no usable modifiers (usable modifiers are 0x140000ed)
(gnome-settings-daemon:5621): common-plugin-WARNING **: Key 0x0 (keycodes: 236) with state 0x0 (resolved to 0x0) has no usable modifiers (usable modifiers are 0x140000ed)
Initializing tracker-store...
Initializing tracker-miner-fs...
Tracker-Message: Setting up monitor for changes to config file:'/home/sgw/.config/tracker/tracker-store.cfg'
Tracker-Message: Setting up monitor for changes to config file:'/home/sgw/.config/tracker/tracker-miner-fs.cfg'
Tracker-Message: Setting up monitor for changes to config file:'/home/sgw/.config/tracker/tracker-store.cfg'
Starting log:
File:'/home/sgw/.local/share/tracker/tracker-miner-fs.log'
Starting log:
File:'/home/sgw/.local/share/tracker/tracker-store.log'
Failed to play sound: File or data not found
** (gnome-screensaver:5656): WARNING **: Config key not handled: disable-application-handlers
** (gnome-screensaver:5656): WARNING **: Config key not handled: disable-command-line
** (gnome-screensaver:5656): WARNING **: Config key not handled: disable-log-out
** (gnome-screensaver:5656): WARNING **: Config key not handled: disable-print-setup
** (gnome-screensaver:5656): WARNING **: Config key not handled: disable-printing
** (gnome-screensaver:5656): WARNING **: Config key not handled: disable-save-to-disk
Initializing nautilus-dropbox 1.4.0
Starting Dropbox...
^[[01mHP Linux Imaging and Printing System (ver. 3.12.6)^[[0m
^[[01mSystem Tray Status Service ver. 2.0^[[0m
Copyright (c) 2001-14 Hewlett-Packard Development Company, LP
This software comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to distribute it
under certain conditions. See COPYING file for more details.
** Message: applet now removed from the notification area
^[[35;01mwarning: No hp: or hpfax: devices found in any installed CUPS queue. Exiting.^[[0m
Done!
(nautilus:5655): libnotify-WARNING **: Failed to connect to proxy
ERROR:dbus.proxies:Introspect error on :1.14:/org/freedesktop/Notifications: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
(gnome-settings-daemon:5621): color-plugin-WARNING **: Done switch to new account, reload devices
(gnome-settings-daemon:5621): color-plugin-WARNING **: Done switch to new account, reload devices
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 17:21 ` Stefan G. Weichinger
@ 2012-07-20 17:34 ` Canek Peláez Valdés
2012-07-20 17:58 ` Stefan G. Weichinger
2012-07-20 18:14 ` Stefan G. Weichinger
0 siblings, 2 replies; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-20 17:34 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 12:21 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
> Am 20.07.2012 18:08, schrieb Canek Peláez Valdés:
>
>> Not really "mix and match". I run systemd/udev/GNOME3 in ~amd64,
>> that's all, and I don't unmask any hard masked package. It's been
>> working fine like that since, oh I don't know, when they removed the
>> mask on GNOME 3?
>
> Thanks for motivating me!
>
> I will try to use your overlay ...
First get GNOME 3 + systemd to work; my overlay is experimental.
>> Again, Stefan has probably a valid problem, and we need more info to
>> nail it down (hence the petition for $HOME/.xsession-errors).
>
> See attachment.
The only possible problem I see is
(nautilus:5655): libnotify-WARNING **: Failed to connect to proxy
ERROR:dbus.proxies:Introspect error on
:1.14:/org/freedesktop/Notifications: dbus.exceptions.DBusException:
What version of libnotify are you using? I have 0.7.5 installed.
> Do I need rtkit or not?
I don't have it installed; never had.
> I also had added the USE-flag "systemd" and re-built every package
> having that useflag.
Could you please attach the output of:
systemctl --all --full --no-pager
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 17:34 ` Canek Peláez Valdés
@ 2012-07-20 17:58 ` Stefan G. Weichinger
2012-07-20 18:05 ` Canek Peláez Valdés
2012-07-20 18:14 ` Stefan G. Weichinger
1 sibling, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 17:58 UTC (permalink / raw
To: gentoo-user
Am 20.07.2012 19:34, schrieb Canek Peláez Valdés:
> First get GNOME 3 + systemd to work; my overlay is experimental.
ok, rolling back then ...
> The only possible problem I see is
>
> (nautilus:5655): libnotify-WARNING **: Failed to connect to proxy
> ERROR:dbus.proxies:Introspect error on
> :1.14:/org/freedesktop/Notifications: dbus.exceptions.DBusException:
>
> What version of libnotify are you using? I have 0.7.5 installed.
Same here.
>> Do I need rtkit or not?
>
> I don't have it installed; never had.
... removed it as well.
> Could you please attach the output of:
>
> systemctl --all --full --no-pager
Will do asap, have to reboot into systemd again.
I *assume* it has to do with LVM:
the dropbox-data of my user is stored in an LV ... and the VG/LV is not
correctly available when I boot with systemd.
Didn't find any "lvm.service" in the installed files, gotta build one
myself, I assume.
This might make the session wait for that directory becoming available.
I could check with a fresh user without a dropbox.
S
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 17:58 ` Stefan G. Weichinger
@ 2012-07-20 18:05 ` Canek Peláez Valdés
2012-07-20 18:23 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-20 18:05 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 12:58 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
> Am 20.07.2012 19:34, schrieb Canek Peláez Valdés:
>
>> First get GNOME 3 + systemd to work; my overlay is experimental.
>
> ok, rolling back then ...
>
>> The only possible problem I see is
>>
>> (nautilus:5655): libnotify-WARNING **: Failed to connect to proxy
>> ERROR:dbus.proxies:Introspect error on
>> :1.14:/org/freedesktop/Notifications: dbus.exceptions.DBusException:
>>
>> What version of libnotify are you using? I have 0.7.5 installed.
>
> Same here.
>
>>> Do I need rtkit or not?
>>
>> I don't have it installed; never had.
>
> ... removed it as well.
>
>> Could you please attach the output of:
>>
>> systemctl --all --full --no-pager
>
> Will do asap, have to reboot into systemd again.
>
> I *assume* it has to do with LVM:
Whoa. What partition you do have on LVM? If it's home, it is available
after GMD has showed up? (can you change to a virtual terminal with
Ctrl-Alt-F3, for example, and as root see the contents of /home with
ls?)
LVM is not a damon, one of the reasons why /etc/init.d/lvm is a bad
idea. /etc/init.d/lvm sets the devices using LVM; systemd does not
need that, it does it by itself using udev (or so I heard, I don't use
LVM).
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 17:34 ` Canek Peláez Valdés
2012-07-20 17:58 ` Stefan G. Weichinger
@ 2012-07-20 18:14 ` Stefan G. Weichinger
2012-07-20 18:20 ` Canek Peláez Valdés
1 sibling, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 18:14 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1076 bytes --]
Am 20.07.2012 19:34, schrieb Canek Peláez Valdés:
> systemctl --all --full --no-pager
See attachment.
That LVM-thing seems to be the solution.
Added my lvm.service from back then when I first played with systemd.
That file was like the one listed here:
http://en.gentoo-wiki.com/wiki/Systemd#Services
But there is no udev-settle.service anymore.
For testing I simply removed the 2 lines "Requires" "After" and started
lvm.service manually.
This started the LVs correctly now and I am able to log into Gnome now
(writing from that very session).
So the trick might be to correctly edit this lvm.service file (get the
dependencies right).
--
In general I prefer to have openrc still at hand:
I run a bit complicated network-setup for KVM and libvirt, bridged stuff
etc ... and back then I wasn't really successful getting this config to
work w/ systemd. So I need my fallback-entry in Grub2 ...
This might also lead to disabling networkmanager and somehow configure
my network via network.service or something.
Thanks! Stefan
[-- Attachment #2: all.txt --]
[-- Type: text/plain, Size: 61005 bytes --]
UNIT LOAD ACTIVE SUB JOB DESCRIPTION
mnt-dropbox.automount loaded active waiting mnt-dropbox.automount
mnt-md0.automount loaded active waiting mnt-md0.automount
mnt-media.automount loaded active waiting mnt-media.automount
mnt-music.automount loaded active waiting mnt-music.automount
mnt-oopsfiles.automount loaded active running mnt-oopsfiles.automount
mnt-platz.automount loaded active waiting mnt-platz.automount
mnt-vmware.automount loaded active waiting mnt-vmware.automount
proc-sys-fs-binfmt_misc.automount loaded inactive dead Arbitrary Executable File Formats File System Automount Point
usr-portage-distfiles-remote.automount loaded active waiting usr-portage-distfiles-remote.automount
usr-portage.automount loaded active waiting usr-portage.automount
dev-camera.device loaded inactive dead dev-camera.device
dev-cdrom.device loaded active plugged hp_CDDVDW_TS-H653TN
dev-cdroms-cdrom0.device loaded inactive dead dev-cdroms-cdrom0.device
dev-cdrw.device loaded inactive dead dev-cdrw.device
dev-disk-by\x2did-ata\x2dHitachi_HDS721010CLA632_JP2940J8314SGV.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-ata\x2dHitachi_HDS721010CLA632_JP2940J8314SGV\x2dpart1.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-ata\x2dHitachi_HDS721010CLA632_JP2940J8314SGV\x2dpart2.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-ata\x2dHitachi_HDS721010CLA632_JP2940J8314SGV\x2dpart4.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-ata\x2dHitachi_HDS721010CLA632_JP2940J8314SGV\x2dpart5.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-ata\x2dHitachi_HDS721010CLA632_JP2940J8314SGV\x2dpart6.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-ata\x2dhp_CDDVDW_TS\x2dH653TN_R8LG6GFBA78442.device loaded active plugged hp_CDDVDW_TS-H653TN
dev-disk-by\x2did-ata\x2dOCZ\x2dVERTEX3_OCZ\x2d20ZD374YZSZ02G7R.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-ata\x2dOCZ\x2dVERTEX3_OCZ\x2d20ZD374YZSZ02G7R\x2dpart1.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-ata\x2dOCZ\x2dVERTEX3_OCZ\x2d20ZD374YZSZ02G7R\x2dpart2.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-ata\x2dOCZ\x2dVERTEX3_OCZ\x2d20ZD374YZSZ02G7R\x2dpart3.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-ata\x2dOCZ\x2dVERTEX3_OCZ\x2d20ZD374YZSZ02G7R\x2dpart4.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-ata\x2dOCZ\x2dVERTEX3_OCZ\x2d20ZD374YZSZ02G7R\x2dpart5.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-ata\x2dST31000524AS_9VPDH1D0.device loaded active plugged ST31000524AS
dev-disk-by\x2did-ata\x2dST31000524AS_9VPDH1D0\x2dpart1.device loaded active plugged ST31000524AS
dev-disk-by\x2did-ata\x2dST31000524AS_9VPDH1D0\x2dpart2.device loaded active plugged ST31000524AS
dev-disk-by\x2did-ata\x2dST31000524AS_9VPDH1D0\x2dpart3.device loaded active plugged ST31000524AS
dev-disk-by\x2did-ata\x2dST31000524AS_9VPDH1D0\x2dpart4.device loaded active plugged ST31000524AS
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2ddropbox.device loaded active plugged /dev/disk/by-id/dm-name-VG03-dropbox
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2dhome.device loaded active plugged /dev/disk/by-id/dm-name-VG03-home
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2dmedia.device loaded active plugged /dev/disk/by-id/dm-name-VG03-media
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2dmusic.device loaded active plugged /dev/disk/by-id/dm-name-VG03-music
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2doopsfiles.device loaded active plugged /dev/disk/by-id/dm-name-VG03-oopsfiles
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2dplatz.device loaded active plugged /dev/disk/by-id/dm-name-VG03-platz
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2dportage.device loaded active plugged /dev/disk/by-id/dm-name-VG03-portage
dev-disk-by\x2did-dm\x2dname\x2dVG03\x2dvmware.device loaded active plugged /dev/disk/by-id/dm-name-VG03-vmware
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xdt0gwtMIuGDbPDmPmk7QkvDrSCxXEV0n.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xdt0gwtMIuGDbPDmPmk7QkvDrSCxXEV0n
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xDwg3lFexO8pOE2aOYgS9BAPrdrVl3dNZ.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xDwg3lFexO8pOE2aOYgS9BAPrdrVl3dNZ
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xjTUxa0AGjNhdHwte5rYe7skeMqcaO1td.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xjTUxa0AGjNhdHwte5rYe7skeMqcaO1td
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xSFQCMACqEeBe40cVtWsyO6EHtvpV9uqp.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xSFQCMACqEeBe40cVtWsyO6EHtvpV9uqp
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xuJcV0qqqqkiSmHR0mSLoTEVkuh8cmc1r.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xuJcV0qqqqkiSmHR0mSLoTEVkuh8cmc1r
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xVZiExf1daBMTNZ1VYVfjrmvh7DkPQnYU.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xVZiExf1daBMTNZ1VYVfjrmvh7DkPQnYU
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xwy8daWTiUGcSX2stD2iBQvezRdNFf3Mb.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xwy8daWTiUGcSX2stD2iBQvezRdNFf3Mb
dev-disk-by\x2did-dm\x2duuid\x2dLVM\x2dXll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xxOGc01mUQWrD0CuPjeIIalmFgNyUT8sT.device loaded active plugged /dev/disk/by-id/dm-uuid-LVM-Xll3S3EzDeJkQYKyG3FkrwYMrzmS0P8xxOGc01mUQWrD0CuPjeIIalmFgNyUT8sT
dev-disk-by\x2did-md\x2duuid\x2d1dd2eb87:bd24a82a:bbf2e8a9:9133c849.device loaded active plugged /dev/disk/by-id/md-uuid-1dd2eb87:bd24a82a:bbf2e8a9:9133c849
dev-disk-by\x2did-md\x2duuid\x2dadcc28a6:50a9eff5:8727db9f:a9622c7f.device loaded active plugged /dev/disk/by-id/md-uuid-adcc28a6:50a9eff5:8727db9f:a9622c7f
dev-disk-by\x2did-usb\x2dGeneric\x2d_Compact_Flash_058F63626476\x2d0:1.device loaded active plugged Compact_Flash
dev-disk-by\x2did-usb\x2dGeneric\x2d_MS_MS\x2dPro_058F63626476\x2d0:3.device loaded active plugged MS_MS-Pro
dev-disk-by\x2did-usb\x2dGeneric\x2d_SD_MMC_058F63626476\x2d0:0.device loaded active plugged SD_MMC
dev-disk-by\x2did-usb\x2dGeneric\x2d_SM_xD\x2dPicture_058F63626476\x2d0:2.device loaded active plugged SM_xD-Picture
dev-disk-by\x2did-wwn\x2d0x5000c500360ea43d.device loaded active plugged ST31000524AS
dev-disk-by\x2did-wwn\x2d0x5000c500360ea43d\x2dpart1.device loaded active plugged ST31000524AS
dev-disk-by\x2did-wwn\x2d0x5000c500360ea43d\x2dpart2.device loaded active plugged ST31000524AS
dev-disk-by\x2did-wwn\x2d0x5000c500360ea43d\x2dpart3.device loaded active plugged ST31000524AS
dev-disk-by\x2did-wwn\x2d0x5000c500360ea43d\x2dpart4.device loaded active plugged ST31000524AS
dev-disk-by\x2did-wwn\x2d0x5000cca396eaccbd.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-wwn\x2d0x5000cca396eaccbd\x2dpart1.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-wwn\x2d0x5000cca396eaccbd\x2dpart2.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-wwn\x2d0x5000cca396eaccbd\x2dpart4.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-wwn\x2d0x5000cca396eaccbd\x2dpart5.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-wwn\x2d0x5000cca396eaccbd\x2dpart6.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2did-wwn\x2d0x5e83a97e0a6abe2a.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-wwn\x2d0x5e83a97e0a6abe2a\x2dpart1.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-wwn\x2d0x5e83a97e0a6abe2a\x2dpart2.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-wwn\x2d0x5e83a97e0a6abe2a\x2dpart3.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-wwn\x2d0x5e83a97e0a6abe2a\x2dpart4.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2did-wwn\x2d0x5e83a97e0a6abe2a\x2dpart5.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dlabel-efi\x2dboot.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dlabel-HP_RECOVERY.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dlabel-OS.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dlabel-SYSTEM.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dpartlabel-BIOS\x5cx20boot\x5cx20partition.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpartlabel-EFI\x5cx20System.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpartlabel-Linux\x5cx20filesystem.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpartlabel-Linux\x5cx20RAID.device loaded active plugged ST31000524AS
dev-disk-by\x2dpartlabel-Linux\x5cx20swap.device loaded active plugged ST31000524AS
dev-disk-by\x2dpartlabel-Microsoft\x5cx20basic\x5cx20data.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dpartuuid-0a1755db\x2d0dc3\x2d43b6\x2d93cb\x2dd4de389c4da2.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dpartuuid-1b2164a3\x2d560e\x2d443b\x2d985c\x2d3d9422b48bd6.device loaded active plugged ST31000524AS
dev-disk-by\x2dpartuuid-2868f33f\x2d4196\x2d4660\x2d865e\x2d50eb40662517.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpartuuid-3143a21d\x2d4609\x2d4a73\x2d8195\x2d7b6d8a3504e2.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpartuuid-48e7ebbe\x2dfdc4\x2d4498\x2da145\x2d0d27c1888d6b.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dpartuuid-56a4847c\x2db950\x2d4273\x2d9ac4\x2d0238cb309477.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpartuuid-5951c806\x2d3fc6\x2d4b07\x2d9163\x2d389a83314792.device loaded active plugged ST31000524AS
dev-disk-by\x2dpartuuid-5b5b8b55\x2d4dcd\x2d474b\x2d9ff5\x2d25ccaf944b1d.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpartuuid-936e4746\x2dc85c\x2d44e9\x2dbf07\x2de7bd69378c06.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dpartuuid-9f7219a0\x2d96c5\x2d44ce\x2d8d91\x2d303b61ca63b2.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dpartuuid-c1dc7537\x2dd5e6\x2d4b8e\x2d9261\x2d1e8874b544ba.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2dpartuuid-c95afe65\x2df1e3\x2d40b0\x2dae31\x2d5afbe0d076d9.device loaded active plugged ST31000524AS
dev-disk-by\x2dpartuuid-d2a71f3d\x2dd7be\x2d4222\x2db2a4\x2d73a8bc77c507.device loaded active plugged ST31000524AS
dev-disk-by\x2dpartuuid-e5f6f53c\x2df2ab\x2d4a4e\x2d8b09\x2d329c2215c2e7.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2dpath-pci\x2d0000:00:1a.0\x2dusb\x2d0:1.6:1.0\x2dscsi\x2d0:0:0:0.device loaded active plugged SD_MMC
dev-disk-by\x2dpath-pci\x2d0000:00:1a.0\x2dusb\x2d0:1.6:1.0\x2dscsi\x2d0:0:0:1.device loaded active plugged Compact_Flash
dev-disk-by\x2dpath-pci\x2d0000:00:1a.0\x2dusb\x2d0:1.6:1.0\x2dscsi\x2d0:0:0:2.device loaded active plugged SM_xD-Picture
dev-disk-by\x2dpath-pci\x2d0000:00:1a.0\x2dusb\x2d0:1.6:1.0\x2dscsi\x2d0:0:0:3.device loaded active plugged MS_MS-Pro
dev-disk-by\x2duuid-13b2f4ec\x2df244\x2d46c9\x2d8843\x2d20c8d07a6a4f.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2duuid-14883a1f\x2d6672\x2d4c04\x2db471\x2dcd80ef3b69c3.device loaded active plugged ST31000524AS
dev-disk-by\x2duuid-4d1406f8\x2d6747\x2d4e65\x2d8896\x2dd00585d5f47a.device loaded active plugged /dev/disk/by-uuid/4d1406f8-6747-4e65-8896-d00585d5f47a
dev-disk-by\x2duuid-5884b939\x2d0de2\x2d4a86\x2daae8\x2df47b75d63e6e.device loaded active plugged /dev/disk/by-uuid/5884b939-0de2-4a86-aae8-f47b75d63e6e
dev-disk-by\x2duuid-5f744c85\x2d3096\x2d403a\x2d9ae1\x2d29cecb08acc4.device loaded active plugged /dev/disk/by-uuid/5f744c85-3096-403a-9ae1-29cecb08acc4
dev-disk-by\x2duuid-8262583B6258365F.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2duuid-845ae61f\x2d3f6f\x2d4ad0\x2dab2c\x2d6b117044f4c5.device loaded active plugged /dev/disk/by-uuid/845ae61f-3f6f-4ad0-ab2c-6b117044f4c5
dev-disk-by\x2duuid-881a0306\x2dfaae\x2d47e8\x2d9752\x2d8f0fdff09fcf.device loaded active plugged /dev/disk/by-uuid/881a0306-faae-47e8-9752-8f0fdff09fcf
dev-disk-by\x2duuid-9847\x2dFDE3.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2duuid-a7bcec86\x2dd93d\x2d4824\x2d9ae0\x2d8a4d5da0cc8e.device loaded active plugged /dev/disk/by-uuid/a7bcec86-d93d-4824-9ae0-8a4d5da0cc8e
dev-disk-by\x2duuid-BC6C06EB6C069FEE.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2duuid-c55b2075\x2d56d9\x2d4d0d\x2d966c\x2d457e046e819b.device loaded active plugged /dev/disk/by-uuid/c55b2075-56d9-4d0d-966c-457e046e819b
dev-disk-by\x2duuid-cce654f9\x2d4293\x2d463a\x2daefc\x2d75ce4ae669d7.device loaded active plugged /dev/disk/by-uuid/cce654f9-4293-463a-aefc-75ce4ae669d7
dev-disk-by\x2duuid-D01E01741E0154BE.device loaded active plugged Hitachi_HDS721010CLA632
dev-disk-by\x2duuid-d6e87c92\x2d7f37\x2d40c0\x2dbdef\x2deae9b5e511f5.device loaded active plugged /dev/disk/by-uuid/d6e87c92-7f37-40c0-bdef-eae9b5e511f5
dev-disk-by\x2duuid-ec3e525d\x2d6a29\x2d4e45\x2da9ca\x2d637d5df09395.device loaded active plugged OCZ-VERTEX3
dev-disk-by\x2duuid-ee8302a2\x2dbb47\x2d4c7f\x2da270\x2da67fd7965b9f.device loaded active plugged OCZ-VERTEX3
dev-dm\x2d0.device loaded active plugged /dev/dm-0
dev-dm\x2d1.device loaded active plugged /dev/dm-1
dev-dm\x2d2.device loaded active plugged /dev/dm-2
dev-dm\x2d3.device loaded active plugged /dev/dm-3
dev-dm\x2d4.device loaded active plugged /dev/dm-4
dev-dm\x2d5.device loaded active plugged /dev/dm-5
dev-dm\x2d6.device loaded active plugged /dev/dm-6
dev-dm\x2d7.device loaded active plugged /dev/dm-7
dev-jetflash.device loaded inactive dead dev-jetflash.device
dev-mapper-VG03\x2ddropbox.device loaded active plugged /dev/mapper/VG03-dropbox
dev-mapper-VG03\x2dhome.device loaded active plugged /dev/mapper/VG03-home
dev-mapper-VG03\x2dmedia.device loaded active plugged /dev/mapper/VG03-media
dev-mapper-VG03\x2dmusic.device loaded active plugged /dev/mapper/VG03-music
dev-mapper-VG03\x2doopsfiles.device loaded active plugged /dev/mapper/VG03-oopsfiles
dev-mapper-VG03\x2dplatz.device loaded active plugged /dev/mapper/VG03-platz
dev-mapper-VG03\x2dportage.device loaded active plugged /dev/mapper/VG03-portage
dev-mapper-VG03\x2dvmware.device loaded active plugged /dev/mapper/VG03-vmware
dev-md0.device loaded active plugged /dev/md0
dev-md2.device loaded active plugged /dev/md2
dev-platte.device loaded inactive dead dev-platte.device
dev-sda.device loaded active plugged ST31000524AS
dev-sda1.device loaded active plugged ST31000524AS
dev-sda2.device loaded active plugged ST31000524AS
dev-sda3.device loaded active plugged ST31000524AS
dev-sda4.device loaded active plugged ST31000524AS
dev-sdb.device loaded active plugged Hitachi_HDS721010CLA632
dev-sdb1.device loaded active plugged Hitachi_HDS721010CLA632
dev-sdb2.device loaded active plugged Hitachi_HDS721010CLA632
dev-sdb4.device loaded active plugged Hitachi_HDS721010CLA632
dev-sdb5.device loaded active plugged Hitachi_HDS721010CLA632
dev-sdb6.device loaded active plugged Hitachi_HDS721010CLA632
dev-sdc.device loaded active plugged OCZ-VERTEX3
dev-sdc1.device loaded active plugged OCZ-VERTEX3
dev-sdc2.device loaded active plugged OCZ-VERTEX3
dev-sdc3.device loaded active plugged OCZ-VERTEX3
dev-sdc4.device loaded active plugged OCZ-VERTEX3
dev-sdc5.device loaded active plugged OCZ-VERTEX3
dev-sdd.device loaded active plugged SD_MMC
dev-sde.device loaded active plugged Compact_Flash
dev-sdf.device loaded active plugged SM_xD-Picture
dev-sdg.device loaded active plugged MS_MS-Pro
dev-sr0.device loaded active plugged hp_CDDVDW_TS-H653TN
dev-tty0.device loaded active plugged /dev/tty0
dev-tty1.device loaded active plugged /dev/tty1
dev-tty10.device loaded active plugged /dev/tty10
dev-tty11.device loaded active plugged /dev/tty11
dev-tty12.device loaded active plugged /dev/tty12
dev-tty2.device loaded active plugged /dev/tty2
dev-tty3.device loaded active plugged /dev/tty3
dev-tty4.device loaded active plugged /dev/tty4
dev-tty5.device loaded active plugged /dev/tty5
dev-tty6.device loaded active plugged /dev/tty6
dev-tty7.device loaded active plugged /dev/tty7
dev-tty8.device loaded active plugged /dev/tty8
dev-tty9.device loaded active plugged /dev/tty9
dev-ttyS0.device loaded active plugged /dev/ttyS0
dev-ttyS1.device loaded active plugged /dev/ttyS1
dev-ttyS2.device loaded active plugged /dev/ttyS2
dev-ttyS3.device loaded active plugged /dev/ttyS3
dev-VG03-dropbox.device loaded active plugged /dev/VG03/dropbox
dev-VG03-home.device loaded active plugged /dev/VG03/home
dev-VG03-media.device loaded active plugged /dev/VG03/media
dev-VG03-music.device loaded active plugged /dev/VG03/music
dev-VG03-oopsfiles.device loaded active plugged /dev/VG03/oopsfiles
dev-VG03-platz.device loaded active plugged /dev/VG03/platz
dev-VG03-portage.device loaded active plugged /dev/VG03/portage
dev-VG03-vmware.device loaded active plugged /dev/VG03/vmware
sys-devices-pci0000:00-0000:00:01.0-0000:01:00.1-sound-card1.device loaded active plugged GF108 High Definition Audio Controller
sys-devices-pci0000:00-0000:00:1a.0-usb1-1\x2d1-1\x2d1.6-1\x2d1.6:1.0-host6-target6:0:0-6:0:0:0-block-sdd.device loaded active plugged SD_MMC
sys-devices-pci0000:00-0000:00:1a.0-usb1-1\x2d1-1\x2d1.6-1\x2d1.6:1.0-host6-target6:0:0-6:0:0:1-block-sde.device loaded active plugged Compact_Flash
sys-devices-pci0000:00-0000:00:1a.0-usb1-1\x2d1-1\x2d1.6-1\x2d1.6:1.0-host6-target6:0:0-6:0:0:2-block-sdf.device loaded active plugged SM_xD-Picture
sys-devices-pci0000:00-0000:00:1a.0-usb1-1\x2d1-1\x2d1.6-1\x2d1.6:1.0-host6-target6:0:0-6:0:0:3-block-sdg.device loaded active plugged MS_MS-Pro
sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device loaded active plugged 6 Series/C200 Series Chipset Family High Definition Audio Controller
sys-devices-pci0000:00-0000:00:1c.4-0000:06:00.0-net-eth0.device loaded active plugged RTL8111/8168B PCI Express Gigabit Ethernet controller
sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged ST31000524AS
sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged ST31000524AS
sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device loaded active plugged ST31000524AS
sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device loaded active plugged ST31000524AS
sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged ST31000524AS
sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device loaded active plugged Hitachi_HDS721010CLA632
sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device loaded active plugged Hitachi_HDS721010CLA632
sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb4.device loaded active plugged Hitachi_HDS721010CLA632
sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb5.device loaded active plugged Hitachi_HDS721010CLA632
sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb6.device loaded active plugged Hitachi_HDS721010CLA632
sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device loaded active plugged Hitachi_HDS721010CLA632
sys-devices-pci0000:00-0000:00:1f.2-ata5-host4-target4:0:0-4:0:0:0-block-sr0.device loaded active plugged hp_CDDVDW_TS-H653TN
sys-devices-pci0000:00-0000:00:1f.2-ata6-host5-target5:0:0-5:0:0:0-block-sdc-sdc1.device loaded active plugged OCZ-VERTEX3
sys-devices-pci0000:00-0000:00:1f.2-ata6-host5-target5:0:0-5:0:0:0-block-sdc-sdc2.device loaded active plugged OCZ-VERTEX3
sys-devices-pci0000:00-0000:00:1f.2-ata6-host5-target5:0:0-5:0:0:0-block-sdc-sdc3.device loaded active plugged OCZ-VERTEX3
sys-devices-pci0000:00-0000:00:1f.2-ata6-host5-target5:0:0-5:0:0:0-block-sdc-sdc4.device loaded active plugged OCZ-VERTEX3
sys-devices-pci0000:00-0000:00:1f.2-ata6-host5-target5:0:0-5:0:0:0-block-sdc-sdc5.device loaded active plugged OCZ-VERTEX3
sys-devices-pci0000:00-0000:00:1f.2-ata6-host5-target5:0:0-5:0:0:0-block-sdc.device loaded active plugged OCZ-VERTEX3
sys-devices-platform-serial8250-tty-ttyS0.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS0
sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
sys-devices-virtual-block-dm\x2d0.device loaded active plugged /sys/devices/virtual/block/dm-0
sys-devices-virtual-block-dm\x2d1.device loaded active plugged /sys/devices/virtual/block/dm-1
sys-devices-virtual-block-dm\x2d2.device loaded active plugged /sys/devices/virtual/block/dm-2
sys-devices-virtual-block-dm\x2d3.device loaded active plugged /sys/devices/virtual/block/dm-3
sys-devices-virtual-block-dm\x2d4.device loaded active plugged /sys/devices/virtual/block/dm-4
sys-devices-virtual-block-dm\x2d5.device loaded active plugged /sys/devices/virtual/block/dm-5
sys-devices-virtual-block-dm\x2d6.device loaded active plugged /sys/devices/virtual/block/dm-6
sys-devices-virtual-block-dm\x2d7.device loaded active plugged /sys/devices/virtual/block/dm-7
sys-devices-virtual-block-md0.device loaded active plugged /sys/devices/virtual/block/md0
sys-devices-virtual-block-md2.device loaded active plugged /sys/devices/virtual/block/md2
sys-devices-virtual-tty-tty0.device loaded active plugged /sys/devices/virtual/tty/tty0
sys-devices-virtual-tty-tty1.device loaded active plugged /sys/devices/virtual/tty/tty1
sys-devices-virtual-tty-tty10.device loaded active plugged /sys/devices/virtual/tty/tty10
sys-devices-virtual-tty-tty11.device loaded active plugged /sys/devices/virtual/tty/tty11
sys-devices-virtual-tty-tty12.device loaded active plugged /sys/devices/virtual/tty/tty12
sys-devices-virtual-tty-tty2.device loaded active plugged /sys/devices/virtual/tty/tty2
sys-devices-virtual-tty-tty3.device loaded active plugged /sys/devices/virtual/tty/tty3
sys-devices-virtual-tty-tty4.device loaded active plugged /sys/devices/virtual/tty/tty4
sys-devices-virtual-tty-tty5.device loaded active plugged /sys/devices/virtual/tty/tty5
sys-devices-virtual-tty-tty6.device loaded active plugged /sys/devices/virtual/tty/tty6
sys-devices-virtual-tty-tty7.device loaded active plugged /sys/devices/virtual/tty/tty7
sys-devices-virtual-tty-tty8.device loaded active plugged /sys/devices/virtual/tty/tty8
sys-devices-virtual-tty-tty9.device loaded active plugged /sys/devices/virtual/tty/tty9
sys-module-configfs.device loaded active plugged /sys/module/configfs
sys-module-fuse.device loaded active plugged /sys/module/fuse
-.mount loaded active mounted /
boot-efi.mount loaded active mounted /boot/efi
dev-hugepages.mount loaded inactive dead Huge Pages File System
dev-mqueue.mount loaded active mounted POSIX Message Queue File System
home.mount loaded active mounted /home
media-cdrecorder.mount loaded inactive dead /media/cdrecorder
media.mount loaded active mounted Media Directory
mnt-camera.mount loaded inactive dead /mnt/camera
mnt-cdrom.mount loaded inactive dead /mnt/cdrom
mnt-dropbox.mount loaded active mounted /mnt/dropbox
mnt-extern.mount loaded inactive dead /mnt/extern
mnt-jetflash.mount loaded inactive dead /mnt/jetflash
mnt-md0.mount loaded inactive dead /mnt/md0
mnt-media.mount loaded active mounted /mnt/media
mnt-music.mount loaded active mounted /mnt/music
mnt-oopsfiles.mount loaded active mounted /mnt/oopsfiles
mnt-platz.mount loaded active mounted /mnt/platz
mnt-ramportage.mount loaded active mounted /mnt/ramportage
mnt-vmware.mount loaded active mounted /mnt/vmware
proc-sys-fs-binfmt_misc.mount loaded inactive dead Arbitrary Executable File Formats File System
sys-fs-fuse-connections.mount loaded active mounted FUSE Control File System
sys-kernel-config.mount loaded active mounted Configuration File System
sys-kernel-debug.mount loaded inactive dead Debug File System
sys-kernel-security.mount loaded inactive dead Security File System
tmp.mount loaded active mounted /tmp
usr-portage-distfiles-remote.mount loaded active mounted /usr/portage/distfiles/remote
usr-portage.mount loaded active mounted /usr/portage
var-run.mount loaded inactive dead Runtime Directory
var-tmp-portage.mount loaded active mounted /var/tmp/portage
systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch
systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch
update-etc-systemd-symlinks.path loaded active waiting Update /etc/systemd/system symlinks for units moved to /usr
accounts-daemon.service loaded active running Accounts Service
alsa-restore.service loaded inactive dead Restore Sound Card State
alsa-store.service loaded inactive dead Store Sound Card State
auditd.service error inactive dead auditd.service
colord.service loaded active running Manage, Install and Generate Color Profiles
console-kit-daemon.service loaded active running Console Manager
console-kit-log-system-start.service loaded active exited Console System Startup Logging
dbus.service loaded active running D-Bus System Message Bus
emergency.service loaded inactive dead Emergency Shell
fsck-root.service loaded inactive dead File System Check on Root Device
fsck@dev-disk-by\x2dlabel-efi\x2dboot.service loaded inactive dead File System Check on /dev/disk/by-label/efi-boot
fsck@dev-mapper-VG03\x2ddropbox.service loaded inactive dead File System Check on /dev/mapper/VG03-dropbox
fsck@dev-mapper-VG03\x2dmedia.service loaded inactive dead File System Check on /dev/mapper/VG03-media
fsck@dev-mapper-VG03\x2doopsfiles.service loaded inactive dead File System Check on /dev/mapper/VG03-oopsfiles
fsck@dev-mapper-VG03\x2dplatz.service loaded inactive dead File System Check on /dev/mapper/VG03-platz
fsck@dev-mapper-VG03\x2dvmware.service loaded inactive dead File System Check on /dev/mapper/VG03-vmware
fsck@dev-md0.service loaded inactive dead File System Check on /dev/md0
fsck@dev-sdc4.service loaded inactive dead File System Check on /dev/sdc4
fsck@dev-sdc5.service loaded inactive dead File System Check on /dev/sdc5
gdm.service loaded active running GNOME Display Manager
getty@tty1.service loaded active running Getty on tty1
halt.service loaded inactive dead Halt
lvm.service loaded active exited Linux Volume Manager
network.service error inactive dead network.service
NetworkManager.service loaded active running Network Manager
plymouth-quit-wait.service error inactive dead plymouth-quit-wait.service
plymouth-start.service error inactive dead plymouth-start.service
polkit.service loaded active running Authorization Manager
poweroff.service loaded inactive dead Power-Off
reboot.service loaded inactive dead Reboot
remount-rootfs.service loaded active exited Remount Root FS
rescue.service loaded inactive dead Rescue Shell
rtkit-daemon.service error inactive dead rtkit-daemon.service
syslog.service error inactive dead syslog.service
systemd-ask-password-console.service loaded inactive dead Dispatch Password Requests to Console
systemd-ask-password-wall.service loaded inactive dead Forward Password Requests to Wall
systemd-binfmt.service loaded inactive dead Set Up Additional Binary Formats
systemd-initctl.service loaded inactive dead /dev/initctl Compatibility Daemon
systemd-journald.service loaded active running Journal Service
systemd-logind.service loaded active running Login Service
systemd-modules-load.service loaded inactive dead Load Kernel Modules
systemd-random-seed-load.service loaded inactive dead Load Random Seed
systemd-random-seed-save.service loaded inactive dead Save Random Seed
systemd-readahead-collect.service loaded inactive dead Collect Read-Ahead Data
systemd-readahead-done.service loaded inactive dead Stop Read-Ahead Data Collection
systemd-readahead-replay.service loaded inactive dead Replay Read-Ahead Data
systemd-remount-api-vfs.service loaded active exited Remount API VFS
systemd-shutdownd.service loaded inactive dead Delayed Shutdown Service
systemd-sysctl.service loaded active exited Apply Kernel Variables
systemd-tmpfiles-clean.service loaded inactive dead Cleanup of Temporary Directories
systemd-tmpfiles-setup.service loaded active exited Recreate Volatile Files and Directories
systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
systemd-udevd.service loaded active running udev Kernel Device Manager
systemd-update-utmp-runlevel.service loaded inactive dead Notify Audit System and Update UTMP about System Runlevel Changes
systemd-update-utmp-shutdown.service loaded inactive dead Notify Audit System and Update UTMP about System Shutdown
systemd-user-sessions.service loaded active exited Permit User Sessions
systemd-vconsole-setup.service loaded active exited Setup Virtual Console
udisks2.service loaded active running Disk Manager
update-etc-systemd-symlinks.service loaded inactive dead Update /etc/systemd/system symlinks for units moved to /usr
upower.service loaded active running Daemon for power management
dbus.socket loaded active running D-Bus System Message Bus Socket
syslog.socket loaded inactive dead Syslog Socket
systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
systemd-journald.socket loaded active running Journal Socket
systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
systemd-udevd-control.socket loaded active listening udev Control Socket
systemd-udevd-kernel.socket loaded active running udev Kernel Socket
dev-disk-by\x2did-ata\x2dST31000524AS_9VPDH1D0\x2dpart2.swap loaded active active /dev/disk/by-id/ata-ST31000524AS_9VPDH1D0-part2
dev-disk-by\x2did-wwn\x2d0x5000c500360ea43d\x2dpart2.swap loaded active active /dev/disk/by-id/wwn-0x5000c500360ea43d-part2
dev-disk-by\x2dpartlabel-Linux\x5cx20swap.swap loaded active active /dev/disk/by-partlabel/Linux\x20swap
dev-disk-by\x2dpartuuid-1b2164a3\x2d560e\x2d443b\x2d985c\x2d3d9422b48bd6.swap loaded active active /dev/disk/by-partuuid/1b2164a3-560e-443b-985c-3d9422b48bd6
dev-disk-by\x2duuid-14883a1f\x2d6672\x2d4c04\x2db471\x2dcd80ef3b69c3.swap loaded active active /dev/disk/by-uuid/14883a1f-6672-4c04-b471-cd80ef3b69c3
dev-sda2.swap loaded active active /dev/sda2
basic.target loaded active active Basic System
emergency.target loaded inactive dead Emergency Mode
final.target loaded inactive dead Final Step
getty.target loaded active active Login Prompts
graphical.target loaded active active Graphical Interface
local-fs-pre.target loaded active active Local File Systems (Pre)
local-fs.target loaded active active Local File Systems
multi-user.target loaded active active Multi-User
network.target loaded active active Network
remote-fs-pre.target loaded active active Remote File Systems (Pre)
remote-fs.target loaded active active Remote File Systems
rescue.target loaded inactive dead Rescue Mode
shutdown.target loaded inactive dead Shutdown
sockets.target loaded active active Sockets
sound.target loaded active active Sound Card
swap.target loaded active active Swap
sysinit.target loaded active active System Initialization
syslog.target loaded inactive dead Syslog
umount.target loaded inactive dead Unmount All Filesystems
systemd-readahead-done.timer loaded inactive dead Stop Read-Ahead Data Collection 10s After Completed Startup
systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
LOAD = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB = The low-level unit activation state, values depend on unit type.
JOB = Pending job for the unit.
363 units listed.
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 18:14 ` Stefan G. Weichinger
@ 2012-07-20 18:20 ` Canek Peláez Valdés
2012-07-20 18:38 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-20 18:20 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 1:14 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
> Am 20.07.2012 19:34, schrieb Canek Peláez Valdés:
>> systemctl --all --full --no-pager
>
> See attachment.
>
> That LVM-thing seems to be the solution.
>
> Added my lvm.service from back then when I first played with systemd.
> That file was like the one listed here:
>
> http://en.gentoo-wiki.com/wiki/Systemd#Services
>
> But there is no udev-settle.service anymore.
No, it was removed.
> For testing I simply removed the 2 lines "Requires" "After" and started
> lvm.service manually.
>
> This started the LVs correctly now and I am able to log into Gnome now
> (writing from that very session).
>
> So the trick might be to correctly edit this lvm.service file (get the
> dependencies right).
Yeah; put it in /etc/systemd/system; I do that with rc-local.service,
for example (since it is not available in gentoo).
> In general I prefer to have openrc still at hand:
Then pleaso do not use my overlay. It's only purpose is to get rid of
OpenRC in a Gentoo system.
> Thanks! Stefan
Glad to know it is working.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 18:05 ` Canek Peláez Valdés
@ 2012-07-20 18:23 ` Stefan G. Weichinger
2012-07-20 18:26 ` Canek Peláez Valdés
0 siblings, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 18:23 UTC (permalink / raw
To: gentoo-user
Am 20.07.2012 20:05, schrieb Canek Peláez Valdés:
>> I *assume* it has to do with LVM:
>
> Whoa. What partition you do have on LVM? If it's home, it is available
> after GMD has showed up? (can you change to a virtual terminal with
> Ctrl-Alt-F3, for example, and as root see the contents of /home with
> ls?)
>
> LVM is not a damon, one of the reasons why /etc/init.d/lvm is a bad
> idea. /etc/init.d/lvm sets the devices using LVM; systemd does not
> need that, it does it by itself using udev (or so I heard, I don't use
> LVM).
see my previous mail (hasn't showed up here yet).
It's not /home but the LV with my dropbox-data.
Right now I look for the correct dependencies for lvm.service
I don't see the ebuild containing the unitfiles in portage anymore .. ?
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 18:23 ` Stefan G. Weichinger
@ 2012-07-20 18:26 ` Canek Peláez Valdés
0 siblings, 0 replies; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-20 18:26 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 1:23 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
> Am 20.07.2012 20:05, schrieb Canek Peláez Valdés:
>
>>> I *assume* it has to do with LVM:
>>
>> Whoa. What partition you do have on LVM? If it's home, it is available
>> after GMD has showed up? (can you change to a virtual terminal with
>> Ctrl-Alt-F3, for example, and as root see the contents of /home with
>> ls?)
>>
>> LVM is not a damon, one of the reasons why /etc/init.d/lvm is a bad
>> idea. /etc/init.d/lvm sets the devices using LVM; systemd does not
>> need that, it does it by itself using udev (or so I heard, I don't use
>> LVM).
>
> see my previous mail (hasn't showed up here yet).
>
> It's not /home but the LV with my dropbox-data.
It was slowing down Nautilus. That explains it.
> Right now I look for the correct dependencies for lvm.service
I think you can remove udev-settle and that's it.
> I don't see the ebuild containing the unitfiles in portage anymore .. ?
No, service files belong in their respective packages. I only have a
couple of them in /etc/systemd/system.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 18:20 ` Canek Peláez Valdés
@ 2012-07-20 18:38 ` Stefan G. Weichinger
2012-07-20 18:50 ` Canek Peláez Valdés
0 siblings, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 18:38 UTC (permalink / raw
To: gentoo-user
Am 20.07.2012 20:20, schrieb Canek Peláez Valdés:
> On Fri, Jul 20, 2012 at 1:14 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
>> Am 20.07.2012 19:34, schrieb Canek Peláez Valdés:
>>> systemctl --all --full --no-pager
>>
>> See attachment.
>>
>> That LVM-thing seems to be the solution.
>>
>> Added my lvm.service from back then when I first played with systemd.
>> That file was like the one listed here:
>>
>> http://en.gentoo-wiki.com/wiki/Systemd#Services
>>
>> But there is no udev-settle.service anymore.
>
> No, it was removed.
So what would "Requires" and "After" have to be like then?
Without these lines it doesn't work correctly ... just tested.
>> So the trick might be to correctly edit this lvm.service file (get the
>> dependencies right).
>
> Yeah; put it in /etc/systemd/system; I do that with rc-local.service,
> for example (since it is not available in gentoo).
I have it there but it isn't correct yet, see above.
>> In general I prefer to have openrc still at hand:
>
> Then pleaso do not use my overlay. It's only purpose is to get rid of
> OpenRC in a Gentoo system.
Yep.
>> Thanks! Stefan
>
> Glad to know it is working.
same here, thanks ;-)
S
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 18:38 ` Stefan G. Weichinger
@ 2012-07-20 18:50 ` Canek Peláez Valdés
2012-07-20 19:06 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-20 18:50 UTC (permalink / raw
To: gentoo-user
On Fri, Jul 20, 2012 at 1:38 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
> Am 20.07.2012 20:20, schrieb Canek Peláez Valdés:
>> On Fri, Jul 20, 2012 at 1:14 PM, Stefan G. Weichinger <lists@xunil.at> wrote:
>>> Am 20.07.2012 19:34, schrieb Canek Peláez Valdés:
>>>> systemctl --all --full --no-pager
>>>
>>> See attachment.
>>>
>>> That LVM-thing seems to be the solution.
>>>
>>> Added my lvm.service from back then when I first played with systemd.
>>> That file was like the one listed here:
>>>
>>> http://en.gentoo-wiki.com/wiki/Systemd#Services
>>>
>>> But there is no udev-settle.service anymore.
>>
>> No, it was removed.
>
> So what would "Requires" and "After" have to be like then?
>
> Without these lines it doesn't work correctly ... just tested.
I really don't know, since I don't use LVM. However,
"After=remount-rootfs.service", and "Before=gdm.service" sound like
good candidates.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 18:50 ` Canek Peláez Valdés
@ 2012-07-20 19:06 ` Stefan G. Weichinger
2012-07-23 9:29 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-20 19:06 UTC (permalink / raw
To: gentoo-user
Am 20.07.2012 20:50, schrieb Canek Peláez Valdés:
>
> I really don't know, since I don't use LVM. However,
> "After=remount-rootfs.service", and "Before=gdm.service" sound like
> good candidates.
I have success with:
Requires=systemd-udev-settle.service
After=systemd-udev-settle.service
That service-file has been renamed from "udev-settle.service" to
"systemd-udev-settle.service" ... as it seems.
Booted and logged in successfully now.
Now for the network-config ;-)
Stefan
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-20 19:06 ` Stefan G. Weichinger
@ 2012-07-23 9:29 ` Stefan G. Weichinger
2012-07-23 18:34 ` Canek Peláez Valdés
0 siblings, 1 reply; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-23 9:29 UTC (permalink / raw
To: gentoo-user
(replying to list as I assume this could interest and/or help other
users as well)
Peter, Canek, how did you approach syslogs?
systemd brings its own journal (readable via systemd-journalctl, learned
right now) and so it possible to run the box without syslog-ng or similar.
archlinux-wiki tells me how to combine things:
https://wiki.archlinux.org/index.php/Systemd#Systemd_Journal
but I wonder what your solutions/opinions are so far ...
Thanks, Stefan
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-23 9:29 ` Stefan G. Weichinger
@ 2012-07-23 18:34 ` Canek Peláez Valdés
2012-07-24 16:51 ` Stefan G. Weichinger
0 siblings, 1 reply; 24+ messages in thread
From: Canek Peláez Valdés @ 2012-07-23 18:34 UTC (permalink / raw
To: gentoo-user
On Mon, Jul 23, 2012 at 4:29 AM, Stefan G. Weichinger <lists@xunil.at> wrote:
>
> (replying to list as I assume this could interest and/or help other
> users as well)
>
> Peter, Canek, how did you approach syslogs?
>
> systemd brings its own journal (readable via systemd-journalctl, learned
> right now) and so it possible to run the box without syslog-ng or similar.
>
> archlinux-wiki tells me how to combine things:
>
> https://wiki.archlinux.org/index.php/Systemd#Systemd_Journal
>
> but I wonder what your solutions/opinions are so far ...
journald is an interesting idea. It allows you (among other things) to
see the messages from a service (and only from that service) in the
status command of systemctl:
# systemctl status sshd.service
sshd.service - SSH Secure Shell Service
Loaded: loaded (/etc/systemd/system/sshd.service; enabled)
Active: active (running) since Thu, 12 Jul 2012 21:39:03 -0500; 1
weeks and 3 days ago
Main PID: 371 (sshd)
CGroup: name=systemd:/system/sshd.service
└ 371 /usr/sbin/sshd -D
Jul 22 18:12:18 negra sshd[11272]: SSH: Server;Ltype: Version;Remote:
192.168.0.100-60763;Protocol: 2.0;Client: OpenSSH_5.9p1-hpn13v11lpk
Jul 22 18:12:18 negra sshd[11272]: SSH: Server;Ltype: Kex;Remote:
192.168.0.100-60763;Enc: aes128-ctr;MAC: hmac-md5;Comp: none [preauth]
Jul 22 18:12:19 negra sshd[11272]: SSH: Server;Ltype: Authname;Remote:
192.168.0.100-60763;Name: canek [preauth]
Jul 22 18:12:22 negra sshd[11272]: Accepted publickey for canek from
192.168.0.100 port 60763 ssh2
Jul 22 18:12:22 negra sshd[11272]: pam_unix(sshd:session): session
opened for user canek by (uid=0)
Jul 22 21:06:54 negra sshd[11893]: SSH: Server;Ltype: Version;Remote:
192.168.0.100-35208;Protocol: 2.0;Client: OpenSSH_5.9p1-hpn13v11lpk
Jul 22 21:06:54 negra sshd[11893]: SSH: Server;Ltype: Kex;Remote:
192.168.0.100-35208;Enc: aes128-ctr;MAC: hmac-md5;Comp: none [preauth]
Jul 22 21:06:54 negra sshd[11893]: SSH: Server;Ltype: Authname;Remote:
192.168.0.100-35208;Name: canek [preauth]
Jul 22 21:06:55 negra sshd[11893]: Accepted publickey for canek from
192.168.0.100 port 35208 ssh2
As far as I know, there is nothing remotely similar in either Upstart
nor SysV init.
In my laptop and desktop, I could only use journald, but since systemd
can be used along with rsyslog/syslog-ng, I still run rsyslog:
# systemctl status rsyslog.service
rsyslog.service - System Logging Service
Loaded: loaded (/usr/lib/systemd/system/rsyslog.service; enabled)
Active: active (running) since Thu, 12 Jul 2012 21:39:04 -0500; 1
weeks and 3 days ago
Main PID: 388 (rsyslogd)
CGroup: name=systemd:/system/rsyslog.service
└ 388 /usr/sbin/rsyslogd -n -c5
The reason is only that I actually like to keep my logs, even if for a
laptop/desktop is most of the times not necessary. I think the only
thing I did to set rsyslog as my logger service was to link the
syslog.service file to it:
# ll /etc/systemd/system/syslog.service
lrwxrwxrwx 1 root root 39 Jan 18 2012
/etc/systemd/system/syslog.service ->
/usr/lib/systemd/system/rsyslog.service
For my servers journald is cute, but I would never think about
removing a "real" logger.
So, in short: for servers install a real logger (I recommend rsyslog,
although syslog-ng should also work), and for laptop/desktop you
*could* do just with journald, but if it makes you feel better (as it
does in my case) you can also install a real logger.
Now that I think about it, I haven't really looked at my logs neither
in my laptop nor desktop in months. I think I could easily remove
rsyslog and just have journald; but rsyslog is light enough, and
having the logs there gives me a little peace of mind.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] systemd and gnome3
2012-07-23 18:34 ` Canek Peláez Valdés
@ 2012-07-24 16:51 ` Stefan G. Weichinger
0 siblings, 0 replies; 24+ messages in thread
From: Stefan G. Weichinger @ 2012-07-24 16:51 UTC (permalink / raw
To: gentoo-user
Am 23.07.2012 20:34, schrieb Canek Peláez Valdés:
> journald is an interesting idea. It allows you (among other things)
> to see the messages from a service (and only from that service) in
> the status command of systemctl: As far as I know, there is nothing
> remotely similar in either Upstart nor SysV init.
Yes, there might be *some* advantages to expect ;-)
> In my laptop and desktop, I could only use journald, but since
> systemd can be used along with rsyslog/syslog-ng, I still run
> rsyslog:
>
> # systemctl status rsyslog.service rsyslog.service - System Logging
> Service Loaded: loaded (/usr/lib/systemd/system/rsyslog.service;
> enabled) Active: active (running) since Thu, 12 Jul 2012 21:39:04
> -0500; 1 weeks and 3 days ago Main PID: 388 (rsyslogd) CGroup:
> name=systemd:/system/rsyslog.service └ 388 /usr/sbin/rsyslogd -n -c5
>
> The reason is only that I actually like to keep my logs, even if for
> a laptop/desktop is most of the times not necessary.
Keeping journald-logs just needs "mkdir -p /var/log/journal" (and in
case defining the size limit in the configfile).
> I think the only thing I did to set rsyslog as my logger service was
> to link the syslog.service file to it:
>
> # ll /etc/systemd/system/syslog.service lrwxrwxrwx 1 root root 39
> Jan 18 2012 /etc/systemd/system/syslog.service ->
> /usr/lib/systemd/system/rsyslog.service
>
> For my servers journald is cute, but I would never think about
> removing a "real" logger.
For my servers I don't think about removing a "real" init-system ;-)
No joke: in production environments I don't think of using systemd yet.
Just playing around here and learning things. I would consider using it
if it were officially supported by gentoo in terms of "you get a set of
fully tested unit-files" etc ... but right now it always feels like "ah,
there might be another howto" ... "maybe I lack some really important
service" ... at least this is my feeling right now. learning.
> So, in short: for servers install a real logger (I recommend rsyslog,
> although syslog-ng should also work),
never tried rsyslog, could have a look, yes.
> and for laptop/desktop you
> *could* do just with journald, but if it makes you feel better (as it
> does in my case) you can also install a real logger.
>
> Now that I think about it, I haven't really looked at my logs neither
> in my laptop nor desktop in months. I think I could easily remove
> rsyslog and just have journald; but rsyslog is light enough, and
> having the logs there gives me a little peace of mind.
I also don't expect much difference in performance. There isn't that
much to log on a desktop, and the load isn't that high most of the time.
Thanks, Stefan
^ permalink raw reply [flat|nested] 24+ messages in thread
end of thread, other threads:[~2012-07-24 16:53 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-20 9:56 [gentoo-user] systemd and gnome3 Stefan G. Weichinger
2012-07-20 10:58 ` Samuraiii
2012-07-20 12:43 ` Peter Alfredsen
2012-07-20 13:42 ` Stefan G. Weichinger
2012-07-20 13:54 ` Peter Alfredsen
2012-07-20 14:42 ` Stefan G. Weichinger
2012-07-20 15:00 ` Peter Alfredsen
2012-07-20 15:30 ` Canek Peláez Valdés
2012-07-20 15:54 ` Peter Alfredsen
2012-07-20 16:08 ` Canek Peláez Valdés
2012-07-20 17:21 ` Stefan G. Weichinger
2012-07-20 17:34 ` Canek Peláez Valdés
2012-07-20 17:58 ` Stefan G. Weichinger
2012-07-20 18:05 ` Canek Peláez Valdés
2012-07-20 18:23 ` Stefan G. Weichinger
2012-07-20 18:26 ` Canek Peláez Valdés
2012-07-20 18:14 ` Stefan G. Weichinger
2012-07-20 18:20 ` Canek Peláez Valdés
2012-07-20 18:38 ` Stefan G. Weichinger
2012-07-20 18:50 ` Canek Peláez Valdés
2012-07-20 19:06 ` Stefan G. Weichinger
2012-07-23 9:29 ` Stefan G. Weichinger
2012-07-23 18:34 ` Canek Peláez Valdés
2012-07-24 16:51 ` Stefan G. Weichinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox