[SOLVED] Perl has screwed up rather nicely.

After today's update:
[crew@myhost ~]$ kildclient
(I attempt to connect to a server)
Perl lib version (5.10.1) doesn't match executable version (v5.10.0) at /usr/lib/perl5/core_perl/Config.pm line 50.
Compilation failed in require at /usr/lib/perl5/core_perl/DynaLoader.pm line 25.
BEGIN failed--compilation aborted at /usr/lib/perl5/core_perl/DynaLoader.pm line 25.
Compilation failed in require at /usr/lib/perl5/vendor_perl/Locale/gettext.pm line 37.
Compilation failed in require at /usr/share/kildclient/kildclient.pl line 32.
BEGIN failed--compilation aborted at /usr/share/kildclient/kildclient.pl line 32.
Undefined subroutine &main::__sethelpfile called at (eval 3) line 1.
[crew@myhost ~]$
Kildclient then closes itself.
Last edited by SomeGuyDude (2009-10-04 20:25:09)

SomeGuyDude wrote:Rebuilding it worked, but I'm not sure that's exactly a "solution". I mean, it made it WORK, but if every time there's a perl upgrade I gotta reinstall EVERY app I have that uses per, that's a bit of a PITA.
I hear ya'. If the Perl devs want to change the API on every update, it's going to keep Arch users swimming upstream.

Similar Messages

  • Since downloading and installing the current update of Yosemite on my MacBook Air using the Internet on my Hevanet server has become a rather useless effort due to unreasonable slowness

    Since downloading and installing Yosemite 10.10 on my MacBook Air, using the Internet via Safari on my Hevanet server has become a rather useless effort due to unreasonable slowness and frequent Gmail crashes when I actually do manage to get through to the Internet.

    What exactly is crashing?

  • This site has screwed up my username. How do I correct it?

    This site has screwed up my username. How do I correct it?

    Once established, name does not change.
    But you can abandon the old one to non-use and make one that you want.  Usually when someone has points they do not want to abandon it causes issues, but you have 0 points, so are leaving nothing behind.

  • [SOLVED] Perl refuses to run certain utilities

    [Aside: Sorry, not really an Arch newbie, but I am a forum and Perl newbie; not sure where else to post this.]
    I am the current maintainer of the AUR package called mesa-demos-git; it was flagged out-of-date, and I was going to examine the problem (and throw in the new VCS syntax for good measure) when I was greeted with this fun little error:
    ==> Starting build()...
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal -I m4
    Attempt to reload Scalar/Util.pm aborted.
    Compilation failed in require at /usr/lib/perl5/site_perl/Data/Dumper.pm line 297.
    aclocal: error: echo failed with exit status: 1
    autoreconf: aclocal failed with exit status: 1
    Running aclocal by itself in a directory with a configure.ac fails, as one would expect from the above error (even though it has worked in the past on other packages I've updated in the last couple weeks).
    I also wasn't thinking for a while and thought it was a missing module, so I ran cpan to try to install it, but cpan fails with the same error.
    Yeah, so something's wrong with the perl configuration on my system; I tried a `pacman -Rnsdd perl` and a reinstall, but to no avail. Actually, since no package seems to own /usr/lib/perl5/site_perl/Scalar/Util.pm, I have no idea where to start.
    What's going on here and how can I even begin to solve this?
    Last edited by luolimao (2013-05-28 03:03:46)

    Does any package own anything in site_perl? I ask because that directory is empty on my system. I'm wondering if those files have been installed manually and are being used instead of the versions in core_perl/vendor_perl such as /usr/lib/perl5/core_perl/Scalar/Util.pm, for example.

  • I group messaged from my ipad and this has screwed up the way my messages are reveived by my friends (it creates new threads in their phones with my email in place of my contact name) I've stopped messaging from my ipad but the problem remains. Any help?

    I have an iPhone 4S and use the group texting feature ALL THE TIME. I recently updated my iPad to the latest software and made the colossal mistake of continuing my group messaging from my iPad while connected to wifi. Doing this has successfully screwed but every group text thread I am in, to the point where its very hard for those involved in the thread to keep up. When I initially messaged those I was already engaged in text threads with it created a new thread in their phones replacing my name in their phones with my email. At first this was not a big deal but ever since then the people I am messaging have become increasingly frustrated with how my messages come through. If I am messaged in a group text and respond to it, sometimes when I respond it will create an entirely different thread in my recipients phones. So at that point they have to switch threads in order to read what I wrote. The new thread that my phone creates will send the message under my email not my name (related to the contact they have me saved as in their phones). The worst part about it is that there seems to be no rhyme or reason to why or when my phone will send the message as normal or under my email like it did with my iPad. I haven’t messaged from my iPad since these problems immediately began a month ago but the issues still continue. I have tried everything to get this to stop, I’ve turned off my wifi, I’ve had my friends delete the threads that my messages create in their phones. I’ve had them delete my email in their contact lists and nothing has worked. Can you help me? Any info you could provide would be greatly appreciated.
    Note: My phone message no different whatsoever. All the threads have remained the same. The issue is what it is doing to the people that I am messaging.
        Best Regards
             Rick Mulhern
    Message was edited by: Rickapplehelp19

    I have this identical problem.  For a while my group texts didnt show up on my ipad.  Then one day they did, maybe everyone in the group started using the same os version or something.  Ever since my first reply to the group there have been complaints of multiple threads.  I can not find a pattern for when my group text's decide they want to create a new thread. (it doesnt happen every time)  Everyone in the group has deleted the thread, we've all toggled imessage on/off etc.  There still hasn't been a solution.
    Any help would be appreciated.
    Thanks

  • [SOLVED] (Perl) Help Modifying Conky Weather Script

    I'm using buttons' excellent Conky weather script, but it has more information than I need. It displays both the current weather condition and the temperature:
    [condition]:[temperature]F
    so right now it's
    Clear: 46F
    All I need is for it to display the temperature, without the current condition, colon, and letter 'F' (for Fahrenheit).
    the script:
    METRIC=0 #Should be 0 or 1; 0 for F, 1 for C
    if [ -z $1 ]; then
    echo
    echo "USAGE: weather.sh <locationcode>"
    echo
    exit 0;
    fi
    curl -s http://rss.accuweather.com/rss/liveweather_rss.asp\?metric\=${METRIC}\&locCode\=$1 | perl -ne 'if (/Currently/) {chomp;/\<title\>Currently: (.*)?\<\/title\>/; print "$1"; }'
    In Conky:
    {execi 300 /home/hex/.conky/weather.sh <zip code>}
    I'm not familiar with Perl yet so any help is much appreciated
    Last edited by Olson (2011-02-17 07:06:10)

    Try this
    curl ... | perl -ne 'if (/Currently/) {chomp;/\<title\>.*: (\d*).\<\/title\>/; print "$1"; }'

  • [Solved] X11 has purple tint when using catalyst-test drivers

    Hey guys, so I turned the TV on for my HTPC last night hoping to watch some anime. But when it turned on the screen had a purple tint! I tried to do some debugging over SSH from my phone while in bed, but decided to just go to sleep instead.
    Tonight I narrowed down the problem a bit, it's certainly related to the catalyst drivers (No problems when using xf86-video-ati).
    I'm noticing warnings from various programs that look like
    libpng warning: iCCP: known incorrect sRGB profile
    Taking a screenshot using `scrot` and viewing it the screen looks fine..
    Here's my xorg.conf (which is just the default genearted by aticonfig --initial)
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:0:1:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    I suspected that it might have been a package upgrade, but downgrading packages that looked like they might have been the problem didn't solve anything.
    Any ideas?
    Edit: Just tried with xorg1.13 with Catalyst 13.4 (stable).. same problem.
    Edit 2: After starting and then stopping X this problem happens in the framebuffer too.. hmmm (It doesn't happen during boot time or during initial login, it's not a bad cable connection!)
    Edit 3: The problem does not occur when using the VGA d-sub output, only when using the HDMI output
    Edit 4: Here's my Xorg.0.log
    [ 1826.112]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 1826.112] X Protocol Version 11, Revision 0
    [ 1826.112] Build Operating System: Linux 3.9.7-1-ARCH x86_64
    [ 1826.112] Current Operating System: Linux htpc 3.9.9-1-ARCH #1 SMP PREEMPT Wed Jul 3 22:45:16 CEST 2013 x86_64
    [ 1826.112] Kernel command line: initrd=\initramfs-linux.img root=UUID=03f6bfa4-7815-4841-8386-5545dfa4cd33 ro loglevel=0 nomodeset
    [ 1826.112] Build Date: 01 July 2013 10:48:42AM
    [ 1826.112]
    [ 1826.113] Current version of pixman: 0.30.0
    [ 1826.113] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1826.113] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1826.113] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul 22 08:39:14 2013
    [ 1826.113] (==) Using config file: "/etc/X11/xorg.conf"
    [ 1826.113] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1826.113] (==) ServerLayout "aticonfig Layout"
    [ 1826.113] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 1826.113] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 1826.114] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 1826.114] (==) Automatically adding devices
    [ 1826.114] (==) Automatically enabling devices
    [ 1826.114] (==) Automatically adding GPU devices
    [ 1826.114] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 1826.114] Entry deleted from font path.
    [ 1826.114] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1826.114] Entry deleted from font path.
    [ 1826.114] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 1826.114] Entry deleted from font path.
    [ 1826.114] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 1826.114] Entry deleted from font path.
    [ 1826.114] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 1826.114] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1826.114] Entry deleted from font path.
    [ 1826.114] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1826.114] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 1826.114] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 1826.114] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 1826.114] (II) Loader magic: 0x7fdc20
    [ 1826.114] (II) Module ABI versions:
    [ 1826.114] X.Org ANSI C Emulation: 0.4
    [ 1826.114] X.Org Video Driver: 14.1
    [ 1826.114] X.Org XInput driver : 19.1
    [ 1826.114] X.Org Server Extension : 7.0
    [ 1826.117] (--) PCI:*(0:0:1:0) 1002:964a:1565:1707 rev 0, Mem @ 0xc0000000/268435456, 0xfef00000/262144, I/O @ 0x0000f000/256
    [ 1826.117] Initializing built-in extension Generic Event Extension
    [ 1826.117] Initializing built-in extension SHAPE
    [ 1826.117] Initializing built-in extension MIT-SHM
    [ 1826.117] Initializing built-in extension XInputExtension
    [ 1826.117] Initializing built-in extension XTEST
    [ 1826.117] Initializing built-in extension BIG-REQUESTS
    [ 1826.117] Initializing built-in extension SYNC
    [ 1826.117] Initializing built-in extension XKEYBOARD
    [ 1826.117] Initializing built-in extension XC-MISC
    [ 1826.117] Initializing built-in extension SECURITY
    [ 1826.117] Initializing built-in extension XINERAMA
    [ 1826.117] Initializing built-in extension XFIXES
    [ 1826.117] Initializing built-in extension RENDER
    [ 1826.117] Initializing built-in extension RANDR
    [ 1826.117] Initializing built-in extension COMPOSITE
    [ 1826.117] Initializing built-in extension DAMAGE
    [ 1826.117] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1826.117] Initializing built-in extension DOUBLE-BUFFER
    [ 1826.117] Initializing built-in extension RECORD
    [ 1826.117] Initializing built-in extension DPMS
    [ 1826.117] Initializing built-in extension X-Resource
    [ 1826.117] Initializing built-in extension XVideo
    [ 1826.117] Initializing built-in extension XVideo-MotionCompensation
    [ 1826.117] Initializing built-in extension XFree86-VidModeExtension
    [ 1826.117] Initializing built-in extension XFree86-DGA
    [ 1826.117] Initializing built-in extension XFree86-DRI
    [ 1826.117] Initializing built-in extension DRI2
    [ 1826.117] (II) "glx" will be loaded by default.
    [ 1826.117] (II) LoadModule: "glx"
    [ 1826.117] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1826.117] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 1826.117] compiled for 6.9.0, module version = 1.0.0
    [ 1826.118] Loading extension GLX
    [ 1826.118] (II) LoadModule: "fglrx"
    [ 1826.118] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 1826.134] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
    [ 1826.134] compiled for 1.4.99.906, module version = 13.10.10
    [ 1826.134] Module class: X.Org Video Driver
    [ 1826.134] (II) Loading sub module "fglrxdrm"
    [ 1826.134] (II) LoadModule: "fglrxdrm"
    [ 1826.134] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 1826.134] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 1826.134] compiled for 1.4.99.906, module version = 13.10.10
    [ 1826.134] (II) AMD Proprietary Linux Driver Version Identifier:13.10.10
    [ 1826.134] (II) AMD Proprietary Linux Driver Release Identifier: UNSUPPORTED-13.101
    [ 1826.134] (II) AMD Proprietary Linux Driver Build Date: May 23 2013 15:49:35
    [ 1826.134] (++) using VT number 4
    [ 1826.136] (WW) Falling back to old probe method for fglrx
    [ 1826.150] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
    [ 1826.154] ukiDynamicMajor: found major device number 250
    [ 1826.154] ukiDynamicMajor: found major device number 250
    [ 1826.154] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 1826.154] ukiOpenDevice: node name is /dev/ati/card0
    [ 1826.154] ukiOpenDevice: open result is 9, (OK)
    [ 1826.154] ukiOpenByBusid: ukiOpenMinor returns 9
    [ 1826.154] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 1826.156] (--) Chipset Supported AMD Graphics Processor (0x964A) found
    [ 1826.156] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:1:1) found
    [ 1826.156] (II) AMD Video driver is running on a device belonging to a group targeted for this release
    [ 1826.156] (II) AMD Video driver is signed
    [ 1826.157] (II) fglrx(0): pEnt->device->identifier=0xcf8900
    [ 1826.157] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
    [ 1826.157] (II) Loading sub module "vgahw"
    [ 1826.157] (II) LoadModule: "vgahw"
    [ 1826.157] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 1826.157] (II) Module vgahw: vendor="X.Org Foundation"
    [ 1826.157] compiled for 1.14.2, module version = 0.1.0
    [ 1826.157] ABI class: X.Org Video Driver, version 14.1
    [ 1826.158] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 1826.158] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 1826.158] (==) fglrx(0): Default visual is TrueColor
    [ 1826.158] (**) fglrx(0): Option "DPMS" "true"
    [ 1826.158] (==) fglrx(0): RGB weight 888
    [ 1826.158] (II) fglrx(0): Using 8 bits per RGB
    [ 1826.158] (==) fglrx(0): Buffer Tiling is ON
    [ 1826.158] (II) Loading sub module "fglrxdrm"
    [ 1826.158] (II) LoadModule: "fglrxdrm"
    [ 1826.158] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 1826.158] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 1826.158] compiled for 1.4.99.906, module version = 13.10.10
    [ 1826.161] ukiDynamicMajor: found major device number 250
    [ 1826.162] ukiDynamicMajor: found major device number 250
    [ 1826.162] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 1826.162] ukiOpenDevice: node name is /dev/ati/card0
    [ 1826.162] ukiOpenDevice: open result is 12, (OK)
    [ 1826.162] ukiOpenByBusid: ukiOpenMinor returns 12
    [ 1826.162] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 1826.162] (**) fglrx(0): NoAccel = NO
    [ 1826.162] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
    [ 1826.162] (--) fglrx(0): Chipset: "AMD Radeon HD 6530D" (Chipset = 0x964a)
    [ 1826.162] (--) fglrx(0): (PciSubVendor = 0x1565, PciSubDevice = 0x1707)
    [ 1826.162] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
    [ 1826.162] (--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
    [ 1826.162] (--) fglrx(0): MMIO registers at 0xfef00000
    [ 1826.162] (--) fglrx(0): I/O port at 0x0000f000
    [ 1826.162] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 1826.163] (II) fglrx(0): AC Adapter is used
    [ 1826.163] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
    [ 1826.163] (--) fglrx(0): Video RAM: 524288 kByte, Type: DDR3
    [ 1826.163] (II) fglrx(0): PCIE card detected
    [ 1826.163] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 1826.163] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 1826.163] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x20000000)
    [ 1826.163] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 1826.163] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 1826.163] (==) fglrx(0): Center Mode is disabled
    [ 1826.163] (II) Loading sub module "fb"
    [ 1826.163] (II) LoadModule: "fb"
    [ 1826.163] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1826.164] (II) Module fb: vendor="X.Org Foundation"
    [ 1826.164] compiled for 1.14.2, module version = 1.0.0
    [ 1826.164] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1826.164] (II) Loading sub module "ddc"
    [ 1826.164] (II) LoadModule: "ddc"
    [ 1826.164] (II) Module "ddc" already built-in
    [ 1826.293] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
    [ 1826.293] (II) fglrx(0): Output CRT1 has no monitor section
    [ 1826.293] (II) Loading sub module "ddc"
    [ 1826.293] (II) LoadModule: "ddc"
    [ 1826.293] (II) Module "ddc" already built-in
    [ 1826.293] (II) fglrx(0): Connected Display0: DFP1
    [ 1826.293] (II) fglrx(0): Display0: Failed to get EDID information.
    [ 1826.294] (II) fglrx(0): EDID for output DFP1
    [ 1826.294] (II) fglrx(0): Manufacturer: EXP Model: 901 Serial#: 1
    [ 1826.294] (II) fglrx(0): Year: 2004 Week: 0
    [ 1826.294] (II) fglrx(0): EDID Version: 1.3
    [ 1826.294] (II) fglrx(0): Digital Display Input
    [ 1826.294] (II) fglrx(0): Max Image Size [cm]: horiz.: 115 vert.: 65
    [ 1826.294] (II) fglrx(0): Gamma: 2.20
    [ 1826.294] (II) fglrx(0): DPMS capabilities: Off
    [ 1826.294] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 1826.294] (II) fglrx(0): First detailed timing is preferred mode
    [ 1826.294] (II) fglrx(0): redX: 0.618 redY: 0.351 greenX: 0.280 greenY: 0.605
    [ 1826.294] (II) fglrx(0): blueX: 0.152 blueY: 0.063 whiteX: 0.312 whiteY: 0.329
    [ 1826.294] (II) fglrx(0): Supported established timings:
    [ 1826.294] (II) fglrx(0): 640x480@60Hz
    [ 1826.294] (II) fglrx(0): 800x600@60Hz
    [ 1826.294] (II) fglrx(0): 1024x768@60Hz
    [ 1826.294] (II) fglrx(0): Manufacturer's mask: 0
    [ 1826.294] (II) fglrx(0): Supported detailed timing:
    [ 1826.294] (II) fglrx(0): clock: 74.2 MHz Image Size: 16 x 9 mm
    [ 1826.294] (II) fglrx(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 1826.294] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 1826.294] (II) fglrx(0): Supported detailed timing:
    [ 1826.294] (II) fglrx(0): clock: 27.0 MHz Image Size: 4 x 3 mm
    [ 1826.294] (II) fglrx(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 1826.294] (II) fglrx(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 1826.294] (II) fglrx(0): Monitor name: EP-HDMI-RX
    [ 1826.294] (II) fglrx(0): Ranges: V min: 59 V max: 61 Hz, H min: 15 H max: 46 kHz, PixClock max 85 MHz
    [ 1826.294] (II) fglrx(0): Supported detailed timing:
    [ 1826.294] (II) fglrx(0): clock: 74.2 MHz Image Size: 16 x 9 mm
    [ 1826.294] (II) fglrx(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 1826.294] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 1826.294] (II) fglrx(0): Supported detailed timing:
    [ 1826.294] (II) fglrx(0): clock: 74.2 MHz Image Size: 16 x 9 mm
    [ 1826.294] (II) fglrx(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 1826.294] (II) fglrx(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 1826.294] (II) fglrx(0): Supported detailed timing:
    [ 1826.294] (II) fglrx(0): clock: 74.2 MHz Image Size: 16 x 9 mm
    [ 1826.294] (II) fglrx(0): h_active: 1280 h_sync: 1720 h_sync_end 1760 h_blank_end 1980 h_border: 0
    [ 1826.294] (II) fglrx(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 1826.294] (II) fglrx(0): Supported detailed timing:
    [ 1826.294] (II) fglrx(0): clock: 74.2 MHz Image Size: 16 x 9 mm
    [ 1826.294] (II) fglrx(0): h_active: 1920 h_sync: 2448 h_sync_end 2492 h_blank_end 2640 h_border: 0
    [ 1826.294] (II) fglrx(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 1826.294] (II) fglrx(0): Number of EDID sections to follow: 1
    [ 1826.294] (II) fglrx(0): EDID (in hex):
    [ 1826.294] (II) fglrx(0): 00ffffffffffff001710010901000000
    [ 1826.294] (II) fglrx(0): 000e0103807341782a7c119e59479b27
    [ 1826.294] (II) fglrx(0): 10505421080001010101010101010101
    [ 1826.294] (II) fglrx(0): 010101010101011d007251d01e206e28
    [ 1826.294] (II) fglrx(0): 550010090000001e8c0ad08a20e02d10
    [ 1826.294] (II) fglrx(0): 103e9600040300000018000000fc0045
    [ 1826.294] (II) fglrx(0): 502d48444d492d52580a2020000000fd
    [ 1826.294] (II) fglrx(0): 003b3d0f2e08000a20202020202001ab
    [ 1826.294] (II) fglrx(0): EDID vendor "EXP", prod id 2305
    [ 1826.294] (II) fglrx(0): Using EDID range info for horizontal sync
    [ 1826.294] (II) fglrx(0): Using EDID range info for vertical refresh
    [ 1826.294] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 1826.294] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz eP)
    [ 1826.294] (II) fglrx(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 1826.294] (II) fglrx(0): Printing probed modes for output DFP1
    [ 1826.294] (II) fglrx(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz eP)
    [ 1826.294] (II) fglrx(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1920x1080"x59.9 148.35 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1920x1080"x60.0 74.25 1920 2008 2052 2200 1080 1085 1095 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1920x1080"x50.0 74.25 1920 2448 2492 2640 1080 1085 1095 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1920x1080"x59.9 74.18 1920 2008 2052 2200 1080 1085 1095 1125 interlace +hsync +vsync (33.7 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1776x1000"x59.9 148.35 1776 1864 1908 2200 1000 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
    [ 1826.294] (II) fglrx(0): Modeline "1776x1000"x50.0 74.25 1776 2304 2348 2640 1000 1005 1015 1125 interlace +hsync +vsync (28.1 kHz ez)
    [ 1826.294] (II) fglrx(0): Modeline "1776x1000"x59.9 74.18 1776 1864 1908 2200 1000 1005 1015 1125 interlace +hsync +vsync (33.7 kHz ez)
    [ 1826.294] (II) fglrx(0): Modeline "1680x1050"x60.0 148.50 1680 2008 2052 2200 1050 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1680x1050"x59.9 148.35 1680 2008 2052 2200 1050 1084 1089 1125 +hsync +vsync (67.4 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1400x1050"x60.0 148.50 1400 2008 2052 2200 1050 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1400x1050"x59.9 148.35 1400 2008 2052 2200 1050 1084 1089 1125 +hsync +vsync (67.4 kHz e)
    [ 1826.294] (II) fglrx(0): Modeline "1600x900"x59.9 148.35 1600 1864 1908 2200 900 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
    [ 1826.294] (II) fglrx(0): Modeline "1280x1024"x60.0 148.50 1280 2008 2052 2200 1024 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "1280x1024"x59.9 148.35 1280 2008 2052 2200 1024 1084 1089 1125 +hsync +vsync (67.4 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "1440x900"x59.9 148.35 1440 1864 1908 2200 900 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
    [ 1826.295] (II) fglrx(0): Modeline "1280x960"x59.9 148.35 1280 1864 1908 2200 960 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
    [ 1826.295] (II) fglrx(0): Modeline "1280x768"x59.9 148.35 1280 1864 1908 2200 768 1004 1009 1125 +hsync +vsync (67.4 kHz ez)
    [ 1826.295] (II) fglrx(0): Modeline "1280x720"x50.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "1280x720"x59.9 74.18 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "1152x648"x50.0 74.25 1152 1592 1632 1980 648 653 658 750 +hsync +vsync (37.5 kHz ez)
    [ 1826.295] (II) fglrx(0): Modeline "1152x648"x59.9 74.18 1152 1262 1302 1650 648 653 658 750 +hsync +vsync (45.0 kHz ez)
    [ 1826.295] (II) fglrx(0): Modeline "800x600"x50.0 74.25 800 1720 1760 1980 600 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "800x600"x60.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "720x480"x50.0 74.25 720 1720 1760 1980 480 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "720x480"x60.0 27.03 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "640x480"x50.0 74.25 640 1720 1760 1980 480 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1826.295] (II) fglrx(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1826.295] (II) fglrx(0): EDID for output CRT1
    [ 1826.295] (II) fglrx(0): Output DFP1 connected
    [ 1826.295] (II) fglrx(0): Output CRT1 disconnected
    [ 1826.295] (II) fglrx(0): Using exact sizes for initial modes
    [ 1826.295] (II) fglrx(0): Output DFP1 using initial mode 1280x720
    [ 1826.295] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1826.295] (II) fglrx(0): Display dimensions: (1150, 650) mm
    [ 1826.295] (II) fglrx(0): DPI set to (28, 28)
    [ 1826.295] (II) fglrx(0): Adapter AMD Radeon HD 6530D has 2 configurable heads and 1 displays connected.
    [ 1826.295] (==) fglrx(0): PseudoColor visuals disabled
    [ 1826.295] (II) Loading sub module "ramdac"
    [ 1826.295] (II) LoadModule: "ramdac"
    [ 1826.295] (II) Module "ramdac" already built-in
    [ 1826.295] (==) fglrx(0): NoDRI = NO
    [ 1826.295] (==) fglrx(0): Capabilities: 0x00000000
    [ 1826.295] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 1826.295] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 1826.295] (==) fglrx(0): UseFastTLS=0
    [ 1826.295] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
    [ 1826.295] (--) Depth 24 pixmap format is 32 bpp
    [ 1826.295] Loading extension ATIFGLRXDRI
    [ 1826.295] (II) fglrx(0): doing swlDriScreenInit
    [ 1826.295] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 1826.295] ukiDynamicMajor: found major device number 250
    [ 1826.295] ukiDynamicMajor: found major device number 250
    [ 1826.295] ukiDynamicMajor: found major device number 250
    [ 1826.295] ukiOpenByBusid: Searching for BusID PCI:0:1:0
    [ 1826.295] ukiOpenDevice: node name is /dev/ati/card0
    [ 1826.295] ukiOpenDevice: open result is 13, (OK)
    [ 1826.295] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 1826.295] ukiOpenByBusid: ukiGetBusid reports PCI:0:1:0
    [ 1826.295] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 1826.295] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:0:1:0"
    [ 1826.295] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x7a000
    [ 1826.295] (II) fglrx(0): [uki] mapped SAREA 0x7a000 to 0x7ff504c21000
    [ 1826.295] (II) fglrx(0): [uki] framebuffer handle = 0x7b000
    [ 1826.295] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 1826.295] (II) fglrx(0): swlDriScreenInit done
    [ 1826.295] (II) fglrx(0): Kernel Module Version Information:
    [ 1826.295] (II) fglrx(0): Name: fglrx
    [ 1826.295] (II) fglrx(0): Version: 13.10.10
    [ 1826.295] (II) fglrx(0): Date: May 23 2013
    [ 1826.295] (II) fglrx(0): Desc: AMD FireGL DRM kernel module
    [ 1826.296] (II) fglrx(0): Kernel Module version matches driver.
    [ 1826.296] (II) fglrx(0): Kernel Module Build Time Information:
    [ 1826.296] (II) fglrx(0): Build-Kernel UTS_RELEASE: 3.9.9-1-ARCH
    [ 1826.296] (II) fglrx(0): Build-Kernel MODVERSIONS: yes
    [ 1826.296] (II) fglrx(0): Build-Kernel __SMP__: yes
    [ 1826.296] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 1826.296] (II) fglrx(0): [uki] register handle = 0x0007c000
    [ 1826.296] (II) fglrx(0): DRI initialization successfull
    [ 1826.296] (II) fglrx(0): FBADPhys: 0xf00000000 FBMappedSize: 0x0102c000
    [ 1826.297] (==) fglrx(0): Backing store disabled
    [ 1826.297] Loading extension FGLRXEXTENSION
    [ 1826.297] (**) fglrx(0): DPMS enabled
    [ 1826.297] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 1826.297] (**) fglrx(0): Textured Video is enabled.
    [ 1826.297] (II) LoadModule: "glesx"
    [ 1826.297] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 1826.298] (II) Module glesx: vendor="X.Org Foundation"
    [ 1826.298] compiled for 1.4.99.906, module version = 1.0.0
    [ 1826.298] Loading extension GLESX
    [ 1826.298] (II) fglrx(0): GLESX enableFlags = 592
    [ 1826.298] (II) fglrx(0): GLESX is enabled
    [ 1826.298] (II) LoadModule: "amdxmm"
    [ 1826.298] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 1826.298] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 1826.298] compiled for 1.4.99.906, module version = 2.0.0
    [ 1826.324] Loading extension AMDXVOPL
    [ 1826.324] Loading extension AMDXVBA
    [ 1826.324] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
    [ 1826.326] (II) fglrx(0): Enable composite support successfully
    [ 1826.326] (WW) fglrx(0): Option "VendorName" is not used
    [ 1826.326] (WW) fglrx(0): Option "ModelName" is not used
    [ 1826.326] (II) fglrx(0): X context handle = 0x4
    [ 1826.326] (II) fglrx(0): [DRI] installation complete
    [ 1826.326] (==) fglrx(0): Silken mouse enabled
    [ 1826.326] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 1826.327] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    Last edited by EvanPurkhiser (2013-07-22 13:14:56)

    This was fixed by changing the "Pixel Format" in the catalyst control center to "RGB (Full RGB)".. Somehow it got changed to "YcBcr".
    I removed the /etc/ati/amdpcsdb file that the fglrx driver likes to put settings in and did a fresh reinstall of catalyst-test and everything looks good now. Really no idea how the pixel profile got changed. Also noticed that my resolution was much lower than it should have been (which for some reason doesn't affect XBMC which runs in native resolution no matter what?), but that was an easy fix of adding Mode "1920x1080" to my Display section in xorg.

  • [SOLVED] perl 5.16-2 breaks LWP

    ... or actually, some dependencies of LWP.
    I have some scripts that use LWP (perl-libwww) to process web pages (old school, I know, but I wrote them long ago).
    After running pacman -Syu yesterday I noticed that my scripts were generating 'Segmentation fault' messages.  After some digging, I ran perl interactively and entered several 'use' statements for each dependency. I found the perl module Encode::Locale is where the segfault seems to be happening, but CPAN shows that module last updated in February.  Digging further, HTTP::Message has the same issue (it's another dependency of LWP.
    I'm betting there are other perl modules involved as well, because another system that has a 2-day old Arch install showed the same symptoms, but LWP was not installed there.  I had to fix that one by rolling perl back to 5.14.
    Any clues, hints, fixes?
    Thanks in advance.
    Mike
    Last edited by mmoser (2012-06-08 17:11:47)

    Juster - Thanks in advance for your help
    the trace for Encode::Locale; goes like this:
    $ perl -d
    Loading DB routines from perl5db.pl version 1.37
    Editor support available.
    Enter h or 'h h' for help, or 'man perldebug' for more help.
    use Encode::Locale;
    Signal SEGV at /usr/lib/perl5/site_perl/Encode.pm line 10.
        require Encode.pm called at /usr/share/perl5/site_perl/Encode/Locale.pm line 13
        Encode::Locale::BEGIN() called at /usr/lib/perl5/site_perl/Encode.pm line 0
        eval {...} called at /usr/lib/perl5/site_perl/Encode.pm line 0
        require Encode/Locale.pm called at - line 1
        main::BEGIN() called at /usr/lib/perl5/site_perl/Encode.pm line 0
        eval {...} called at /usr/lib/perl5/site_perl/Encode.pm line 0
    Aborted
    And the load list looks like
    $ perl -E 'BEGIN { unshift @INC, sub { say $_[1] }} use Encode::Locale;'
    Encode/Locale.pm
    strict.pm
    base.pm
    vars.pm
    warnings/register.pm
    warnings.pm
    Exporter.pm
    Encode.pm
    XSLoader.pm
    Encode/Alias.pm
    bytes.pm
    Encode/Config.pm
    Encode/ConfigLocal.pm
    Encode/Encoding.pm
    I18N/Langinfo.pm
    Carp.pm
    (Please understand that I'm not trying to place blame anywhere, I just want to fix whatever broke. And it's probably upgrade I missed somewhere)
    Again, thanks in advance,
    Mike
    Last edited by mmoser (2012-06-08 01:05:14)

  • Behaviour for Calender in iOS 5 has changed - but rather irritating

    After upgrading to iOS 5 the behaviour in Calendar in iPhone has changed - and not to it's advantage. There are two issues, and they go like this:
    1.
    Before: When I moved an event in Calendar fra e.g. Nov. 2nd to Dec 2nd the Calender window stay positioned at the Nov 2nd I moved the event FROM.
    Now: In iOS5 you are now moved foreward TO the date Dec 2nd you move the event TO. From there I have to scroll back to the date Nov 2nd for further editing on that date. Rather irritating when you have for instance ten event you have to move to a date in the future.
    Is it possible to change these settings so you stay in the calendar at the date you started editing?
    I have not been able to find out how or if this is possible, but maybe someone knows?
    2.
    Before: When you wished to delete an event in the Calendar, the delete button was quite close to the top, and a light scroll made it visible.
    Now: In iOS5 there is now a rather big square for Notes at the bottom and before the delete button. So now you have to scroll two times instead of one. Time consuming when you use this often.
    Can this square with Notes be deleted somehow?
    Help would be much appreciated. Thank you.

    Strictly speaking, you are right to say that IMAP does not support Push (I think there is a P-IMAP protocol that does).
    But the feature (i.e. automatically downloading messages from the server as they arrive at the server) definitely exists, and it worked just fine before iOS5 (it still works in the mail on a mac I believe). Your IMAP mail server needs to support IDLE, but assuming that it does, you can receive mail the same way you would via push mail.
    But in answer to the OP's question, my understanding is that the latest version of iOS5 no longer supports the IDLE command (just like push, but calling it that apparently causes confusion for some) in IMAP. So until another update, I think we are stuck with fetching every 15 min.
    http://en.wikipedia.org/wiki/IMAP_IDLE

  • OSX Upgrade has screwed up my video input!!

    Hey guys,
    My issue is that Final Cut is not recognizing my Video FireWire input now that I have upgraded to Tiger (10.4.11). It recognizes the audio input from the cameras (I've been using more than one as long as I've had my macs with Panther).
    Final Cut is telling me that my Apple FireWire NTSC (720x480) video input is "missing."
    Also, when I go to "Log and Capture" and hit "Play," it plays the video on the camera and plays the audio, but the Log and Capture screen remains with the "Preview Disabled" message.
    I should note that I've gone through all the basics with my mac and with Final Cut including checking the cable, the cameras, refreshing in Final Cut, fiddling with my Final Cut preferences - and my machine is showing that it is indeed reading my cameras when I check the "firewire bus."
    I have deduced that this must be due to the upgrade because I'm having the same issue on 4 other eMacs in the classroom at the school where I teach, which I've also upgraded from Panther to Tiger. And everything worked fine before the upgrade (which is making me regret ever doing it!).
    Can anyone help??? This is extremely frustrating!! Thanks,
    Dan

    Daniel,
    As has been pointed out already, FCP 4.5 runs best with Panther and QT 6.5
    In a lab situation such as yours where reliability for teaching rather than access to the latest os widgets and waggles, I would think it's paramount to stick with a reliable combination of applications to operating systems.
    FCP4.5
    OS 10.3.9
    QT 6.5
    I am also mystified that many folks keep thinking FCP 4.5 can and should run properly with Tiger and especially Leopard and when it doesn't they show up here whining and blaming Apple (I'm not talking specifically about you). Amazing.
    Good luck,
    Zeb

  • Yoga 2 Pro, Windows 10 has screwed a lot of things up!

    I upgraded to Windows 10 a few days ago and noticed a lot of my drivers were screwed up. My trackpad wouldn't work very well, my brightness buttons on my keyboard don't work, and going into device manager shows that my video drivers aren't working properly. I've downloaded the Lenovo solution support center which wasn't able to update any of my drivers and I tried to manually update the drivers from this website by downloading and installing but nothing has worked. I'm at a loss of what to do. Any ideas?

    I upgraded to Windows 10 a few days ago and noticed a lot of my drivers were screwed up. My trackpad wouldn't work very well, my brightness buttons on my keyboard don't work, and going into device manager shows that my video drivers aren't working properly. I've downloaded the Lenovo solution support center which wasn't able to update any of my drivers and I tried to manually update the drivers from this website by downloading and installing but nothing has worked. I'm at a loss of what to do. Any ideas?

  • [SOLVED] Perl tainting check problem

    Hi,
    I'm having an issue using the perl date-manip libraries. To be precise Date::Manip::UnixDate doesn't seem to work.
    My system is x86_64 with latest -Syu
    $ perl -v
    This is perl 5, version 14, subversion 2 (v5.14.2) built for x86_64-linux-thread-multi
    $ perl -MDate::Manip -e 'print DateManipVersion()."\n";'
    6.30
    Libraries are installed...
    Now to the problem
    $ perl -w -MDate::Manip -e 'print DateManipVersion()."\n"; my $date = UnixDate("now", "%y"); print $date ."\n"'
    6.30
    12
    $ perl -wT -MDate::Manip -e 'print DateManipVersion()."\n"; my $date = UnixDate("now", "%y"); print $date ."\n"'
    Undefined subroutine &Date::Manip::UnixDate called at /home/saiko/test.pl line 5, <DATA> line 496.
    Apparently it works without the tainting check (-T).
    How come?
    What am I missing?
    Thanks
    Last edited by _saiko (2012-04-21 02:27:15)

    Solved...
    The error message was so misleading.
    In the end tried to use the -MDate::Manip::DM6 to define the exact location of the subroutine in question.
    Only then I got the familiar error:
    $ perl -wT -MDate::Manip::DM6 -e 'print DateManipVersion() . "\n";'
    Insecure $ENV{PATH} while running with -T switch at /usr/share/perl5/vendor_perl/Date/Manip/TZ.pm line 615, <DATA> line 429.
    Compilation failed in require, <DATA> line 429.
    BEGIN failed--compilation aborted, <DATA> line 429.
    This made me remember a similar thread: https://bbs.archlinux.org/viewtopic.php?id=91981
    Anyhow defining the /etc/timezone solves the problem.

  • FF4 has screwed up my fonts in FF36.16

    I downloaded and installed FF4. I did not like it so I reinstalled FF3.6.16. Now my fonts are all screwed up. Apparently the fonts from FF4 have not been replaced with the re-installation. What should I do? Is there a factory set of options I can put into place to fix this?
    Thank you
    Mike

    Since I did not have a backup of my Domain file (like many here I didn't even know where it was since iWeb always started up with it), it was a surprise to me when iWeb08 had to ask for it. My question is this.
    The files including photos on my website (iDisk) are still ok since they did not get updated before iWeb08 crashed. Only my Domain files are all screwed up. Can I somehow remove iWeb08 and reinstall the previous version of iWeb which worked fine, and use the iDisk files to recreate my HD Domain files??
    I really need help on this one. Has anyone done it?
    Thanks in advance.

  • [solved] LXTerminal has no prompt after update

    I’m running Arch linux on a Thinkpad T40 laptop with e17 as a desktop environment, but I use LXTerminal as a terminal emulator for now.
    Today I start LXTerminal, and it displays a cursor, but no prompt, and I cannot type anything in it. I do know that:
    it worked yesterday,
    Xterm still works,
    LXTerminal works if started as root from xterm (but not as a user),
    and I can su to my user account from this root terminal.
    The following packages have been upgraded between then and now, but none of them looks very promising to me:
    glibc
    binutils
    curl
    firefox
    gcc-libs
    gcc-fortran
    ghostscript
    girara-common
    girara-gtk2
    iputils
    linux
    logrotate
    mupdf
    run-parts
    syslog-ng
    valgrind
    vim-runtime
    vim
    zathura
    None of ~/.bashrc, ~/.bash_profile, or /etc/bash.bashrc has changed recently, but i can reproduce them below. /etc/bash.bashrc has my PS1 definition in it. I have been unable to find a config file for lxterminal itself.
    Help or advice would be greatly appreciated. Thank you.
    # ~/.bashrc
    # modified commands:
    alias diff='colordiff' #requires colordiff package
    alias grep='grep --color=auto'
    alias more='less'
    alias df='df -h'
    alias du='du -c -h'
    alias vi='vim'
    alias ping='ping -c 3'
    alias mkdir='mkdir -pv'
    # ls:
    alias ls='ls -hF --color=always'
    alias ll='ls -l'
    alias la='ls -A'
    # safety:
    alias chown='chown --preserve-root'
    alias chmod='chmod --preserve-root'
    alias chgrp='chgrp --preserve-root'
    alias rm='rm -Iv'
    alias ln='ln -i'
    alias cp='cp -iv'
    alias mv='mv -iv'
    # new things:
    alias up='cd ..'
    alias upp='cd ../..'
    alias uppp='cd ../../..'
    alias upppp='cd ../../../..'
    alias openports='netstat --all --numeric --programs --inet'
    alias size='du -hs'
    # for colored manpages:
    man () \
    env \
    LESS_TERMCAP_mb=$(printf "\e[1;37m") \
    LESS_TERMCAP_md=$(printf "\e[1;37m") \
    LESS_TERMCAP_me=$(printf "\e[0m") \
    LESS_TERMCAP_se=$(printf "\e[0m") \
    LESS_TERMCAP_so=$(printf "\e[1;47;30m") \
    LESS_TERMCAP_ue=$(printf "\e[0m") \
    LESS_TERMCAP_us=$(printf "\e[0;36m") \
    man "$@"
    # ignore duplicate and blank entries in history:
    export HISTCONTROL=ignoreboth
    # tab completion for sudo commands:
    complete -cf sudo
    # run skype in a sandbox:
    alias skype='xhost +SI:localuser:skype && su skype -c skype'
    # ~/.bash_profile
    [[ -f ~/.bashrc ]] && . ~/.bashrc
    # /etc/bash.bashrc
    # If not running interactively, don't do anything
    [[ $- != *i* ]] && return
    PS1='[\u@\h \W]\$ '
    PS2='> '
    PS3='> '
    PS4='+ '
    case ${TERM} in
    xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
    PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
    screen)
    PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033_%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
    esac
    [ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
    Last edited by iemcd (2013-08-19 22:13:58)

    karol wrote:The question is, why did you have dwvpts in your fstab in the first place?
    https://bbs.archlinux.org/viewtopic.php … 1#p1313371
    Like the thread you linked to says, it's always been there. I do have a pacnew file, but the formatting is the same and it's empty, so evidently I just kept using the one I had.
    Thanks though Jason, that does seem to have been the issue. And I'm glad to know I wasn't the only one caught off guard.
    I'm marking this solved now, thanks everyone.

  • How do I keep all my documents in iBooks that were purchased from on line store not at the iTunes Store. (Ver 7 has screwed up iBooks and it no longer works)

    I have hundreds of 3rd party purchased lists and legal documents I keep in Ibooks. Since upgrading to version
    7 iBooks only opens for a few seconds then closes any open document and kicks me all the way out of iBooks
    How do I keep these and reload ibooks ? I am 500 miles from my main PC and need thee forms now.

    The iPad is not new. It is almost 2 yrs old. Many of the documents are legal documents, legal journals text books etc that have a 30 day limit on downloads and that time period has expired. Your post suggested closing all applications and forcing a power down. That I have done several times. I have not restored the software as that would require deleting the contents. Not all the files are backed up and the ones that are, reside on my personal laptop that is states away and will be for at least a week and I need the data now.

Maybe you are looking for

  • Troubleshooting MacBook Pro to TV

    I've tried to connect my MacBook Pro to my (old) Sharp TV using a VGA cable and a VGA to mini display port adapter. Everything is connected properly however it doesn't work! When I connect and disconnect the cable from my laptop the screen briefly fl

  • Session-scope variable for JSP page used in a frame

    Hi, I don't know if there's a way to do this at the same time: (1)- assign session scope to a variable (in order to be able to retrieve recurrently the previous value each time the JSP is called); (2)- set its visibility in a way that it could be acc

  • Regarding sending a mail

    Hi, can any one help me out in sending a mail i have all the data in hand regarding the sales order i need to format all the data in the body of the mail how can i format the data on the body of the mail and wat function module i need to use to send

  • Make Keynote presentation Read Only?

    Is there anyway to make a keynote presentation where people are not able to edit it for presentations (hand them off)? I know you can makke a quicktime version of it but I was looking for a way to keep it in keynote. Thanks

  • Google aclk 1x1 "error"

    This seems to be a recent condition, but when selecting some (not all) links returned from a google search instead of the page being served I get a blank display and the tab shows "aclk 1x1 pixels" I've seen the same condition in Firefox. I've made s