
I read that this might be a kernel issue. Anyone found out what exactly was the problem? I'm using zen-sources and still can't shutdown properly.Phlogiston wrote:I can't properly shutdown when using parallel boot. Looks like an endless loop: a lot is waiting for mtab, while mtab waits for root without a change...
Any idea?



it works perfectly with 0.4.2 and reiser4Phlogiston wrote:remove reiser4
rc-update show boot
bootmisc | boot
consolefont | boot
device-mapper | boot
dmcrypt | boot
fsck | boot
hostname | boot
hwclock | boot
keymaps | boot
localmount | boot
modules | boot
mtab | boot
net.lo | boot
procfs | boot
root | boot
swap | boot
sysctl | boot
termencoding | boot
udev-postmount | boot
urandom | boot
rc-update show default
acpid | default
alsasound | default
dbus | default
gpm | default
irqbalance | default
lm_sensors | default
local | default
net.eth0 | default
netmount | default
ntp-client | default
ntpd | default
pdnsd | default
postfix | default
syslog-ng | default
rc-update show sysinit
devfs | sysinit
dmesg | sysinit
udev | sysinit


Haha, I did follow it...but I can't read so well...thanks, though, you are right:Gerard van Vuuren wrote:Hi platojones,
The openrc config has been moved to /etc/rc.conf!
If you followed the openrc update instructions you
would have known that.
The /etc/conf.d/rc.conf is deprecated and probably
doesn't work anymore.
Gerard.
I did just the opposite/etc/conf.d/rc has been deprecated and any settings you have in there will need to be migrated to the appropriate settings in /etc/rc.conf. Please read through /etc/rc.conf and /etc/conf.d/rc and migrate the settings. Once you are complete, delete /etc/conf.d/rc.
Thus you tell xorg to manage you keyboard and mouse.Section "ServerLayout"
[...]
Option "AllowEmptyInput" "off"
Option "AllowAddDevices" "off"
EndSection
Code: Select all
lshal VinzC wrote:Yiiikes! 666 replies!
(Throwing salt over my left shoulder.)
EDIT: BTW this one makes it the 667th! We've just got passed a terrible accident, probably...
Wooohooo! Busted!agent_jdh wrote:RATS. I WANTED THAT ONE

Code: Select all
modules_2_6="snd_emu10k1 snd_hda_intel"
module_snd_emu10k1_args_2_6="index=0"
module_snd_hda_intel_args_2_6="index=1"
The way I read the script and the output it produces, it does in fact do the correct system call, however, apparently OpenRC does not allow the script to ask for input, so it just receives EOF and thus opening the devices fails.ph030 wrote:Try to remove "-d ${key}" from /lib/rcscripts/addons/dm-crypt-start.sh - that should work. If you've got a combination of key-files and passphrases, try with an if-else-thingy depending on your partition.
If I read the script correct, than it always wants a keyfile and only can distinguish between gpg-protected/not-protected-keyfile.
Code: Select all
# remove dmcrypt from runlevel(s)
rc-update del dmcrypt default
# Add the respective calls to cryptsetup in /etc/conf.d/local
nano /etc/conf.d/local
-> start section
cryptsetup luksOpen /dev/sda6 tmp -T 3
cryptsetup luksOpen /dev/sda8 home -T 3
-> stop section
cryptsetup luksClose tmp
cryptsetup luksClose home
# You will want cryptsetup to be called before local filesystems are being mounted, so we will also modify /etc/rc.conf
echo "rc_localmount_need="local"" >> /etc/rc.conf
# In my case, this did not stop XDM from being started, so I also added
echo -e "rc_xdm_need="local"\nrc_xdm_after="local"" >> /etc/rc.conf