Could not Set Xmonad to Work Starts and Stops With a Black Screen

Folks I've installed xmonad here. So I edited 2 files:
cat .xinitrc
#exec startkde
#exec ck-launch-session gnome-session
# set the cursor
xsetroot -cursor_name left_ptr
# set German keyboard layout
setxkbmap -layout br
exec ck-launch-session xmonad
exec xmonad
and
cat .xmonad/xmonad.hs
import XMonad
main = do
xmonad $ defaultConfig
{ terminal = myTerminal
, modMask = myModMask
, borderWidth = myBorderWidth
-- yes, these are functions; just very simple ones
-- -- that accept no input and return static values
myTerminal = "urxvt"
myModMask = mod4Mask -- Win key or Super_L
myBorderWidth = 3
Thou when I start xmonad all I get is a black screen. What am I missing?

karol wrote:Can you post /var/log/Xorg.0.log?
[ 6504.874]
X.Org X Server 1.10.3
Release Date: 2011-07-08
[ 6504.875] X Protocol Version 11, Revision 0
[ 6504.875] Build Operating System: Linux 2.6.39-ARCH x86_64
[ 6504.875] Current Operating System: Linux mordor 2.6.39-ARCH #1 SMP PREEMPT Sat Jul 9 14:57:41 CEST 2011 x86_64
[ 6504.875] Kernel command line: root=/dev/disk/by-uuid/8084cf06-452a-4e04-a89a-0f017461b727 ro
[ 6504.875] Build Date: 09 July 2011 07:52:32AM
[ 6504.875]
[ 6504.875] Current version of pixman: 0.22.2
[ 6504.876] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 6504.876] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 6504.877] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jul 21 02:12:32 2011
[ 6504.877] (==) Using config file: "/etc/X11/xorg.conf"
[ 6504.877] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 6504.877] (==) ServerLayout "Layout0"
[ 6504.877] (**) |-->Screen "Screen0" (0)
[ 6504.877] (**) | |-->Monitor "Monitor0"
[ 6504.878] (**) | |-->Device "Device0"
[ 6504.878] (**) |-->Input Device "Keyboard0"
[ 6504.878] (**) |-->Input Device "Mouse0"
[ 6504.878] (==) Automatically adding devices
[ 6504.878] (==) Automatically enabling devices
[ 6504.878] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[ 6504.878] Entry deleted from font path.
[ 6504.878] (==) FontPath set to:
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/Type1/,
/usr/share/fonts/100dpi/,
/usr/share/fonts/75dpi/
[ 6504.878] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 6504.878] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 6504.878] (WW) Disabling Keyboard0
[ 6504.878] (WW) Disabling Mouse0
[ 6504.878] (II) Loader magic: 0x7d3440
[ 6504.878] (II) Module ABI versions:
[ 6504.878] X.Org ANSI C Emulation: 0.4
[ 6504.878] X.Org Video Driver: 10.0
[ 6504.878] X.Org XInput driver : 12.2
[ 6504.878] X.Org Server Extension : 5.0
[ 6504.878] (--) PCI:*(0:1:0:0) 10de:1200:1462:2382 rev 161, Mem @ 0xfc000000/33554432, 0xd8000000/134217728, 0xd4000000/67108864, I/O @ 0x0000dc00/128, BIOS @ 0x????????/524288
[ 6504.878] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 6504.878] (II) LoadModule: "extmod"
[ 6504.879] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[ 6504.879] (II) Module extmod: vendor="X.Org Foundation"
[ 6504.879] compiled for 1.10.3, module version = 1.0.0
[ 6504.879] Module class: X.Org Server Extension
[ 6504.879] ABI class: X.Org Server Extension, version 5.0
[ 6504.879] (II) Loading extension MIT-SCREEN-SAVER
[ 6504.879] (II) Loading extension XFree86-VidModeExtension
[ 6504.879] (II) Loading extension XFree86-DGA
[ 6504.879] (II) Loading extension DPMS
[ 6504.879] (II) Loading extension XVideo
[ 6504.879] (II) Loading extension XVideo-MotionCompensation
[ 6504.879] (II) Loading extension X-Resource
[ 6504.879] (II) LoadModule: "dbe"
[ 6504.879] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[ 6504.879] (II) Module dbe: vendor="X.Org Foundation"
[ 6504.879] compiled for 1.10.3, module version = 1.0.0
[ 6504.879] Module class: X.Org Server Extension
[ 6504.879] ABI class: X.Org Server Extension, version 5.0
[ 6504.879] (II) Loading extension DOUBLE-BUFFER
[ 6504.879] (II) LoadModule: "glx"
[ 6504.879] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 6504.887] (II) Module glx: vendor="NVIDIA Corporation"
[ 6504.887] compiled for 4.0.2, module version = 1.0.0
[ 6504.887] Module class: X.Org Server Extension
[ 6504.887] (II) NVIDIA GLX Module 275.19 Tue Jul 12 18:31:51 PDT 2011
[ 6504.887] (II) Loading extension GLX
[ 6504.887] (II) LoadModule: "record"
[ 6504.887] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[ 6504.887] (II) Module record: vendor="X.Org Foundation"
[ 6504.887] compiled for 1.10.3, module version = 1.13.0
[ 6504.887] Module class: X.Org Server Extension
[ 6504.887] ABI class: X.Org Server Extension, version 5.0
[ 6504.887] (II) Loading extension RECORD
[ 6504.887] (II) LoadModule: "dri"
[ 6504.887] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[ 6504.887] (II) Module dri: vendor="X.Org Foundation"
[ 6504.887] compiled for 1.10.3, module version = 1.0.0
[ 6504.887] ABI class: X.Org Server Extension, version 5.0
[ 6504.887] (II) Loading extension XFree86-DRI
[ 6504.887] (II) LoadModule: "dri2"
[ 6504.887] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 6504.887] (II) Module dri2: vendor="X.Org Foundation"
[ 6504.887] compiled for 1.10.3, module version = 1.2.0
[ 6504.887] ABI class: X.Org Server Extension, version 5.0
[ 6504.887] (II) Loading extension DRI2
[ 6504.887] (II) LoadModule: "nvidia"
[ 6504.888] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 6504.888] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 6504.888] compiled for 4.0.2, module version = 1.0.0
[ 6504.888] Module class: X.Org Video Driver
[ 6504.888] (II) NVIDIA dlloader X Driver 275.19 Tue Jul 12 18:15:26 PDT 2011
[ 6504.888] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 6504.888] (--) using VT number 7
[ 6504.894] (II) Loading sub module "fb"
[ 6504.894] (II) LoadModule: "fb"
[ 6504.894] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 6504.894] (II) Module fb: vendor="X.Org Foundation"
[ 6504.894] compiled for 1.10.3, module version = 1.0.0
[ 6504.894] ABI class: X.Org ANSI C Emulation, version 0.4
[ 6504.894] (II) Loading sub module "wfb"
[ 6504.894] (II) LoadModule: "wfb"
[ 6504.894] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 6504.894] (II) Module wfb: vendor="X.Org Foundation"
[ 6504.894] compiled for 1.10.3, module version = 1.0.0
[ 6504.894] ABI class: X.Org ANSI C Emulation, version 0.4
[ 6504.894] (II) Loading sub module "ramdac"
[ 6504.894] (II) LoadModule: "ramdac"
[ 6504.894] (II) Module "ramdac" already built-in
[ 6504.894] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 6504.894] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 6504.894] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 6504.894] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 6504.894] (==) NVIDIA(0): RGB weight 888
[ 6504.894] (==) NVIDIA(0): Default visual is TrueColor
[ 6504.894] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 6505.241] (II) NVIDIA(GPU-0): Display (LG Electronics L196WTQ (CRT-0)) does not support
[ 6505.241] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
[ 6505.242] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 560 Ti (GF114) at PCI:1:0:0 (GPU-0)
[ 6505.242] (--) NVIDIA(0): Memory: 1048576 kBytes
[ 6505.242] (--) NVIDIA(0): VideoBIOS: 70.24.11.00.00
[ 6505.242] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 6505.242] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
[ 6505.242] (--) NVIDIA(0): Connected display device(s) on GeForce GTX 560 Ti at
[ 6505.242] (--) NVIDIA(0): PCI:1:0:0
[ 6505.242] (--) NVIDIA(0): LG Electronics L196WTQ (CRT-0)
[ 6505.242] (--) NVIDIA(0): LG Electronics L196WTQ (CRT-0): 400.0 MHz maximum pixel clock
[ 6505.281] (II) NVIDIA(0): Assigned Display Device: CRT-0
[ 6505.281] (==) NVIDIA(0):
[ 6505.281] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 6505.281] (==) NVIDIA(0): will be used as the requested mode.
[ 6505.281] (==) NVIDIA(0):
[ 6505.281] (II) NVIDIA(0): Validated modes:
[ 6505.281] (II) NVIDIA(0): "nvidia-auto-select"
[ 6505.281] (II) NVIDIA(0): Virtual screen size determined to be 1440 x 900
[ 6505.307] (--) NVIDIA(0): DPI set to (89, 87); computed from "UseEdidDpi" X config
[ 6505.307] (--) NVIDIA(0): option
[ 6505.307] (--) Depth 24 pixmap format is 32 bpp
[ 6505.307] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[ 6505.307] (II) NVIDIA: access.
[ 6505.311] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 6505.311] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
[ 6505.311] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 6505.311] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
[ 6505.311] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
[ 6505.311] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
[ 6505.311] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 6505.311] (II) NVIDIA(0): Config Options in the README.
[ 6505.313] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
[ 6505.360] (II) Loading extension NV-GLX
[ 6505.411] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 6505.411] (==) NVIDIA(0): Backing store disabled
[ 6505.411] (==) NVIDIA(0): Silken mouse enabled
[ 6505.412] (**) NVIDIA(0): DPMS enabled
[ 6505.412] (II) Loading extension NV-CONTROL
[ 6505.412] (II) Loading extension XINERAMA
[ 6505.412] (II) Loading sub module "dri2"
[ 6505.412] (II) LoadModule: "dri2"
[ 6505.412] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 6505.413] (II) Module dri2: vendor="X.Org Foundation"
[ 6505.413] compiled for 1.10.3, module version = 1.2.0
[ 6505.413] ABI class: X.Org Server Extension, version 5.0
[ 6505.413] (II) NVIDIA(0): [DRI2] Setup complete
[ 6505.413] (==) RandR enabled
[ 6505.413] (II) Initializing built-in extension Generic Event Extension
[ 6505.413] (II) Initializing built-in extension SHAPE
[ 6505.413] (II) Initializing built-in extension MIT-SHM
[ 6505.413] (II) Initializing built-in extension XInputExtension
[ 6505.413] (II) Initializing built-in extension XTEST
[ 6505.413] (II) Initializing built-in extension BIG-REQUESTS
[ 6505.413] (II) Initializing built-in extension SYNC
[ 6505.413] (II) Initializing built-in extension XKEYBOARD
[ 6505.413] (II) Initializing built-in extension XC-MISC
[ 6505.413] (II) Initializing built-in extension SECURITY
[ 6505.413] (II) Initializing built-in extension XINERAMA
[ 6505.413] (II) Initializing built-in extension XFIXES
[ 6505.413] (II) Initializing built-in extension RENDER
[ 6505.413] (II) Initializing built-in extension RANDR
[ 6505.413] (II) Initializing built-in extension COMPOSITE
[ 6505.413] (II) Initializing built-in extension DAMAGE
[ 6505.414] (II) Initializing extension GLX
[ 6505.507] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 6505.507] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 6505.507] (II) LoadModule: "evdev"
[ 6505.507] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 6505.507] (II) Module evdev: vendor="X.Org Foundation"
[ 6505.507] compiled for 1.10.0, module version = 2.6.0
[ 6505.507] Module class: X.Org XInput Driver
[ 6505.507] ABI class: X.Org XInput driver, version 12.2
[ 6505.507] (II) Using input driver 'evdev' for 'Power Button'
[ 6505.507] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 6505.507] (**) Power Button: always reports core events
[ 6505.507] (**) Power Button: Device: "/dev/input/event1"
[ 6505.522] (--) Power Button: Found keys
[ 6505.522] (II) Power Button: Configuring as keyboard
[ 6505.522] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 6505.522] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 6505.522] (**) Option "xkb_rules" "evdev"
[ 6505.522] (**) Option "xkb_model" "evdev"
[ 6505.522] (**) Option "xkb_layout" "br"
[ 6505.522] (**) Option "xkb_variant" "abnt2"
[ 6505.543] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 6505.543] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 6505.543] (II) Using input driver 'evdev' for 'Power Button'
[ 6505.543] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 6505.543] (**) Power Button: always reports core events
[ 6505.543] (**) Power Button: Device: "/dev/input/event0"
[ 6505.579] (--) Power Button: Found keys
[ 6505.579] (II) Power Button: Configuring as keyboard
[ 6505.579] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[ 6505.579] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 6505.579] (**) Option "xkb_rules" "evdev"
[ 6505.579] (**) Option "xkb_model" "evdev"
[ 6505.579] (**) Option "xkb_layout" "br"
[ 6505.579] (**) Option "xkb_variant" "abnt2"
[ 6505.582] (II) config/udev: Adding input device Genius Optical Mouse (/dev/input/event3)
[ 6505.582] (**) Genius Optical Mouse: Applying InputClass "evdev pointer catchall"
[ 6505.582] (II) Using input driver 'evdev' for 'Genius Optical Mouse'
[ 6505.582] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 6505.582] (**) Genius Optical Mouse: always reports core events
[ 6505.582] (**) Genius Optical Mouse: Device: "/dev/input/event3"
[ 6505.606] (--) Genius Optical Mouse: Found 3 mouse buttons
[ 6505.606] (--) Genius Optical Mouse: Found scroll wheel(s)
[ 6505.606] (--) Genius Optical Mouse: Found relative axes
[ 6505.606] (--) Genius Optical Mouse: Found x and y relative axes
[ 6505.606] (II) Genius Optical Mouse: Configuring as mouse
[ 6505.606] (II) Genius Optical Mouse: Adding scrollwheel support
[ 6505.606] (**) Genius Optical Mouse: YAxisMapping: buttons 4 and 5
[ 6505.606] (**) Genius Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 6505.606] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.0/input/input8/event3"
[ 6505.606] (II) XINPUT: Adding extended input device "Genius Optical Mouse" (type: MOUSE)
[ 6505.606] (II) Genius Optical Mouse: initialized for relative axes.
[ 6505.606] (**) Genius Optical Mouse: (accel) keeping acceleration scheme 1
[ 6505.606] (**) Genius Optical Mouse: (accel) acceleration profile 0
[ 6505.606] (**) Genius Optical Mouse: (accel) acceleration factor: 2.000
[ 6505.606] (**) Genius Optical Mouse: (accel) acceleration threshold: 4
[ 6505.606] (II) config/udev: Adding input device Genius Optical Mouse (/dev/input/mouse0)
[ 6505.606] (II) No input driver/identifier specified (ignoring)
[ 6505.606] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/event4)
[ 6505.606] (**) USB-compliant keyboard: Applying InputClass "evdev keyboard catchall"
[ 6505.606] (II) Using input driver 'evdev' for 'USB-compliant keyboard'
[ 6505.606] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 6505.606] (**) USB-compliant keyboard: always reports core events
[ 6505.606] (**) USB-compliant keyboard: Device: "/dev/input/event4"
[ 6505.646] (--) USB-compliant keyboard: Found keys
[ 6505.646] (II) USB-compliant keyboard: Configuring as keyboard
[ 6505.646] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.1/usb4/4-2/4-2:1.0/input/input4/event4"
[ 6505.646] (II) XINPUT: Adding extended input device "USB-compliant keyboard" (type: KEYBOARD)
[ 6505.646] (**) Option "xkb_rules" "evdev"
[ 6505.646] (**) Option "xkb_model" "evdev"
[ 6505.646] (**) Option "xkb_layout" "br"
[ 6505.646] (**) Option "xkb_variant" "abnt2"
[ 6505.646] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/event5)
[ 6505.646] (**) USB-compliant keyboard: Applying InputClass "evdev keyboard catchall"
[ 6505.646] (II) Using input driver 'evdev' for 'USB-compliant keyboard'
[ 6505.646] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 6505.646] (**) USB-compliant keyboard: always reports core events
[ 6505.646] (**) USB-compliant keyboard: Device: "/dev/input/event5"
[ 6505.662] (--) USB-compliant keyboard: Found 1 mouse buttons
[ 6505.662] (--) USB-compliant keyboard: Found scroll wheel(s)
[ 6505.662] (--) USB-compliant keyboard: Found relative axes
[ 6505.662] (--) USB-compliant keyboard: Found x and y relative axes
[ 6505.662] (--) USB-compliant keyboard: Found absolute axes
[ 6505.662] (--) USB-compliant keyboard: Found keys
[ 6505.662] (II) USB-compliant keyboard: Configuring as mouse
[ 6505.662] (II) USB-compliant keyboard: Configuring as keyboard
[ 6505.662] (II) USB-compliant keyboard: Adding scrollwheel support
[ 6505.662] (**) USB-compliant keyboard: YAxisMapping: buttons 4 and 5
[ 6505.662] (**) USB-compliant keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 6505.662] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.1/usb4/4-2/4-2:1.1/input/input5/event5"
[ 6505.662] (II) XINPUT: Adding extended input device "USB-compliant keyboard" (type: KEYBOARD)
[ 6505.662] (**) Option "xkb_rules" "evdev"
[ 6505.662] (**) Option "xkb_model" "evdev"
[ 6505.662] (**) Option "xkb_layout" "br"
[ 6505.662] (**) Option "xkb_variant" "abnt2"
[ 6505.662] (II) USB-compliant keyboard: initialized for relative axes.
[ 6505.662] (WW) USB-compliant keyboard: ignoring absolute axes.
[ 6505.663] (**) USB-compliant keyboard: (accel) keeping acceleration scheme 1
[ 6505.663] (**) USB-compliant keyboard: (accel) acceleration profile 0
[ 6505.663] (**) USB-compliant keyboard: (accel) acceleration factor: 2.000
[ 6505.663] (**) USB-compliant keyboard: (accel) acceleration threshold: 4
[ 6505.663] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/mouse1)
[ 6505.663] (II) No input driver/identifier specified (ignoring)
[ 6505.665] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[ 6505.665] (II) No input driver/identifier specified (ignoring)
[ 6525.656] (II) USB-compliant keyboard: Close
[ 6525.656] (II) UnloadModule: "evdev"
[ 6525.656] (II) Unloading evdev
[ 6525.656] (II) USB-compliant keyboard: Close
[ 6525.656] (II) UnloadModule: "evdev"
[ 6525.656] (II) Unloading evdev
[ 6525.656] (II) Genius Optical Mouse: Close
[ 6525.656] (II) UnloadModule: "evdev"
[ 6525.656] (II) Unloading evdev
[ 6525.656] (II) Power Button: Close
[ 6525.656] (II) UnloadModule: "evdev"
[ 6525.656] (II) Unloading evdev
[ 6525.656] (II) Power Button: Close
[ 6525.656] (II) UnloadModule: "evdev"
[ 6525.656] (II) Unloading evdev

Similar Messages

  • G10-133 started booting up with a black screen

    Hi,
    I was wondering if anyone could shed some light on a problem I'm having.
    About 3 months ago my G10 started booting up with a black screen. I can hear the qosmio logo sound and everything. Just couldnt see anything. So I pushed FN + F5 and this would show the windows xp loading screen. But when it booted into windows. It would be displaying at a very low resolution. So i would have to change it or push the tv out button twice and it would auto reset itself.
    I've been into the bios and changed the Display start up to lcd+rgb analog and that will show everything during the booting process but still goes into windows at a low resolution.
    And if i plug in an external monitor, they both just go blank.
    I've tried full re-intalls, qosmio player re-install. Nvidia driver, hotkey utility, display change. But still nowt.
    Anyone had similiar problems? And if so were you able to fix it?

    Yup, I had this a while back on my G10 and it was the start of more serious problems. The machine started behaving more oddly, and it got worse over time to the extent that it would lock up when watching DVDs and the qosmioplayer software stopped working completely.
    I don't know if you've got the same problem, but I got on to the Toshiba techies and the machine ended up going back to them for a complete system board refit. = problem solved.
    Oddly enough, a friend of mine had exactly the same problem and went through the same process of returning the machine; i don't know if this is a problem affecting all G10s!

  • My G4 powerbook starts up but with a black screen. The reset button does not work. Does anyone know the keys to press on restart please ?

    My G4 powerbook running OSX 10.3.9 starts up with  a black screen. The reset button is not working. Does anyone know which keys to press on restart please.?

    Try holding the shift key while booting to get Safe mode if possible.
    See links for more info.
    http://support.apple.com/kb/ht1564
    http://support.apple.com/kb/ht1455

  • Control DC Motor (start and stop) with LabView

    I never used Lab View before. For a project, we have to use Lab View to make a small dc motor (HP:1/2, RPM 1725) start, and stop. I have no idea how to do this. Any advice/help anyone? Any tutorial or vi. would help!

    Hi there,
    Search for “H-bridge” for a common DC motor control circuit, the input terminals from the bridge can be controlled using any DAQ device with digital output lines from LabVIEW. For example: https://decibel.ni.com/content/docs/DOC-17062
    Regards,
    Alejandro | Academic Program Engineer | National Instruments

  • Hp desktop a1742n will not startup it says no signal and i get a black screen

    Hi everyone this is my first time posting here and I seriously need your help.  I have an Hp desktop a1742n and everytime i turn it on I get a message that says no signal and i get a black screen. I know its not the monitor or the cord because i connected them to my laptop with no issue. i have checked the mouse and keyboard as well. I would hate to pay for a new computer when if this one can be repaired with a few steps from home. Also the fans are running the lights on the CD drive opens and closes and seem to respond when a disk is placed in there. and i don't hear any beeps can anyone help.

    Hi,
    If you are having startup problems, try following the steps in this guide: http://www.selectrealsecurity.com/fix-windows-startup/
    It provides instructions on how to fix Windows startup problems. If you have any questions, just ask. I hope this helps you.
    Brian
    "An ounce of prevention is worth a pound of cure"

  • My computer starts turning on with a black screen and the sleep light flashes, then the old screen from when my battery died shows up behind like a blue screen, then it dies again and wont restart? And yes my computer is fully charged now, HELP!

    So the problem now is in the question, but just before this problem the initial issue was my computer would start and turn on but the backlight appeared to be on its dimmest setting I could barely make out icons and the last page I viewed. Please help I'm in college and did not back up everything plus I desparately need my microsoft office for these classes!  Thank you!!!

    Hi kmdmsu08,
    If your computer's not turning completely on, I would try the steps in this article, especially step 4:
    Troubleshooting: My computer won't turn on
    http://support.apple.com/kb/TS1367
    Take care!
    - Ari

  • My Macbook starts up but with a black screen until I shift key and reboot it a few times

    Hi
    I am not very technically at all, I am posting this because I haven't been able to get an appointment with apple for weeks. 
    I mac book is around 3/4  years old, hardly used, its 17inch and all the software is up to date.
    in the last week every time i turn on my laptop the screen goes to black and I have to hit shift and the power button a few times before it works. Once it is on it works perfect. i have never dropped the laptop.
    What is wrong and how do i stop this?
    thank you for your help and time.
    Janette x

    You are welcome!  
    Sometimes resetting the SMC "fixes" odd problems. Glad I could help.
    Barry

  • Run the startup script (start and stop) with a user other than oracle

    hi
    I wrote a script that stops and start oracle. the connection to the db was done : sqlplus "as sysdba".
    The script works fine if oracle user runs it. however, I need another user to run this script also. The script does not run with this user even though I added it to the oracle group.
    any idea please?

    try the -c option with the su like this:
    su - oracle "-c scriptyouwrote.sh"
    greetings

  • Event ID 57 - Could not find stored procedure 'dbo.proc_MSS_CrawlAdmin' and Could not find 'dbo.proc_MSS_Crawl'

    Sharepoint Enterprise 2010 - sp1 (feb. 2013 cu) - running enterprise search service
    Running sql. 2012 enterprise
    Event log has constant event ID 57 with A database error occurred. Source: Microsoft SQL Server Native Client 10.0 Code: 2812 occurred 1 time(s) Description: Could not find stored procedure 'dbo.proc_MSS_Crawl'  and along with it another Could not find
    stored procedure 'dbo.proc_MSS_CrawlAdmin'.
    How do I fix this issue?

    Hi there,
    I am seeing this issue (just the "proc_MSS_Crawl" stored procedure, not the other). Did you find a fix for this? Did you try running the configuration wizard to see if this resolved it?
    Regards,
    Ben
    Ben Weeks
    SharePoint Consultant @ Webtechy Ltd
    T: +441223922070 F: +448701315220
    Web: http://www.webtechy.co.uk Blog:
    http://blog.webtechy.co.uk

  • How to use "start" and "duration" with HLS stream

    Hi all,
    is it possible to use "start" and "stop" with HLS stream like rtmp stream?
    If yes, how?
    thanks in advance.

    Hi,
    This is completely player side fucntionality you are asking for. However, I guess default player that comes on safari (iPad), quicktime has the player timeline with stop and start option. But if not, you can create your custom player using exposed api of AVPlayer. Check-out AVPlayer api's.
    FMS, by nature of protocol will respect the request to get the data(in case of client-play-start)  and will not automatically push the data to the client if not asked for by the client (as in case of client-play-stop).
    Thanks

  • Automatic start and Stop the SAP System

    Hi experts,
    We want to deploy the unattended/Scheduled Start SAP  and stop SAP in IBM i series. How to do it? I have tried with WRKJOBSCDE and putted the command STOPSAP or STARTSAP but after finishing the job, now result. But when I simply put command STOPSAP/STARTSAP it works(start and stop sap system).
    How to deploy it?
    Thanks
    Asad

    Hi Ken,
    yes, that is correct, but in the meantime, it is **** easier ;-)
    As SAPHostAgent starts automatically, it is just needed in the default profile:
    Autostart = 1
    This is a really nice new feature ;-))
    Regards,
    Volker Gueldenpfennig, consolut international ag

  • Start and Stop Trigger using PXI-6120 and DigitalSta​rtAndStopT​rigger.vi not working :-(

    Hello,
    I've been trying for a while now to get my PXI unit to capture a waveform between a Start and Stop (Reference) Trigger using the NI example DigitalStartAndStopTrigger.vi downloaded from the NI website. However, whilst the start trigger and stop trigger seem to be working i.e. the VI runs and stops at  the correct times there is never any data read from my DAQmx compatible PXI-6120 card. So I can see the VI is running around the aquisition loop but the Property Node AvailSampPerChan is always returning zero... this has me slightly puzzled. I thought this might just be a driver issue so I've updated my box to the following software versions (see below) and installed the latest drivers e.g. DCDNov07.exe (also from the NI site) but nothing has changed.
    my software as of now.
    Labview 7.1 (with the 7.1.1 upgrade applied)
    Max 4.3.0.49152
    DAQmx 8.6.0f12
    Trad DAQ 7.4.4f7
    before I updated I had the same problem but with the following versions:
    Labview 7.1 (with the 7.1.1 upgrade applied)
    Max 4.2.1.3001
    DAQmx 8.5.0f5
    Trad DAQ 6.9.3f4
    So to cut a long story short I still have the same problem with the triggers... does anybody have any ideas what is going wrong?
    To add insult to injury it the traditional DAQ example ai_start-stop_d-trig.vi was almost working correctly before I did the upgrade. It had the strange behaviour of capturing the AI0 channel but on the wrong edges (e.g. if I set Start on Rise and Stop on Fall it would do the opposite, Start on Fall and Stop on Rise).
    I'm going to leave my box doing a mass compile over night but i'd really like it if someone could suggest a solution or point me in the right direction.
    Many thanks,
    Mike

    Hi Graham
    I'm out of the lab today but I'll try and answer your questions as best I can...
    1) What are the values you have set for Buffer size, Rate, samples per read and post trigger Samples?
    At the moment I have all the values (e.g. sample rate, buffer size etc) unchanged apart from the ones I mentioned in my previous post (see above). I have in the past played around with changing the buffer sizes and rates in the example VI but as this appeared to have no effect on the behaviour I now have them setup as in the download.
    2) Does the program end after the stop trigger is implemented?
    Yep, if I toggle the trigger line high then low I see the program exits the read loop and the VI stops running as expected.
    3) Lastly can you give me the details of triggering method. Are you
    using a digital train of users set digital pulses? how long is the
    program running.I'm using the WriteDigChan.vi to manually toggle the first digital line of the PXI-6733 card which is wired directly to PFI0 of the PXI-6120 card. Generally, I just start the VI running  and then toggle the line high, wait a couple of seconds and then toggle it low.
    To me it all looks like it should be acquiring samples but as I said yesterday it just refuses to fill the buffer with any data (and hence no samples are read).
    Any ideas? and thanks for you help,
    Mike

  • Action Script 3 code not working for start and stop button?

    Ok so I have this simple animation I created of a circle that moves from one side of the stage to the other. I have added a new layer and called it buttons. On this layer I have added 2 buttons. One for start and another one for stop. The purpose is to get my circle to move from one side of the stage to the other but be able to use my buttons so that I can start and stop the animations at random times during playback. I fixed all my compiler errors now the problem lies in that everytime I click the start or the stop button I get an output error. I have a 3rd layer in which is titled actions and this is where all my code is posted. I removed that layer and placed my code in the first frame of the buttons layer to see if this would change anything but I still get the same output errors. So I just added back my actions layer. What could I be doing wrong? I have made sure to name all my movie clips and buttons correctly and I even added an instance name to them.
    Here is my code and the errors I am getting when I press the play and stop button on test-
    start_btn.addEventListener(MouseEvent.CLICK, startCircle);
    stop_btn.addEventListener(MouseEvent.CLICK, stopCircle);
    function startCircle(e:MouseEvent):void{
        circle.play();
    function stopCircle(e:MouseEvent):void{
        circle.stop();
    green_btn.addEventListener(MouseEvent.CLICK, greenCircle);
    red_btn.addEventListener(MouseEvent.CLICK, redCircle);
    function greenCircle(e:MouseEvent):void{
        circle.play();
    function redCircle(e:MouseEvent):void{
        circle.stop();
    Here are my output errors-
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/redCircle()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/greenCircle()

    ok so my circle is my movie clip and it is titled circle and the instance name is circle. Am I supposed to change MovieClip to circle? I put the code at the top of my actions script but for some reason it did not work. I did change play to stop and it got the movie clip to stop when I do test movie but my buttons still do not work. So I changed stop back to play. Strange.
    I did try changing MovieClip to circle but that did not work so I did Circle with a capital C and that did me no good eigther.
    I meant to add that I did get an error that said- 1180 Call to a possibly undefined method circle.

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  t worked, but only for those with PC.  I could not get it to work with Apple Yosemite even with reader installed .  is there a way i can make it work for apple /

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email. It worked, but only for those with PC. However,  I could not get it to work with Apple loaded with Yosemite even with reader installed .  Is there a way i can make it work for apple / Mac? It worked fine on a mac using Mountain Lion and reader
    Thanks

    LiveCycle = XFA forms.
    afaik - These cannot be used in Apple OSs.
    Be well...

Maybe you are looking for

  • IOS 7 Can no longer connect iPad to iTunes

    Just installed IOS 7. Also, updated to new version of iTunes. Now, I cannot connect iPad 4 to iTunes. Also, I continually get message "Trust This Computer?" when  I try to connect iPad you iTunes even though I always answer Trust

  • Connecting Nokia to a dictating machine

    I would like to connect my Nokia 6600 to a Sony dictating machine to record calls that I recieve for refrence . , is there a cable that connects to Nokia and have a lead ( Mic and/or Ear ) If there is such a lead available , what is called, where I c

  • Java regex doubt?

    I have a string by as follows: String name = "aaaaaaaaaahgcnjcdcd";I am trying to validate the above string. When the number of "a" in the string excceds 5 and above, I need to throw an error. I tried as follos: if (name.matches("A{5,}")){ system.out

  • Problems synching a specific playlist

    We are trying to synch a specific playlist to an iPhone 5 using iTunes 11.1.4. When the iPhone is connected, "Selected Playlists" is checked under the Music tab as is the desired playlist. However, after synching, the playlist fails to appear on the

  • Another "slow" EBS question

    Hello experts. Yesterday I received a call from frustrated user that theEBS system was "slow". After asking the usual questions - when does the slowness become an issue (middle of day) does it affect everyone (yes) and all modules (yes) are there any