Problem with a new install: X, Radeon 4650, and xf86-video-ati

Hi guys,
I am trying to setup a new install here but am getting stuck at X (I have been following the beginners guide).
Everything is stock (kernel, not [testing], etc.).
I have a ATI Radeon HD 4650 and am using the xf86-video-ati driver. I want to use dual monitors with this card (one 1920x1080 and another 1680x1050), but as far as I can tell, this is not the root of the problem. KMS is enabled by default and works well (with the exception of some slight artifacts on the 1080p monitor). I have tried to disable KMS but to no avail. But here is the essence  of my situtaion:
Note: Yes, hal & dbus are both running.
Running X as root without Xorg.conf: Mirrored at 1680x1050
Running X as root with Xorg.conf: Black screens
Running X as normal without Xorg.conf: Mirrored at 1680x1050
Running X as normal with Xorg.conf: Black screens
Note: The Xorg.conf is being taken from X -configure as well as taken from Xorg.0.log
My /var/log/Xorg.0.log can be found here: http://pastebin.ca/1877044 (after attempting to run X as a normal user without Xorg.conf)
Why can't I use a xorg.conf? How can I setup dual displays at their native resolutions?
Thanks, any help is greatly appreciated!

oh boy ...been in your exact situation before. I have a radeon 4890 HD. Very easy to get running the way you want it, once you know the steps to take of course.
btw, I've ALWAYS found it easier to run X with an xorg.conf file.
The way you go about setting up a dual head radeon card is actually very simple.
First, delete your /etc/X11/xorg.conf file if you have one.
Second, run "sudo aticonfig --initial=dual-head"
Third, make sure the fglrx module is mentioned in your rc.conf file under modules.
aticonfig will then create a new xorg.conf file for you that will work with your dual head.
A few tweaks to the xorg.conf file before you start x:
Decide whether you would like to run Xinerama or not. Xinerama may or may not have any benefits, but I've had much more success by keeping it off.
You do that by:
Section "ServerFlags"
          Option          "Xinerama"  "off"
EndSection
Make sure 'Load "dri2"' and 'Load "dri"' are commented out under section 'module'
Lastly, specify your display size under Section "Screen" (you should have two screen sections)
Do this by adding Modes     "1920x1080" under each SubSection "Display" .... or just take a shortcut and put it under the last subsection like I did.
Do it again for the your other screen section.
You are going to make a "virtual" screen, which would exist if your two physical screens were joined into one big one.
So put under your second "screen" section, Virtual 3360 3360 (I have two 1680x1050 monitors)
attatched is my xorg.conf for clarification:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "aticonfig-Screen[0]-0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
# Load "dri2"
# Load "dri"
Load "record"
Load "extmod"
Load "glx"
Load "dbe"
EndSection
Section "ServerFlags"
Option "Xinerama" "off"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Monitor"
Identifier "0-DFP1"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
Option "PreferredMode" "1680x1050"
Option "TargetRefresh" "60"
Option "Position" "1680 0"
Option "Rotate" "normal"
Option "Disable" "false"
EndSection
Section "Monitor"
Identifier "0-DFP2"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
Option "PreferredMode" "1680x1050"
Option "TargetRefresh" "60"
Option "Position" "0 0"
Option "Rotate" "normal"
Option "Disable" "false"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "AccelMethod" # [<str>]
#Option "offscreensize" # [<str>]
#Option "SWcursor" # [<bool>]
#Option "ignoreconnector" # [<str>]
#Option "forcereduced" # [<bool>]
#Option "forcedpi" # <i>
#Option "useconfiguredmonitor" # [<bool>]
#Option "HPD" # <str>
#Option "NoRandr" # [<bool>]
#Option "RROutputOrder" # [<str>]
#Option "DRI" # [<bool>]
#Option "TVMode" # [<str>]
#Option "ScaleType" # [<str>]
#Option "UseAtomBIOS" # [<bool>]
#Option "AtomBIOS" # [<str>]
#Option "UnverifiedFeatures" # [<bool>]
#Option "Audio" # [<bool>]
#Option "AudioStreamSilence" # [<str>]
#Option "HDMI" # [<str>]
#Option "COHERENT" # [<str>]
#Option "ForceLowPowerMode" # [<bool>]
#Option "LowPowerModeEngineClock" # <i>
Identifier "Card0"
Driver "radeonhd"
VendorName "ATI Technologies Inc"
BoardName "RV790 [Radeon HD 4800 Series]"
BusID "PCI:2:0:0"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
Option "Monitor-DFP1" "0-DFP1"
Option "Monitor-DFP2" "0-DFP2"
BusID "PCI:2:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1680x1050"
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Virtual 3360 3360
Depth 24
Modes "1680x1050"
EndSubSection
EndSection

Similar Messages

  • Problem with boot / new install system ond SSD

    Hi guys,
    I have fresh installed system on my new SSD. I use my old HDD as external usb drive.
    I have problem with boot when I dont have connected HDD to usb.
    My system boot only to console no to KDE. When I connect external HDD to usb and reboot system, system boot normally.
    Logs after boot.
    Feb 26 16:46:39 arch systemd[1]: Reached target Login Prompts.
    Feb 26 16:46:39 arch systemd[1]: Starting K Display Manager...
    Feb 26 16:46:39 arch systemd[1]: Started K Display Manager.
    Feb 26 16:46:39 arch systemd-logind[231]: New seat seat0.
    Feb 26 16:46:39 arch systemd[1]: Started Login Service.
    Feb 26 16:46:40 arch kernel: microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    Feb 26 16:46:40 arch kernel: platform microcode: Direct firmware load failed with error -2
    Feb 26 16:46:40 arch kernel: platform microcode: Falling back to user helper
    Feb 26 16:46:40 arch kernel: random: nonblocking pool is initialized
    Feb 26 16:46:40 arch kernel: uvcvideo: Found UVC 1.00 device CNF7129 (04f2:b071)
    Feb 26 16:46:40 arch laptop-mode[271]: enabled, not active
    Feb 26 16:46:40 arch kernel: input: CNF7129 as /devices/pci0000:00/0000:00:1a.7/usb3/3-3/3-3:1.0/input/input16
    Feb 26 16:46:40 arch kernel: usbcore: registered new interface driver uvcvideo
    Feb 26 16:46:40 arch kernel: USB Video Class driver (1.1.1)
    Feb 26 16:46:40 arch systemd[1]: Started Wicd a wireless and wired network manager for Linux.
    Feb 26 16:46:40 arch systemd[1]: Starting Network.
    Feb 26 16:46:40 arch systemd[1]: Reached target Network.
    Feb 26 16:46:40 arch systemd[1]: Starting OpenSSH Daemon...
    Feb 26 16:46:40 arch systemd[1]: Started OpenSSH Daemon.
    Feb 26 16:46:40 arch systemd[1]: Starting NoMachine Server daemon...
    Feb 26 16:46:40 arch sshd[373]: Server listening on 0.0.0.0 port 22.
    Feb 26 16:46:40 arch sshd[373]: Server listening on :: port 22.
    Feb 26 16:46:40 arch mtp-probe[404]: checking bus 7, device 2: "/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-2"
    Feb 26 16:46:40 arch mtp-probe[404]: bus: 7, device: 2 was not an MTP device
    Feb 26 16:46:40 arch kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Feb 26 16:46:40 arch kernel: usbcore: registered new interface driver usbhid
    Feb 26 16:46:40 arch kernel: usbhid: USB HID core driver
    Feb 26 16:46:40 arch systemd[1]: Starting Sound Card.
    Feb 26 16:46:40 arch systemd[1]: Reached target Sound Card.
    Feb 26 16:46:40 arch systemd-udevd[145]: renamed network interface eth0 to enp3s0
    Feb 26 16:46:40 arch kernel: psmouse serio4: elantech: assuming hardware version 2 (with firmware version 0x040101)
    Feb 26 16:46:40 arch kernel: psmouse serio4: elantech: Synaptics capabilities query result 0x7e, 0x13, 0x0d.
    Feb 26 16:46:40 arch kernel: i915 0000:00:02.0: irq 45 for MSI/MSI-X
    Feb 26 16:46:40 arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Feb 26 16:46:40 arch kernel: [drm] Driver supports precise vblank timestamp query.
    Feb 26 16:46:40 arch kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    Feb 26 16:46:40 arch kernel: iTCO_vendor_support: vendor-support=0
    Feb 26 16:46:40 arch kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    Feb 26 16:46:40 arch kernel: iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0860)
    Feb 26 16:46:40 arch kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Feb 26 16:46:40 arch kernel: input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input15
    Feb 26 16:46:40 arch systemd-logind[231]: Watching system buttons on /dev/input/event2 (Lid Switch)
    Feb 26 16:46:40 arch systemd-logind[231]: Watching system buttons on /dev/input/event1 (Sleep Button)
    Feb 26 16:46:40 arch systemd-logind[231]: Watching system buttons on /dev/input/event3 (Power Button)
    Feb 26 16:46:41 arch kernel: microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    Feb 26 16:46:41 arch kernel: platform microcode: Direct firmware load failed with error -2
    Feb 26 16:46:41 arch kernel: platform microcode: Falling back to user helper
    Feb 26 16:46:41 arch kernel: input: 2.4G Wireless Wireless Receiver as /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input17
    Feb 26 16:46:41 arch kernel: hid-generic 0003:1915:0F01.0001: input,hidraw0: USB HID v1.11 Keyboard [2.4G Wireless Wireless Receiver ] on usb-0000:00:1d.1-2/input0
    Feb 26 16:46:41 arch kernel: input: 2.4G Wireless Wireless Receiver as /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.1/input/input18
    Feb 26 16:46:41 arch kernel: hid-generic 0003:1915:0F01.0002: input,hidraw1: USB HID v1.11 Mouse [2.4G Wireless Wireless Receiver ] on usb-0000:00:1d.1-2/input1
    Feb 26 16:46:41 arch kernel: BUG: unable to handle kernel NULL pointer dereference at (null)
    Feb 26 16:46:41 arch kernel: IP: [<ffffffffa06c1317>] mousedev_open_device+0x77/0x100 [mousedev]
    Feb 26 16:46:41 arch kernel: PGD b650b067 PUD b650a067 PMD 0
    Feb 26 16:46:41 arch kernel: Oops: 0000 [#1] PREEMPT SMP
    Feb 26 16:46:41 arch kernel: Modules linked in: mousedev(+) hid_generic iTCO_wdt iTCO_vendor_support ath9k(+) usbhid ath9k_common hid ath9k_hw ath uvcvideo mac80211 microcode(+) videobuf2_vmalloc videobuf2_memops videobuf2_core videodev media evdev psmouse serio_raw pcspkr cfg80211 lpc_ich i915(+) atl1e snd_hda_codec_via snd_hda_intel drm_kms_helper snd_hda_codec drm snd_hwdep snd_pcm snd_page_alloc i2c_algo_bit i2c_core snd_timer asus_laptop snd battery ac soundcore sparse_keymap acpi_cpufreq rfkill video input_polldev thermal intel_agp intel_gtt shpchp processor button ext4 crc16 mbcache jbd2 sr_mod cdrom sd_mod atkbd libps2 ahci libahci libata scsi_mod ehci_pci uhci_hcd ehci_hcd usbcore usb_common i8042 serio
    Feb 26 16:46:41 arch kernel: CPU: 1 PID: 227 Comm: acpid Not tainted 3.13.5-1-ARCH #1
    Feb 26 16:46:41 arch kernel: Hardware name: ASUSTeK Computer Inc. K50IJ /K50IJ , BIOS 217 12/04/2009
    Feb 26 16:46:41 arch kernel: task: ffff88007ffeda00 ti: ffff8800b6516000 task.ti: ffff8800b6516000
    Feb 26 16:46:41 arch kernel: RIP: 0010:[<ffffffffa06c1317>] [<ffffffffa06c1317>] mousedev_open_device+0x77/0x100 [mousedev]
    Feb 26 16:46:41 arch kernel: RSP: 0018:ffff8800b6517c10 EFLAGS: 00010202
    Feb 26 16:46:41 arch kernel: RAX: 0000000000000000 RBX: ffff8801390f5800 RCX: ffff8801390f5868
    Feb 26 16:46:41 arch kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000246
    Feb 26 16:46:41 arch kernel: RBP: ffff8800b6517c28 R08: 0000000000000000 R09: ffff88013b001600
    Feb 26 16:46:41 arch kernel: R10: 0000000000000000 R11: 0000000000000004 R12: 0000000000000000
    Feb 26 16:46:41 arch kernel: R13: ffff8801390f5880 R14: ffff8800b3287558 R15: ffff880138c8f600
    Feb 26 16:46:41 arch kernel: FS: 00007f8de7e14700(0000) GS:ffff88013fd00000(0000) knlGS:0000000000000000
    Feb 26 16:46:41 arch kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    Feb 26 16:46:41 arch kernel: CR2: 0000000000000000 CR3: 00000000b6507000 CR4: 00000000000407e0
    Feb 26 16:46:41 arch kernel: Stack:
    Feb 26 16:46:41 arch kernel: ffff88013926e400 ffff8801390f5800 ffff8801390f5878 ffff8800b6517c60
    Feb 26 16:46:41 arch kernel: ffffffffa06c20cc ffff8801390f5b48 ffff8800b3287558 ffff880138c8f600
    Feb 26 16:46:41 arch kernel: ffffffffa06c2e80 ffff880138c8f610 ffff8800b6517c98 ffffffff811a834f
    Feb 26 16:46:41 arch kernel: Call Trace:
    Feb 26 16:46:41 arch kernel: [<ffffffffa06c20cc>] mousedev_open+0xcc/0x150 [mousedev]
    Feb 26 16:46:41 arch kernel: [<ffffffff811a834f>] chrdev_open+0x9f/0x1d0
    Feb 26 16:46:41 arch kernel: [<ffffffff811a19e7>] do_dentry_open+0x1b7/0x2c0
    Feb 26 16:46:41 arch kernel: [<ffffffff811aedc1>] ? __inode_permission+0x41/0xb0
    Feb 26 16:46:41 arch kernel: [<ffffffff811a82b0>] ? cdev_put+0x30/0x30
    Feb 26 16:46:41 arch kernel: [<ffffffff811a1e01>] finish_open+0x31/0x40
    Feb 26 16:46:41 arch kernel: [<ffffffff811b1bf2>] do_last+0x572/0xe90
    Feb 26 16:46:41 arch kernel: [<ffffffff811af0b6>] ? link_path_walk+0x236/0x8d0
    Feb 26 16:46:41 arch kernel: [<ffffffff811b25cb>] path_openat+0xbb/0x6b0
    Feb 26 16:46:41 arch kernel: [<ffffffff811b3cda>] do_filp_open+0x3a/0x90
    Feb 26 16:46:41 arch kernel: [<ffffffff811c05c7>] ? __alloc_fd+0xa7/0x130
    Feb 26 16:46:41 arch kernel: [<ffffffff811a2fd4>] do_sys_open+0x124/0x220
    Feb 26 16:46:41 arch kernel: [<ffffffff811a30ee>] SyS_open+0x1e/0x20
    Feb 26 16:46:41 arch kernel: [<ffffffff8152142d>] system_call_fastpath+0x1a/0x1f
    Feb 26 16:46:41 arch kernel: Code: c0 6e e5 e0 5b 44 89 e0 41 5c 41 5d 5d c3 66 0f 1f 44 00 00 4c 89 ef 41 bc ed ff ff ff e8 a2 6e e5 e0 eb e0 48 8b 15 c9 21 00 00 <8b> 02 8d 48 01 85 c0 89 0a 75 c6 48 8b 05 37 1f 00 00 48 3d 60
    Feb 26 16:46:41 arch kernel: RIP [<ffffffffa06c1317>] mousedev_open_device+0x77/0x100 [mousedev]
    Feb 26 16:46:41 arch kernel: RSP <ffff8800b6517c10>
    Feb 26 16:46:41 arch kernel: CR2: 0000000000000000
    Feb 26 16:46:41 arch kernel: ---[ end trace 76aa0cbb67cf77f6 ]---
    Feb 26 16:46:41 arch kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Feb 26 16:46:41 arch systemd[1]: acpid.service: main process exited, code=killed, status=9/KILL
    Feb 26 16:46:41 arch systemd[1]: Unit acpid.service entered failed state.
    Feb 26 16:46:41 arch kernel: [drm] GMBUS [i915 gmbus dpc] timed out, falling back to bit banging on pin 4
    Feb 26 16:46:41 arch systemd[1]: Started Laptop Mode Tools.
    Feb 26 16:46:41 arch nxserver[374]: NX> 161 Enabled service: nxserver.
    Feb 26 16:46:42 arch kernel: fbcon: inteldrmfb (fb0) is primary device
    Feb 26 16:46:42 arch kernel: ath: phy0: Enable LNA combining
    Feb 26 16:46:42 arch kernel: ath: EEPROM regdomain: 0x60
    Feb 26 16:46:42 arch kernel: ath: EEPROM indicates we should expect a direct regpair map
    Feb 26 16:46:42 arch kernel: ath: Country alpha2 being used: 00
    Feb 26 16:46:42 arch kernel: ath: Regpair used: 0x60
    Feb 26 16:46:42 arch kernel: ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    Feb 26 16:46:42 arch kernel: ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90011e80000, irq=17
    Feb 26 16:46:42 arch systemd-udevd[139]: renamed network interface wlan0 to wlp2s0
    Feb 26 16:46:42 arch kernel: Console: switching to colour frame buffer device 170x48
    Feb 26 16:46:42 arch kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    Feb 26 16:46:42 arch kernel: i915 0000:00:02.0: registered panic notifier
    Feb 26 16:46:42 arch kernel: ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    Feb 26 16:46:42 arch kernel: acpi device:38: registered as cooling_device2
    Feb 26 16:46:42 arch kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input19
    Feb 26 16:46:42 arch nxserver[374]: NX> 161 Enabled service: nxnode.
    Feb 26 16:46:42 arch nxserver[374]: NX> 161 Enabled service: nxd.
    Feb 26 16:46:42 arch systemd[1]: Started NoMachine Server daemon.
    Feb 26 16:46:42 arch systemd[1]: Starting Multi-User System.
    Feb 26 16:46:42 arch systemd[1]: Reached target Multi-User System.
    Feb 26 16:46:42 arch systemd[1]: Starting Graphical Interface.
    Feb 26 16:46:42 arch systemd[1]: Reached target Graphical Interface.
    Feb 26 16:46:42 arch systemd[1]: Startup finished in 1.241s (kernel) + 3.231s (userspace) = 4.473s.
    Feb 26 16:46:46 arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    Feb 26 16:46:48 arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: dhcpcd[1383]: dhcpcd not running
    Feb 26 16:46:49 arch dhcpcd[1383]: dhcpcd not running
    Feb 26 16:46:49 arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: Failed to connect to non-global ctrl_ifname: wlp2s0 error: No such file or directory
    Feb 26 16:46:49 arch wicd[226]: dhcpcd[1389]: dhcpcd not running
    Feb 26 16:46:49 arch dhcpcd[1389]: dhcpcd not running
    Feb 26 16:46:49 arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: Failed to connect to non-global ctrl_ifname: enp3s0 error: No such file or directory
    Feb 26 16:46:49 arch wicd[226]: dhcpcd[1397]: dhcpcd not running
    Feb 26 16:46:49 arch dhcpcd[1397]: dhcpcd not running
    Feb 26 16:46:49 arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: Failed to connect to non-global ctrl_ifname: wlp2s0 error: No such file or directory
    Feb 26 16:46:51 arch systemd[1]: Starting Getty on tty2...
    Feb 26 16:46:51 arch systemd[1]: Started Getty on tty2.
    Feb 26 16:46:52 arch kernel: wlp2s0: authenticate with 08:86:3b:7f:86:08
    Feb 26 16:46:52 arch kernel: wlp2s0: send auth to 08:86:3b:7f:86:08 (try 1/3)
    Feb 26 16:46:52 arch kernel: wlp2s0: authenticated
    Feb 26 16:46:52 arch kernel: ath9k 0000:02:00.0 wlp2s0: disabling HT/VHT due to WEP/TKIP use
    Feb 26 16:46:52 arch kernel: wlp2s0: associate with 08:86:3b:7f:86:08 (try 1/3)
    Feb 26 16:46:52 arch kernel: wlp2s0: RX AssocResp from 08:86:3b:7f:86:08 (capab=0x411 status=0 aid=4)
    Feb 26 16:46:52 arch kernel: wlp2s0: associated
    Feb 26 16:46:52 arch kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
    Feb 26 16:46:53 arch dhcpcd[1416]: version 6.2.1 starting
    Feb 26 16:46:54 arch dhcpcd[1416]: DUID 00:01:00:01:1a:96:a5:70:1c:4b:d6:a2:1f:ad
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: IAID d6:a2:1f:ad
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: soliciting an IPv6 router
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: ipv6nd_sendrsprobe: sendmsg: Cannot assign requested address
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: rebinding lease of 192.168.2.3
    Feb 26 16:46:55 arch kernel: type=1006 audit(1393429615.096:2): pid=1406 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=1 res=1
    Feb 26 16:46:55 arch login[1406]: pam_unix(login:session): session opened for user root by LOGIN(uid=0)
    Feb 26 16:46:55 arch systemd[1]: Starting user-0.slice.
    Feb 26 16:46:55 arch systemd[1]: Created slice user-0.slice.
    Feb 26 16:46:55 arch systemd[1]: Starting User Manager for 0...
    Feb 26 16:46:55 arch kernel: type=1006 audit(1393429615.106:3): pid=1477 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=2 res=1
    Feb 26 16:46:55 arch systemd[1]: Starting Session 1 of user root.
    Feb 26 16:46:55 arch systemd[1]: Started Session 1 of user root.
    Feb 26 16:46:55 arch systemd-logind[231]: New session 1 of user root.
    Feb 26 16:46:55 arch systemd[1477]: pam_unix(systemd-user:session): session opened for user root by (uid=0)
    Feb 26 16:46:55 arch login[1406]: ROOT LOGIN ON tty2
    Feb 26 16:46:55 arch systemd[1477]: Failed to open private bus connection: Failed to connect to socket /run/user/0/dbus/user_bus_socket: No such file or directory
    Feb 26 16:46:55 arch systemd[1477]: Mounted /sys/kernel/config.
    Feb 26 16:46:55 arch systemd[1477]: Stopped target Sound Card.
    Feb 26 16:46:55 arch systemd[1477]: Starting Default.
    Feb 26 16:46:55 arch systemd[1477]: Reached target Default.
    Feb 26 16:46:55 arch systemd[1477]: Startup finished in 7ms.
    Feb 26 16:46:55 arch systemd[1]: Started User Manager for 0.
    Feb 26 16:46:59 arch dhcpcd[1416]: wlp2s0: leased 192.168.2.3 for 283824000 seconds
    Feb 26 16:46:59 arch dhcpcd[1416]: wlp2s0: adding route to 192.168.2.0/24
    Feb 26 16:46:59 arch dhcpcd[1416]: wlp2s0: adding default route via 192.168.2.1
    Feb 26 16:46:59 arch dhcpcd[1416]: forked to background, child pid 1522
    Feb 26 16:47:10 arch kdm[238]: X server startup timeout, terminating
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [140] /devices/pci0000:00/0000:00:02.0 timeout; kill it
    Feb 26 16:47:12 arch systemd-udevd[131]: seq 1255 '/devices/pci0000:00/0000:00:02.0' killed
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [146] /devices/platform/i8042/serio4/input/input15 timeout; kill it
    Feb 26 16:47:12 arch systemd-udevd[131]: seq 1659 '/devices/platform/i8042/serio4/input/input15' killed
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [148] /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.1/input/input18 timeout; kill it
    Feb 26 16:47:12 arch systemd-udevd[131]: seq 1679 '/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.1/input/input18' killed
    Feb 26 16:47:12 arch kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [140] terminated by signal 9 (Killed)
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [148] terminated by signal 9 (Killed)
    Feb 26 16:47:12 arch systemd[1]: Starting Load/Save Screen Backlight Brightness of acpi_video0...
    Feb 26 16:47:12 arch systemd[1]: Started Load/Save Screen Backlight Brightness of acpi_video0.
    Feb 26 16:47:12 arch kernel: input: failed to attach handler mousedev to device input15, error: -4
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [146] terminated by signal 9 (Killed)
    Feb 26 16:47:12 arch kernel: input: failed to attach handler mousedev to device input18, error: -4
    Feb 26 16:47:12 arch kernel: mousedev: PS/2 mouse device common for all mice
    Feb 26 16:47:13 arch kdm[238]: X server for display :0 cannot be started, session disabled
    Feb 26 16:48:56 arch kernel: usb 7-2: USB disconnect, device number 2
    Feb 26 16:48:56 arch laptop-mode[1782]: Laptop mode
    Feb 26 16:48:56 arch laptop-mode[1783]: enabled, not active
    Feb 26 16:48:56 arch laptop-mode[1834]: Laptop mode
    [xx@arch Desktop]$ uname -a
    Linux arch 3.13.5-1-ARCH #1 SMP PREEMPT Sun Feb 23 00:25:24 CET 2014 x86_64 GNU/Linux
    Could you please someone help me with this?
    Thanks

    Sorry to bump this, but I'm having the exact same error tonight on my HTPC, any chance you found out what the problem was ?
    To make matters worse, it's not happening every single time, but maybe every 4 out of 5 boots (same kernel, no changes in between.)
    I thought this was a kernel issue related to this:
    https://lkml.org/lkml/2014/3/10/359
    I've tried adding atkbd and psmouse to my mkinitcpio.conf MODULES section and rebuilt, but no change.
    I changed the NVidia driver from nvidia-304xx to nvidia-full-beta-all ( 334.21 ) from AUR but it had the same error at the same place.
    Here's the part from `dmesg` where it borks:
    [ 3.229195] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:04.0-3/input2
    [ 3.236312] input: Logitech Unifying Device. Wireless PID:400e as /devices/pci0000:00/0000:00:04.0/usb3/3-3/3-3:1.2/0003:046D:C52B.0003/input/input6
    [ 3.237230] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:400e] on usb-0000:00:04.0-3:1
    [ 3.279150] BUG: unable to handle kernel NULL pointer dereference at (null)
    [ 3.280083] IP: [<ffffffffa1cbc317>] mousedev_open_device+0x77/0x100 [mousedev]
    [ 3.280810] PGD c99ea067 PUD c9f4a067 PMD 0
    [ 3.281266] Oops: 0000 [#1] PREEMPT SMP
    [ 3.281668] Modules linked in: mousedev(+) nvidia(PO+) snd_hda_codec_realtek hid_logitech_dj usbhid hid usb_storage coretemp evdev microcode pcspkr serio_raw snd_hda_intel(+) snd_hda_codec shpchp snd_hwdep snd_pcm snd_page_alloc snd_timer snd soundcore i2c_nforce2 i2c_core wmi processor button r8169 mii ext4 crc16 mbcache jbd2 sd_mod ata_generic pata_acpi ahci libahci libata ohci_pci ohci_hcd ehci_pci ehci_hcd scsi_mod usbcore usb_common psmouse atkbd libps2 i8042 serio
    [ 3.281820] CPU: 1 PID: 211 Comm: acpid Tainted: P O 3.13.6-1-ARCH #1
    [ 3.281820] Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./MCP7A-ION, BIOS 080015 10/10/2009
    [ 3.281820] task: ffff8800ca5c1b00 ti: ffff8800c97f0000 task.ti: ffff8800c97f0000
    [ 3.281820] RIP: 0010:[<ffffffffa1cbc317>] [<ffffffffa1cbc317>] mousedev_open_device+0x77/0x100 [mousedev]
    [ 3.281820] RSP: 0018:ffff8800c97f1c10 EFLAGS: 00010202
    [ 3.281820] RAX: 0000000000000000 RBX: ffff8800c9987000 RCX: ffff8800c9987068
    [ 3.281820] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000246
    [ 3.281820] RBP: ffff8800c97f1c28 R08: 0000000000000000 R09: ffff8800cf401600
    [ 3.281820] R10: 0000000000000000 R11: 0000000000000004 R12: 0000000000000000
    [ 3.281820] R13: ffff8800c9987080 R14: ffff8800c0260058 R15: ffff8800c9f2a500
    [ 3.281820] FS: 00007f8f12f05700(0000) GS:ffff8800cfa80000(0000) knlGS:0000000000000000
    [ 3.281820] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b
    [ 3.281820] CR2: 0000000000000000 CR3: 00000000ca93e000 CR4: 00000000000007e0
    [ 3.281820] Stack:
    [ 3.281820] ffff8800c9940000 ffff8800c9987000 ffff8800c9987078 ffff8800c97f1c60
    [ 3.281820] ffffffffa1cbd0cc ffff8800c9987348 ffff8800c0260058 ffff8800c9f2a500
    [ 3.281820] ffffffffa1cbde80 ffff8800c9f2a510 ffff8800c97f1c98 ffffffff811a83ef
    [ 3.392372] Call Trace:
    [ 3.398245] [<ffffffffa1cbd0cc>] mousedev_open+0xcc/0x150 [mousedev]
    [ 3.398245] [<ffffffff811a83ef>] chrdev_open+0x9f/0x1d0
    [ 3.398245] [<ffffffff811a1a87>] do_dentry_open+0x1b7/0x2c0
    [ 3.398245] [<ffffffff811aee61>] ? __inode_permission+0x41/0xb0
    [ 3.398245] [<ffffffff811a8350>] ? cdev_put+0x30/0x30
    [ 3.398245] [<ffffffff811a1ea1>] finish_open+0x31/0x40
    [ 3.398245] [<ffffffff811b1c92>] do_last+0x572/0xe90
    [ 3.398245] [<ffffffff811af156>] ? link_path_walk+0x236/0x8d0
    [ 3.398245] [<ffffffff811b266b>] path_openat+0xbb/0x6b0
    [ 3.508083] random: nonblocking pool is initialized
    [ 3.398245] [<ffffffff811b3d7a>] do_filp_open+0x3a/0x90
    [ 3.398245] [<ffffffff811c0617>] ? __alloc_fd+0xa7/0x130
    [ 3.398245] [<ffffffff811a3074>] do_sys_open+0x124/0x220
    [ 3.398245] [<ffffffff811a318e>] SyS_open+0x1e/0x20
    [ 3.398245] [<ffffffff815216ad>] system_call_fastpath+0x1a/0x1f
    [ 3.556729] Code: 40 c1 85 df 5b 44 89 e0 41 5c 41 5d 5d c3 66 0f 1f 44 00 00 4c 89 ef 41 bc ed ff ff ff e8 22 c1 85 df eb e0 48 8b 15 c9 21 00 00 <8b> 02 8d 48 01 85 c0 89 0a 75 c6 48 8b 05 37 1f 00 00 48 3d 60
    [ 3.556729] RIP [<ffffffffa1cbc317>] mousedev_open_device+0x77/0x100 [mousedev]
    [ 3.556729] RSP <ffff8800c97f1c10>
    [ 3.556729] CR2: 0000000000000000
    [ 3.563412] ---[ end trace 590b482a8704c6ac ]---
    [ 3.980300] input: HDA NVidia HDMI/DP,pcm=3 Phantom as /devices/pci0000:00/0000:00:08.0/sound/card0/input7
    Here's the output on a good boot:
    [ 3.415791] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:04.0-3/input2
    [ 3.422256] input: Logitech Unifying Device. Wireless PID:400e as /devices/pci0000:00/0000:00:04.0/usb3/3-3/3-3:1.2/0003:046D:C52B.0003/input/input6
    [ 3.422644] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:400e] on usb-0000:00:04.0-3:1
    [ 3.434861] mousedev: PS/2 mouse device common for all mice
    [ 3.853639] input: HDA NVidia HDMI/DP,pcm=3 Phantom as /devices/pci0000:00/0000:00:08.0/sound/card0/input7
    Here's my mkinitcpio.conf
    : grep -v ^\# /etc/mkinitcpio.conf
    MODULES="atkbd psmouse"
    BINARIES=""
    FILES=""
    HOOKS="base udev autodetect modconf block filesystems keyboard fsck"
    Last edited by corpdecker (2014-03-19 02:47:30)

  • Problem with mac os x lion audio mute and web video playback

    I have a 15" MacBook Pro I7
    Strangest thing started happening ever since I installed Adobe Masters Collection Trial Version CS6.
    Randomly, and I can pinpoint exactly when, all of a sudden I will loose my sound.  The muting goes off and I can't get it back on again no matter what I try.  Then I loose web-video playback.  Nothing will playback beyond 11 seconds.  I followed all the support community advice on how to handle this situation with no luck.  Resetting the SCM does nothing.  The ONLY way I can fix it is with a re-install of Mac OS X Lion!  I've reinstalled twice (fixed the problem both times) but the problem just keeps coming back. 
    I'm guessing it's a software issue of somesort but I'm not exactly sure what the problem is or how to fix it.  Any advice?

    Slight Update. I found a guy with my EXACT problem here.  https://discussions.apple.com/thread/4103108?start=0&tstart=0  Go to this discussion for further details.

  • Problems with brand new install.. Device ID:5081h ???

    Putting together a new system. 
    K8N Neo2 Platinum
    AMD Athlon 64 3200+ Venice 1GHz FSB 512KB L2 Cache Socket 939 Processor
    CMX512-3200LLPRO x2 Corsair Ram Sticks (Known good from another system)
    ASUS ATI 9600 AGP video Card (Know good from another system)
    WD 360 Raptor SATA HD  X2 (Connected to onboard SATA)
    Getting an odd message durring boot...
    Warning:Have Option ROM can not be invoke (vendor ID:10DEh, Device ID:00DFh)
    Trying to figure out what the device is, I belive the vendor is NVDIA... but no luck finding device.
    Above and beyond this, i'm trying to install this
    HighPoint RocketRAID 1820A 64-bit, 66/100/133MHz PCI-X SATA Controller Card RAID 0/1/5/10 JBOD
    WD3000 Caviar SE SATA HD x5
    When I have it installed, I get this in adition
    Warning:Have Option ROM can not be invoke (vendor ID:10DEh, Device ID:5081h)
    And no Bios shows up for the raid card.
    Any help would be appreciated... If I go through and disable almost everything on the motherboard, the bios from the RocketRAID comes up..  I keep trying to isolate it to a singe device on the MB, but haven't had any luck. 
    MagnAxiom
    P.S.
    I've been to the MSI website.. newest bios I could find was 7025v19  I've since upgraded the bios on the MB.. no good.. same issues...
    Tried updateing the RocketRAID as well, no good..

    I'm suffering from the same problem .
    I have an addin pci sata SIL 3112 card with two sata disks connected to it .
    Disk 1 has WinXp64bits .
    With two sata drives connected to sata 3/4 set in non raid mode i can see the SIL disks in the HD boot order .
    But if I enable the Nvidia raid which host my xp32bits OS the disks from the SIL card disappears .
    First i thought this was only with the 1.9x -> 1.a3 bioses but infact it like this all the way don to atleast 1.36 . 
    So if a want to boot my WinXp64 i have to disable the raid in bios , else this has 1'st priority and will always be the bootable MBR
    even if the SIL card is visable in boot order on top or non visable at all.
    Funky motherboard , and funky bioses .
    But live and learn as they say .
    Atleast i can have four sata disks and overclock past 230HTT clock reference which is something .
    edit:
    I just wonder if this "cannot invoke error string" message has been supressed from being displayed in earlier bioses
    and infact doesn't change anything at all from pre 1.9x to 1.9 versions .

  • Problem with very new install.

    I have a clean HD and want to put Solaris 10 on it. I downloaded and burned the install onto 5 CD-r. When I boot the system, it doesn't boot to the CD rom. I have changed the boot sequence in the bios. What else do I need to do to start the install?

    You have to have a boot-able cd. The boot file is loaded onto a specific area of any disk. The system you're booting knows where that file should be (at the boot-block) and will load the boot file from that location. After it boots it then know how to run the devices and how to read the rest of the disk. When booting from the CD the SUNWeb install program should run by default.
    Some cd/dvd writing software will allow you to make a boot-able cd, but not all. Verify that your cd burning software has the option of making a boot-able cd and follow it's particular directions to create a boot-able disk. If it doesn't have that option, all I can suggest is to find software that will do it or get a boot-able copy from Sun.
    Paul M.

  • [SOLVED][GRUB]Install problem with the new method

    Hi,
    it is not my first install of Arch Linux but I have a problem with this new kind of installation method, especially with GRUB.
    Here is my hard drives configuration :
    /dev/sda1 -> SSD 120 GB ntfs (windows)
    /dev/sdb1 -> HD 1 TB ext4 (data)
    /dev/sdc :
    /dev/sdc1 -> ext2 /boot
    /dev/sdc2 -> swap
    /dev/sdc3 -> ext4 /
    /dev/sdc5 -> ext4 /home
    During the installation, I installed grub (with grub-install) in /dev/sdc. I assumed it was the correct drive to install it but apparently not, Windows starts automatically and I don't have the grub menu.
    Should I install my system again or is there a way to boot on the livecd and install it ?
    Should I :
    1) mount /dev/sdc3 in /mnt then /dev/sdc1 in /mnt/boot and finally /dev/sdc5 in /mnt/home
    2) pacstrap /mnt grub-bios
    3) arch-chroot
    4) grub-install
    Thank you.
    Last edited by hiveNzin0 (2012-09-12 06:15:15)

    DSpider wrote:
    If you set whatever drive "/dev/sdc" is (brand and model) to boot first in the BIOS, all you need to do is install a bootloader on Arch. You don't even need a separate boot partition. It will use the /boot folder on root partition. Then install os-prober (if you don't already have this installed) and re-generate the .cfg.
    https://wiki.archlinux.org/index.php/Be … bootloader
    The problem is that I cannot select another hard drive. The only one available for the boot order is the Samsung 830 series (/dev/sda with Windows).
    The other options are the CD drive and removable disk.
    I checked that this morning, maybe I was too tired. I will check again this evening.
    But if I am right and I cannot select my intel SSD (containing my arch setup) for the boot order, would the solution I described work ? I don't see why not but my knowledge are basic in Linux.
    Thank you again for your help.

  • Radeon Mobility HD 4650 / xf86-video-ati driver problem

    Hi everyone,
    I am under Archlinux with my laptop (Asus N81vp)  since a year, and i've got this problem since the begining. With the radeon driver installed, my X work well but the fan of my card is screaming and my laptop anormaly hot. I do not have this problem under Windows or with the catalyst driver (witch is working). I really want to use the radeon, more maintained (and free ^^).
    I cannot have the temperature and the state of the fan, my ic2 chips aren't recognized by lm-sensors...
    I really don't know where the problem is : if anyone have a Radeon mobility HD 4650, i would like to know if they have the same problem or a solution. Maybe it's a bug of the driver, or a configuration problem...
    Anyway, if anyone have a solution, i googlize it for hours, and this problem outclass my knowledge...
    Here's a bit of my hardware and configs files. I you want more, tell me
    Thanx in advance (and i'm sorry if my english sucks, i'm from France ...)
    uname -r
    2.6.39-ARCH
    Version de xf86-video-ati : 6.14.2-1 (Testing)
    I do not have a xorg.conf
    [arsenik@Spartakus ~]$ lspci
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:01.0 PCI bridge: Intel Corporation Mobile 4 Series Chipset PCI Express Graphics Port (rev 07)
    00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation ICH9M/M-E SATA AHCI Controller (rev 03)
    01:00.0 VGA compatible controller: ATI Technologies Inc M96 [Mobility Radeon HD 4650]
    01:00.1 Audio device: ATI Technologies Inc RV710/730
    03:00.0 Network controller: Intel Corporation WiFi Link 5100
    06:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
    07:03.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 05)
    07:03.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22)
    07:03.2 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12)
    07:03.3 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 12)
    dmesg
    http://pastebin.com/nmZYeTKf
    /etc/rc.conf
    http://pastebin.com/v6q4LQD4
    Last edited by Spartakus (2011-07-19 18:30:40)

    As far as I know, the open source driver simply churns through quite a bit more power than catalyst when idling. The higher core temperature is the unfortunate direct result of this.
    I'm using xf86-video-ati 6.14.2-1 too, but with a Radeon Mobility HD4570 (which is detected by lm-sensors, by the way). With the default driver settings (highest power state), I see core temperatures as high as 88 degrees C when doing nothing. I've added
    echo mid > /sys/class/drm/card0/device/power_profile
    to /etc/rc.local as a workaround for the issue. This basically forces a lower power mode than default at boot. Currently, my GPU idles at 64 degrees C, which is sort of acceptable in my opinion. The obvious side effect of this workaround is that your graphics performance goes down, which I'd even notice in Gnome 3's transitions (not being as smooth as before).
    This page may be relevant to your interests:  https://wiki.archlinux.org/index.php/ATI#Powersaving

  • Problem with the new server UCS C220 for set IP to CIMC

    Hi
    We’ve a problem with the new server UCS C220.
    We bought two servers UCS C220 M3 for CallManager 8.6 with High Availability.
    When we turn on the server during the boot and when it tells us, oppress F8 to enter at the CIMC and set the IP. But it never enters at the CIMC.
    Then, we configure our DHCP server and our switch, we connect the three gigabyte ports to our switch to give him an IP to the CIMC, so and then can enter via browser, but neither works.
    Note. The dedicated management NIC does not link, the other two ports do make link.
    What do you suggest to put an IP to CIMC and start installing our applications?
    regards

    You may have noticed that there is no DVD rom on the c220. What you need to do is:
    Login into the CIMC from your browser
    Luanch the KVM
    Insert the VMware DVD in your machines drive
    On the KVM pop up there should be a tab to mount the drive, after mounting it click on Macros and choose ctrl_alt+delete to restart.
    After the VMware OS installs press F2 to enter IP.
    Browse to the VMware ip to download the Vsphere client
    Open the Vsphere client, enter the ip of the vmware and the username will be root and no password if you did not set one.
    You can now upload OVA templates or manually create virtua machine from this enviroment.
    Hope this help

  • Is Anyone Having Problems with the newer version of Firefox?

    I still have my older Mac OsXv10.4 Tiger software. I wasn't exactly happy with Safari browser as it would block many sites and were considered incompatible so I downloaded the free Firefox browser (the 2.0 version) of which I STILL have. I'm aware that there is a much newer version and would like to download that, but I've heard a lot of people saying they have been having severe problems with it, but then they have PCs and not Macs.
    So my question is for you Mac users that use Firefox, have you had major problems with the newer version? I'm real hesitant to download if I'm going to have the same problem PC users are having...like constantly crashing. Also would my old Tiger software be compatible? I don't want to upgrade to Leopard.

    Yes. I had problems with Firefox 3.5. The primary problem was very slow or never-ending loading of certain websites (particularly secure sites and sites with many features). I also have had similar, but not as bad, problems with Safari 4. I never had these problems with Safari 2 or Firefox 2. It just seems that with each update, the problems increased for me. I have read the Safari and Firefox forums and tried many fixes with little improvement. I have come to the conclusion that there is some kind of compatibility problem between the latest versions of Safari and Firefox and Shockwave Flash and/or Javascript and OS 10.4, particularly on PPC Macs. I expect there are many who will disagree and I cannot argue or prove the point. This is just my opinion. And I recognize that my problems could be caused by my setup and not by the browsers. By the way, I do not use any add-ons with any of my browsers. Anyway, I got tired of dealing with it and installed the latest version of Camino about 2 weeks ago. I also did a clean install of Firefox 3.0.13. Camino is working out great for me. It is simple and it works. No problems at all. So currently I am using Camino as my primary browser and Firefox 3.0.13 as my backup. I hope this helps.

  • I am having problems with my new ipad that i got for Christmas today, i don't get free wi-fi at my home and it said if the wi-fi is not available, connect to itunes. i have done that and it didnt help me. mind helping me out?

    i am having problems with my new ipad that i got for Christmas today, i don't get free wi-fi at my home and it said if the wi-fi is not available, connect to itunes. i have done that and it didnt help me. mind helping me out?

    Further info - I changed my security settings to allow apps from anywhere, and again tried to install.  I again got an error message
    that the update failed to install, and to contact Customer Support.

  • I can not install xp through boot camp, the team just bought yesterday, is a macbook pro 13 when my old computer did it without problem with the same install disc

    I can not install xp through boot camp, the team just bought yesterday, is a macbook pro 13 when my old computer did it without problem with the same install disc

    There are no XP or Vista drivers for the new Apple computer hardware. Apple stopped XP and Vista support. http://support.apple.com/kb/HT4410.

  • Problems with Itunes New Version?

    Problems with Itunes New Version?
    Here is a copy of the error message. Every Time I listen to a song and it end and I go to listen to a new song the Itunes Freeze up. This is on the New Version of Itunes. I have a Windows 7 32bit 3GB Ram 1TB harddrrive Space
    <edited by host>
    Thanks,
    <edited by host>
    Fault bucket 1279649891, type 5
    Event Name: AppHangB1
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 9.2.1.5
    P3: 4c47745b
    P4: e36b
    P5: 2048
    P6:
    P7:
    P8:
    P9:
    P10:
    Analysis symbol:
    Rechecking for solution: 1
    Report Id: 46dfdb3e-99a7-11df-8064-00038a000015
    Report Status: 0
    Fault bucket 1279649891, type 5
    Event Name: AppHangB1
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 9.2.1.5
    P3: 4c47745b
    P4: e36b
    P5: 2048
    P6:
    P7:
    P8:
    P9:
    P10:
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 46dfdb3e-99a7-11df-8064-00038a000015
    Report Status: 0

    There certainly is a problem with itunes. I downloaded 9.2 and now it won't open. It won't recognize my iphone, either. I uninstalled it in the order recommended by the site, no joy. Deleted a configuration file, no joy. System Restore, no joy. All other software and hardware on the machine is working fine. I call AppleCare AND a local store, either they are completely clueless (which I doubt), or they have no idea how to fix it. I can't even back up my phone, or use the ipod. And since no one at Apple seems to care enough, I'll have to wait until the clamor is loud enough for them to even admit to a problem before I can use the ipod again.

  • I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding"

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

  • Problems with the new Pages.

    Hi everyone.
    I wonder if i am the only one experiencing a little problem with the new Pages?
    My problem is that every other time i want to correct the font lets say trying to underline or make the font fatter using the hotkeys "Command+B" or "Command+U" or "Command+I", or even changing it manually in "formats" my font gets stuck, and i have to copy-paste text from another pages-file into my old one to get et back to normal.
    Anyone else tried this?
    Martin.

    VladRO wrote:
    These are the problems that I am encountering for the moment! If there will come up some new once, I will write them here!
    Instead of starting a new list, go to
    https://discussions.apple.com/thread/5468056?tstart=0

  • Problems with the new iPad and Joikuspot premium after iOS 6

    Hi,
    I'm experiencing serious problems with my new iPad after last iOS update. Usually I was connecting to the internet through Joikuspot premium on Nokia mobile phone (E6). I was able to do everything, https sites surfing, absolutely everything with no exceptions.
    Now, after iOS 6 update, I can't connect to https sites, google+, sync calendar etc.
    I've tried to change connection criteria on joikuspot but nothing. The fact is also that other devices as laptop or other smartphones are still working perfectly, in any case, sharing the wi-fi connection created by joikuspot.
    Finally the problem is 100% due to the iPad and the new iOS.
    disappointing, amateur for such a device... (iPad I mean).
    Any help?
    Many many thanks
    Vittorio

    Ho lo stesso problema, dopo l'aggiornamento a IOS 6 l'ipad non riconosce più il mio nokia N8. Con IOS 5 andava una cannonata...
    vorrei ritornare a IOS 5

Maybe you are looking for

  • How to know the latest version of NWDS that the portal supports.

    Hi All, How to get to know the latest version of NWDS that the portal supportsu2026 I mean if a  patch r support package  is applied to the server, then it would support higher version of NWDS. How do we get to know which is that latest NWDS version?

  • Updating

    Hello I am trying to update my iphone to get the new software and itunes will download the software but will not install.  An error message pops up saying that my network needs to be changed?

  • Default Business Rules at AppSet level

    Hi Experts, Once you create a new AppSet by copying AppShell and add a "Consolidation" type application with all business rules, a default "Business Rules Library" is generated at AppSet level along with "Business Rule" within Application. The "Busin

  • OSB and SAP integration using XML web services

    Hi Team, We are designing solution for asynchronous and synchronous scenarios integration between OSB and SAP using web services. Can you please provide some pointers which tells about how OSB and SAP integration works. For an example: If we are desi

  • I installed iWork in my old 2007 macbook can i transfer it to my new 2011 mac pro?

    my old mac has a broken screen so i cant see what im doing