How can i find out if udev works or devfs is still used

Hello!
I'm interrested in running udev instead of devfs, so i used the udev howto from the wiki to change to udev. Now there were no error messages, but how do i know udev is running? /dev/ still seems to look like it looked with /devfs. And ArchLinux bootscreen shows still " Starting devfs deamon ..... [done]".
My lilo.conf looks like this so devfs should be deactivated, or not?
# /etc/lilo.conf
boot=/dev/discs/disc0/disc append="devfs=nomount"
# This line often fixes L40 errors on bootup
# disk=/dev/discs/disc0/disc bios=0x80
bitmap=/boot/arch-lilo.bmp
bmp-colors=1,0,8,3,8,1
bmp-table=185p,140p,1,18
bmp-timer=400p,345p,3,8,1
vga=791
default=WindowsXP
timeout=300
lba32
prompt
#image=/boot/vmlinuz26
# label=failsave
# root=/dev/discs/disc0/part5
# read-only
image=/boot/vmlinuz267bs
label=ArchLinux
root=/dev/discs/disc0/part5
append="video=vesafb:ywrap,mtrr splash=silent"
initrd=/boot/initrd.splash
read-only
other=/dev/discs/disc0/part1
label=WindowsXP
# End of file
CU ActionNews

Hmm .... this might be the problem: rc.sysinit seems to be a bootsplash-modified version:
#!/bin/sh
# /etc/rc.sysinit
. /etc/rc.conf
. /etc/rc.d/functions
echo " "
printhl "Arch Linux v0.6 $C_OTHER(${C_H2}Widget$C_OTHER)n"
printhl "${C_H2}http://www.archlinux.org"
printhl "Copyright 2002-2004 Judd Vinet"
printhl "Distributed under the GNU General Public License (GPL)"
printsep
# start up our mini logger until syslog takes over
/sbin/minilogd
# get ready for bootsplash
/bin/mount -n -t proc none /proc
if grep -qs silent /proc/splash; then
BOOTSPLASH_NUMBER=$((`echo ${DAEMONS[@]} | sed 's/![^ t]*//g' | wc -w` +
`cat /etc/rc.{sysinit,multi,local} | grep -c -e status -e stat_busy`))
BOOTSPLASH_DELTA=$((60000 / $BOOTSPLASH_NUMBER))
BOOTSPLASH_PROGRESS=$((65535 - $BOOTSPLASH_NUMBER * $BOOTSPLASH_DELTA))
[ -w /proc/splash ] && echo "show $BOOTSPLASH_PROGRESS" > /proc/splash
fi
# anything more serious than KERN_WARNING goes to the console
/bin/dmesg -n 3
if [ -e /dev/.devfsd -a -x /sbin/devfsd ]; then
status "Starting DevFS Daemon" /sbin/devfsd /dev
fi
if [ "$USELVM" = "yes" -o "$USELVM" = "YES" ]; then
if [ -f /etc/lvmtab -a -x /sbin/vgchange ]; then
# Kernel 2.4.x, LVM1 groups
stat_busy "Activating LVM1 groups"
/sbin/vgchange -a y
stat_done
elif [ -x /sbin/lvm ]; then
# Kernel 2.6.x, LVM2 groups
/bin/mount -n -t sysfs none /sys
stat_busy "Activating LVM2 groups"
/sbin/lvm vgchange --ignorelockingfailure -a y
stat_done
umount /sys
fi
fi
status "Activating Swap" /sbin/swapon -a
status "Mounting Root Read-only" /bin/mount -n -o remount,ro /
if [ -x /sbin/fsck ]; then
stat_busy "Checking Filesystems"
/sbin/fsck -A -T -C -a
if [ $? -gt 1 ]; then
stat_fail
echo
echo "***************** FILESYSTEM CHECK FAILED ****************"
echo "* *"
echo "* Please repair manually and reboot. Note that the root *"
echo "* file system is currently mounted read-only. To remount *"
echo "* it read-write type: mount -n -o remount,rw / *"
echo "* When you exit the maintenance shell the system will *"
echo "* reboot automatically. *"
echo "* *"
echo "************************************************************"
echo
/sbin/sulogin -p
echo "Automatic reboot in progress..."
/bin/umount -a
/bin/mount -n -o remount,ro /
/sbin/reboot -f
exit 0
fi
stat_done
fi
stat_busy "Mounting Local Filesystems"
/bin/umount /proc
/bin/mount -n -o remount,rw /
/bin/rm -f /etc/mtab*
/bin/mount /proc
/bin/mount -a -t nonfs,nosmbfs,noncpfs
stat_done
stat_busy "Configuring System Clock"
if [ "$HARDWARECLOCK" = "UTC" ]; then
/sbin/hwclock --utc --hctosys
else
/sbin/hwclock --localtime --hctosys
fi
if [ ! -f /var/lib/hwclock/adjtime ]; then
echo "0.0 0 0.0" > /var/lib/hwclock/adjtime
fi
if [ "$TIMEZONE" != "" ]; then
/bin/ln -sf /usr/share/zoneinfo/$TIMEZONE /etc/localtime
fi
stat_done
stat_busy "Removing Leftover Files"
/bin/rm -f /etc/nologin &> /dev/null
/bin/rm -f /etc/shutdownpid &> /dev/null
/bin/rm -f /var/locks/* &> /dev/null
/bin/rm -f /var/run/*.pid &> /dev/null
/bin/rm -f /var/run/daemons/* &>/dev/null
/bin/rm -rf /tmp/* /tmp/.* &> /dev/null
: > /var/run/utmp
stat_done
status "Updating Shared Library Links" /sbin/ldconfig
if [ "$HOSTNAME" != "" ]; then
status "Setting Hostname: $HOSTNAME" /bin/hostname $HOSTNAME
fi
kernel_version=`uname -r`
if [ -e "/lib/modules/$kernel_version/modules.dep" ]; then
new_mods=`/usr/bin/find /lib/modules/$kernel_version -type f -newer /lib/modules/$kernel_version/modules.dep`
if [ ! -z "$new_mods" ]; then
status "Updating Module Dependencies" /sbin/depmod -a
fi
else
status "Updating Module Dependencies" /sbin/depmod -a
fi
if [ -f /var/run/random-seed ]; then
stat_busy "Initializing Random Seed"
/bin/cat /var/run/random-seed >/dev/urandom
stat_done
fi
if [ "$KEYMAP" != "" ]; then
status "Loading Keyboard Map: $KEYMAP" /bin/loadkeys -q $KEYMAP
fi
if [ "$CONSOLEFONT" != "" ]; then
stat_busy "Loading Console Font: $CONSOLEFONT"
for i in `seq 1 12`; do
/usr/bin/setfont $CONSOLEFONT -C /dev/vc/${i};
done
stat_done
fi
# Load modules from the MODULES array defined in rc.conf
stat_busy "Loading Modules"
for mod in "${MODULES[@]}"; do
if [[ `echo $mod | grep '^[^!]' | wc -l` -eq 1 ]]; then
/sbin/modprobe $mod
fi
done
stat_done
# Screen blanks after 15 minutes idle time
/usr/bin/setterm -blank 15
# set things up for bootsplash in rc.multi
if [ "$BOOTSPLASH_NUMBER" -a "$BOOTSPLASH_PROGRESS" ]; then
let "BOOTSPLASH_NUMBER -= `grep -c -e status -e stat_busy /etc/rc.sysinit`"
BOOTSPLASH_DELTA=$(((65535 - $BOOTSPLASH_PROGRESS) / $BOOTSPLASH_NUMBER))
BOOTSPLASH_PROGRESS=$((65535 - $BOOTSPLASH_NUMBER * $BOOTSPLASH_DELTA))
[ -w /proc/splash ] && echo "show $BOOTSPLASH_PROGRESS" > /proc/splash
echo "export BOOTSPLASH_PROGRESS=$BOOTSPLASH_PROGRESS" > /tmp/bootsplash_env
echo "export BOOTSPLASH_DELTA=$BOOTSPLASH_DELTA" >> /tmp/bootsplash_env
fi
# End of file
Well then i'll stick with devfs. It works.
CU ActionNews

Similar Messages

  • How can I find out the screen size of the users moniter using the Acrobat SDK?

    How can I find out the screen size of the users moniter using the Acrobat SDK? I need to know how much sreen real estate that is available on the users moniter. Is there some call that I can make from the SDK to discover the maximun X and Y coordinates?
    Thanks,
    Gregory

    Currently, I am testing on multiple moniters and it is defaulting to the moniter designated as the #1 moniter. For our purposes, this is acceptable. Once the two documents have loaded, the user can move and re-size at will.
    Gregory

  • How can I find out what extensions (not plugins) are currently installed using JavaScript?

    I am creating a JavaScript module which detects if a Firefox extension is installed in the client's browser.
    I can check if a Firefox plugin is installed by querying navigator.plugins object, but I can't figure out how to do this for extensions.

    You can't check for extensions that are installed.<br />
    Plugins can be detected via navigator.plugins as you posted, but you can't detect extensions for privacy and security reasons.
    *https://developer.mozilla.org/en/docs/DOM/window.navigator
    It the past it was possible to check for images added by an extension, but that access was blocked.
    * http://blog.mozilla.com/security/2007/11/16/jar-protocol-xss-security-issues/
    * http://blog.mozilla.com/security/2008/01/22/chrome-protocol-directory-traversal/
    * http://blog.mozilla.com/security/2008/01/29/status-update-for-chrome-protocol-directory-traversal-issue/

  • How can I find out what is on my iCloud. I used to share an account and now I don't but the other person may have accessed my cloud.

    I am trying to find out what information it actually stored on my iCloud. I shared an account with someone and no longer do however I believe that the other person has accessed all of my contacts. Is there a way I can find out what was on the cloud that was accessed.

    You can go to icloud.com from your computer to see what data is in the account (other than photo stream photos and your iCloud backup), but you won't know what data may have been accessed by someone else.  If you're concerned, change your password as discussed here: http://support.apple.com/kb/HT5624.  After changing your iCloud ID password, go to Settings>iCloud, tap Delete Account, then sign back in with the new password.
    When you delete the account it only deletes the account and your synced data from your device, not from iCloud.  Provided you are signing back into the same account your data will be synced back when you sign back in.  Save you photo stream photos before deleting the account (tap Edit, tap the photos, tap Share, tap Save to Camera Roll)

  • How can i find out who is using my email in iMessage

    How can i find out what devices on my apple id are using my email for imessage?

    On the devices go to Settings>Messages>Send and Receive and look. There is no way of doing that remotely.

  • HT5625 I cannot send a text thru iMessage.  I followed the directions over and over again but can't make it work.  Also how can I find out all the apple ids I may have.

    I cannot send a text thru iMessage.  I followed the directions over and over again but can't make it work.  Also how can I find out all the apple ids I may have.

    A wet phone is out of warranty. This is considered user damage. Even if you were able to get it to start now, the chances of it working for long are slim. I suggest going to Apple and see about an OOW replacement. One for the iPhone 4 is only $149USD and it would come with a short warranty. It is a refurbished device and you would not be worried about encountering additional problems.

  • I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    Agile,
    Any of the above will work, depending how you would like to set it up.
    Given that kids tend to eventually grow up and be independent, the best long term answer for most people is to let her have her own account and her own library as soon as she can handle it.  Keep in mind that content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, so separating later is a challenge.
    If you want to sync multiple devices to the same library, that will work.  Or if you want separate libraries (as I would recommend), they can be either on separate computers or on separate Windows user accounts on the same PC.
    For the name change:  Connect the device.  When the name appears in the left sidebar of iTunes, highlight it and change it.

  • How can i find out if i have a bad codec affecting after effects?

    hi all, i'm having all kinds of problems with after effects cs4. the current problem i'm having is i'll be working on a project, it starts to slow down and become unresponsive, i try to save but then it crashes and everything i've done is lost. opengl is off but i don't think that's the problem because opengl isn't affecting any of my other programs like cinema 4d and i even tried taking out the opengl from the plugins folder but i was still getting opengl error messages with certain effects like the rotoscoping effect. i was wondering if maybe this might be a codec problem since i heard that ae loads codecs at start. how can i find out if a corrupted codec is affecting my after effects?
    after effects cs4
    amd turion 64 x2 mobile technology tl-62 2.10 ghz
    3 gb ram
    windows vista 32
    geforce go 6150
    total graphics memory: 1343 mb
    dedicated graphics memory: 128 mb
    system video memory: 0 mb
    shared system memory: 1215 mb
    i'm pretty much desperate to get this working as it's essential to my work flow and i can't afford to get a new computer right now (i should have bought a mac, now i know) so i'll try anything if you have any suggestions. thanks!

    >how can i find out if a corrupted codec is affecting my after effects?
    You remove them all! ;-) I think you are going about this the wrong way.
    a)If you ever installed any third-party CoDecs manually, they will be listed in the "Add or Remove Programs" section or have an uninstaller.
    b)If those CoDecs were auto-installed e.g. via a web-browser, they will leave traces in the extension lists or even appear as separate entries somewhere as well.
    c) If the CoDecs were part of a program, then by all rights, you really should know which programs those are and know how to remove them.
    Failing that, simply uninstall Quicktime completely. Reinstall it from scratch. Likewise, manually download a full install of Windows Media Player and reinstall it using the "Repair" option. Everything else is pure specualtion - AE may scan your CoDecs on startup, but if you never import any footage using them, they will not be initialized and not cause trouble.
    And honestly: That Mac talk is not worth a dime. Final Cut Pro alone comes with 30 or so extra CoDecs, many of which have been known to be just as troublesome to use with Adobe products and you can encounter the same situation easily any time...
    Mylenium

  • How can I find out which .pst or .ost file itunes referres to when synchronising with outlook

    I´ve switched to iphone 4S from my 3Gs and would like to "clean" my itunes Sync before I use the new phone. Problem is, that the synchronisation with Outlook 2003 doesn´t work anymore. I guess the reason is that itunes refers to an old .ost or .pst file on my computer. I ve got several outlook profiles and changed from exchange to pop3. My question: How can I find out which .pst or .ost file itunes referres to?
    Thanks a lot in advance :-)

    Select the tune and then - Get Info - in the dialog box is a note of the Apple ID used to purchase.
    MJ

  • How can I find out the series of my laptop

    Hi
    I have HP Envy dv6 Notebook pc. I has 15" screen and i7 cpu.
    I had enough with windows 8, and i installed windows 7 pro.
    I am finding it difficult to find the drivers.
    I have lost all the sticker from my laptop, which can identify the laptop series and model.
    Only things I managed to find out is Product no.
    How can I find out which series this laptop belong too.
    When I search for HP Envy dv6 Notebook pc, I see many model. eg
    HP ENVY dv6-7200sa Notebook PC
    Can someone advice me.
    Many thanks
    Ish

    Hi,
          Use the below link to find the product details of the unit.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00033108&tmp_task=prodinfoCategory&cc=uk&dlc=en...
    "I work for HP."
    Please click the "White Kudos" star to say thanks for helping.
    Please mark "Accept As Solution" if my help has solved your problem.

  • How can I find out the semester in a date?

    Hello I have this query
    SELECT 1949+rowno_year || lpad(rowno_month, 2, '0') MONTH_ID, to_char(to_date(to_char(1949+rowno_year || lpad(rowno_month, 2, '0')),'YYYYMM' ),'MONTH','NLS_DATE_LANGUAGE = ENGLISH') MONTH_NAME,
    to_char(to_date(to_char(1949+rowno_year || lpad(rowno_month, 2, '0')),'YYYYMM' ),'Q','NLS_DATE_LANGUAGE = ENGLISH') QUARTER_ID,
    FROM dual A,
    (SELECT ROWNUM rowno_year FROM DUAL CONNECT BY LEVEL <= 100) B,
    (SELECT ROWNUM rowno_month FROM DUAL CONNECT BY LEVEL <= 12) c
    How can I find out in which semester the date is?
    And the four_month_period??
    Thanks in advance

    >
    Simply I'm building a date from 1950 until 2050 in this formast (YYYYMM) then for each row I want to find out the Name of the month, the quarter, semester and half-month-period to which it belongs.
    >
    I meant an example where you display 1 or more rows and the your expected values. How am I to know how your definition of semester works, for example?
    C.

  • How can I find out user id who has deleted payment order

    Issue : After payment run, the required information has been sent as Idoc to the bank. So, we know the payment order number.   We observed that another payment run also has picked up this vendor invoice and made payment.
    Usually Payment Sent will be marked X until the related information comes in the form of bank statement upload and this amount gets cleared.
    We noticed that bank has made two payments for this amount to this vendor on different dates :- a) when the payment order supposed to be paid as per the payment terms and b) when second paymnet run paid the amount [ this time it got paid directly as there is long due amount ].
    From SAP APP angle, both the payment run worked fine and also the calcaltion of payment terms as well.
    So, we come to conculsion that someone has deleted the payment order from the system. Thats the reason this invoice got picked up by 2nd APP and paid the amount.
    Where we could not find the related entry in REGUH/REGUP tables for this payment order and no document changes.
    Question: How can I find out user id who has deleted payment order. Appreciate any clue / answer for this issue please.
    Thank you
    Sri

    Hello,
    Not sure about deletion logs. =/
    Idea:
    What if an error occured during the first payment? Have you checked sm13 to check if any update termination occured in the payment program?
    Regards,
    Renan

  • How can i find out my apple id that i installed mavericks with?

    how can i find out my apple id that i installed mavericks with?
    None onf my apps are opening. The guy at the apple store told me to reinstall my OS. I cant reinstall without my apple id and all the ids that I thought it was dont seem to work.

    How many different Apple IDs have you used to open an iTunes/Mac App Store account?
    Mavericks should appear in the Purchases list of the Apple ID used to buy it.

  • How can I find out who downloaded an app

    We have several people who use the same iTunes account how can I find out who downloaded an app

    Yahoote wrote:
    We have several people who use the same iTunes account how can I find out who downloaded an app
    Ask them.  Unless they are a bunch of fibbers, you can easily find out.
    Also, note that many things about iTunes work better when there is one account per person.  Consider going that way. 

  • How can you find out if your mac is infected with the flash back virus

    how can you find out if your mac is infected with the flash back virus?

    F-Secure's Flashback removal tool - http://www.f-secure.com/v-descs/trojan-downloader_osx_flashback_k.shtml - supposedly also works on OSX 10.5 and earlier.
    05 Apr 2012 How to Detect and Protect Against Updated Flashback Malware - http://tidbits.com/article/12918 - detection methods for multiple browsers and general information
    Leopard and earlier users see recommendations at: https://discussions.apple.com/thread/3872491

Maybe you are looking for

  • HP Pavilion g4 2131tx, Hard Disk Error after Blue Screen of Death

    Hello! I do not know what section shoud i post this problem, I apologize for it. So my laptop is freezing for a days after BSOD. When I leave my laptop overnight for downloading torrents, I always receive the message "Windows has recovered from unexp

  • Tips on Backing up data

    Hi, Please forgive me if my question doesnt' quite fit here ... I have a general question about how I should backup data. I'm mostly concerned about photos, music and some financial data that's in our iMac G5. Should I buy an external drive and set u

  • Need help with popup windows

    Hi, (I don't know if this is where I should post this, so if somewhere else is more appropriate, please let me know) I'm building a window (might say a popup window). What I need it to do is this. I'm working in the gui. When the user clicks the butt

  • Safari webmail not working

    Just recently, Safari will no longer open email messages, delete mail, or view any folders in my webmail viewed through safari. When i try to do the mentioned tasks, the loading bar stops a quarter of the way through then freezes. I can access my mai

  • Cannot download files - or even post here?????????

    I started a topic in this thread that I couldn't download files any longer from sites such as Rapidshare - after a few minutes of downloading at 56.7 kbps the connection appears to be lost and the download rate drops to zero. If I attempt to re-downl