Results 1 to 3 of 3

Thread: not logging out-just hitting power button

  1. #1
    Junior Member
    Join Date
    Oct 2004
    Posts
    2

    not logging out-just hitting power button

    Ive been using Knoppix for about a year. I run it live from the cd. When I'm done I just make sure all drives are unmounted and simply hit the power button. Its never seemed to be a problem ...and it takes so long to properly log out-so I continue to do it this way.

    Is this bad for some reason?

  2. #2
    Senior Member registered user
    Join Date
    Feb 2004
    Posts
    949

    Re: not logging out-just hitting power button

    Quote Originally Posted by futfutfut
    Ive been using Knoppix for about a year. I run it live from the cd. When I'm done I just make sure all drives are unmounted and simply hit the power button. Its never seemed to be a problem ...and it takes so long to properly log out-so I continue to do it this way.

    Is this bad for some reason?
    As long as the drives are safely unmounted thats fine.
    Just might build up a bad habit.

  3. #3
    Senior Member registered user
    Join Date
    Mar 2004
    Posts
    1,516
    if you read the shutdown scripts that is esentialy what they do. (extract from my slackware install below).

    # Carry a random seed between reboots.
    echo "Saving random seed from /dev/urandom in /etc/random-seed."
    # Use the pool size from /proc, or 512 bytes:
    if [ -r /proc/sys/kernel/random/poolsize ]; then
    dd if=/dev/urandom of=/etc/random-seed count=1 bs=$(cat /proc/sys/kernel/rando
    m/poolsize) 2> /dev/null
    else
    dd if=/dev/urandom of=/etc/random-seed count=1 bs=512 2> /dev/null
    fi
    chmod 600 /etc/random-seed

    # Before unmounting file systems write a reboot or halt record to wtmp.
    $command -w

    # Clear /var/lock/subsys.
    if [ -d /var/lock/subsys ]; then
    rm -f /var/lock/subsys/*
    fi

    # A function to deactivate LVM volume groups:
    deactivate_lvm() {
    if [ -r /etc/lvmtab -o -d /etc/lvm/backup ]; then
    echo "Deactivating LVM volume groups:"
    if cat /proc/sys/kernel/osrelease | cut -f 1,2 -d . | grep -q -w 2.4 2> /dev
    /null ; then
    /sbin/vgchange -an
    else
    /sbin/vgchange -an --ignorelockingfailure
    fi
    sleep 10
    fi
    }
    # Turn off swap, then unmount local file systems.
    echo "Turning off swap."
    swapoff -a
    sync

    echo "Unmounting local file systems."
    # Don't remount UMSDOS root volumes:
    if [ ! "$(mount | head -n 1 | cut -d ' ' -f 5)" = "umsdos" ]; then
    umount -a -t nonfs,noproc,nosysfs
    deactivate_lvm
    umount -a -r -t nonfs,noproc,nosysfs
    echo "Remounting root filesystem read-only."
    mount -n -o remount,ro /
    else
    umount -a -t nonfs,noproc,nosysfs,noumsdos,nosmbfs
    deactivate_lvm
    umount -a -r -t nonfs,noproc,nosysfs,noumsdos,nosmbfs
    fi

    # This never hurts:
    sync

    # sleep 1 fixes problems with some hard drives that don't
    # otherwise finish syncing before reboot or poweroff
    sleep 1

    # This is to ensure all processes have completed on SMP machines:
    wait

    if [ -x /sbin/genpowerd ]; then
    # See if this is a powerfail situation:
    if egrep -q "FAIL|SCRAM" /etc/upsstatus 2> /dev/null ; then
    # Signal UPS to shut off the inverter:
    /sbin/genpowerd -k
    if [ ! $? = 0 ]; then
    echo
    echo "There was an error signaling the UPS."
    echo "Perhaps you need to edit /etc/genpowerd.conf to configure"
    echo "the serial line and UPS type."
    # Wasting 15 seconds of precious power:
    sleep 15
    fi
    fi
    fi# Now halt (poweroff with APM or ACPI enabled kernels) or reboot.
    if [ "$command" = "reboot" ]; then
    echo "Rebooting."
    reboot
    else
    poweroff
    fi
    as you see the things it does are quite well comented, just put # infront of all lines you do not need and it would speed things up (i would not remove them, easyer to repair mistakes if it is just comented out.).
    mine would look as below (the red AND bold#'s)

    # Carry a random seed between reboots.
    echo "Saving random seed from /dev/urandom in /etc/random-seed."
    # Use the pool size from /proc, or 512 bytes:
    if [ -r /proc/sys/kernel/random/poolsize ]; then
    dd if=/dev/urandom of=/etc/random-seed count=1 bs=$(cat /proc/sys/kernel/rando
    m/poolsize) 2> /dev/null
    else
    dd if=/dev/urandom of=/etc/random-seed count=1 bs=512 2> /dev/null
    fi
    chmod 600 /etc/random-seed

    # Before unmounting file systems write a reboot or halt record to wtmp.
    $command -w

    # Clear /var/lock/subsys.
    if [ -d /var/lock/subsys ]; then
    rm -f /var/lock/subsys/*
    fi

    # A function to deactivate LVM volume groups:
    #deactivate_lvm() {
    # if [ -r /etc/lvmtab -o -d /etc/lvm/backup ]; then
    # echo "Deactivating LVM volume groups:"
    # if cat /proc/sys/kernel/osrelease | cut -f 1,2 -d . | grep -q -w 2.4 2> /dev
    #/null ; then
    # /sbin/vgchange -an
    # else
    # /sbin/vgchange -an --ignorelockingfailure
    # fi
    # sleep 10
    # fi
    #}
    # Turn off swap, then unmount local file systems.
    echo "Turning off swap."
    swapoff -a
    sync

    echo "Unmounting local file systems."
    # Don't remount UMSDOS root volumes:
    if [ ! "$(mount | head -n 1 | cut -d ' ' -f 5)" = "umsdos" ]; then
    umount -a -t nonfs,noproc,nosysfs
    # deactivate_lvm
    umount -a -r -t nonfs,noproc,nosysfs
    echo "Remounting root filesystem read-only."
    mount -n -o remount,ro /
    else
    umount -a -t nonfs,noproc,nosysfs,noumsdos,nosmbfs
    deactivate_lvm
    umount -a -r -t nonfs,noproc,nosysfs,noumsdos,nosmbfs
    fi

    # This never hurts:
    sync

    # sleep 1 fixes problems with some hard drives that don't
    # otherwise finish syncing before reboot or poweroff
    sleep 1

    # This is to ensure all processes have completed on SMP machines:
    #wait

    #if [ -x /sbin/genpowerd ]; then
    # # See if this is a powerfail situation:
    # if egrep -q "FAIL|SCRAM" /etc/upsstatus 2> /dev/null ; then
    # # Signal UPS to shut off the inverter:
    # /sbin/genpowerd -k
    # if [ ! $? = 0 ]; then
    # echo
    # echo "There was an error signaling the UPS."
    # echo "Perhaps you need to edit /etc/genpowerd.conf to configure"
    # echo "the serial line and UPS type."
    # # Wasting 15 seconds of precious power:
    # sleep 15
    # fi
    # fi
    #fi# Now halt (poweroff with APM or ACPI enabled kernels) or reboot.
    if [ "$command" = "reboot" ]; then
    echo "Rebooting."
    reboot
    else
    poweroff
    fi
    hope this help you some.
    if not let me hear.

Similar Threads

  1. logging out
    By artikid in forum Hdd Install / Debian / Apt
    Replies: 1
    Last Post: 10-07-2004, 03:05 AM
  2. Am I hitting a 3GB memory (user space) limit?
    By vacode in forum Customising & Remastering
    Replies: 0
    Last Post: 06-01-2004, 01:09 AM
  3. Need Help setting up 5 button mouse.
    By robwelch100 in forum Hdd Install / Debian / Apt
    Replies: 0
    Last Post: 03-29-2004, 01:45 AM
  4. Evolution & Button Colors
    By pwoods in forum General Support
    Replies: 0
    Last Post: 02-22-2004, 09:58 PM
  5. Mouse Left-button pb
    By joeguitar99 in forum General Support
    Replies: 1
    Last Post: 02-20-2004, 09:40 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Cisco SFP-10G-SR Transceiver picture

Cisco SFP-10G-SR Transceiver

$4.00



Qty 20 New Cisco QSFP-100G-FR-W2 10-3659-01 Module Hologram Brand New 20 Pack picture

Qty 20 New Cisco QSFP-100G-FR-W2 10-3659-01 Module Hologram Brand New 20 Pack

$260.00



SFP QSFP Transceivers Programmer allows to corning and (re)programming sfp code picture

SFP QSFP Transceivers Programmer allows to corning and (re)programming sfp code

$108.09



Cisco SFP-10G-T-X 10G SFP 30m Transceiver 30-1599-01 w/ Hologram picture

Cisco SFP-10G-T-X 10G SFP 30m Transceiver 30-1599-01 w/ Hologram

$200.00



Intel X520-DA2 10Gb 10Gbe 10 Gigabit Network Adapter NIC Dual Port E10G42BTDA picture

Intel X520-DA2 10Gb 10Gbe 10 Gigabit Network Adapter NIC Dual Port E10G42BTDA

$28.94



10Gb SFP+ to RJ45 Module Copper Cat6 Transceiver Compatible w/5Gb/ 2.5Gb/ 1Gb picture

10Gb SFP+ to RJ45 Module Copper Cat6 Transceiver Compatible w/5Gb/ 2.5Gb/ 1Gb

$31.95



HP 669279-001 560SFP+ Ethernet 10Gb 2-Port Network Adapter Card W/SFPx2 -Both picture

HP 669279-001 560SFP+ Ethernet 10Gb 2-Port Network Adapter Card W/SFPx2 -Both

$14.99



SFP TO RJ45 TRANSCEIVER SFP MODULE COPPER SFP OPTICAL PORT TO RJ45 ETHERNET PORT picture

SFP TO RJ45 TRANSCEIVER SFP MODULE COPPER SFP OPTICAL PORT TO RJ45 ETHERNET PORT

$7.99



Cisco Acacia DP04QSDD-E25-840 400G QSFP-DD Coherent DCO Transceiver Module picture

Cisco Acacia DP04QSDD-E25-840 400G QSFP-DD Coherent DCO Transceiver Module

$699.99



Lot of 20 Cisco SFP-10G-SR  10-2415-03 Transceiver Module picture

Lot of 20 Cisco SFP-10G-SR 10-2415-03 Transceiver Module

$50.00