[Arch64] coreutils-6.5-1 & 6.5-1.1 broke, wait

I'm seeing alot of arch64 users reporting trouble with the coreutils 6.5-1 and 6.5-1.1 packages. Namely with the loss of 'su' in 6.5-1 and segmentation faults with 'ls' in 6.5-1.1
DO NOT UPGRADE to these versions!
See here for latest information on the 6.5-1.1 version and ls issues:
http://bbs.archlinux.org/viewtopic.php?p=209774#209774
Thanks.

/bin/su is missing in arch64 pkg -1 but fixed in 1.1 version.
ls got unexpected broken in 6.5 coreutils package for both archs. we will soon test a patch: http://lists.gnu.org/archive/html/bug-c … 00153.html
changelog was short, maybe too short  :?

Similar Messages

  • [SOLVED] Intel 5300 wifi on new Arch64 install

    I just bought a new Sager NP9262 laptop (but not really... it's huge, heavy, and sports a quad-core Q9650 processor), and put 64-bit Arch on it.  I've managed to get everything set up on it except for the wireless chip, an intel 4965.  I've downloaded the correct firmware (iwlwifi-4965-ucode) and the kernel module exists, but there seems to be a more basic problem.  hwdetect --show-net doesn't list the card at all, and lspci -k gives a rather unhelpful line saying
    Network controller: Intel Corporation Device 4235
    and lists no kernel modules which could work with the device.  Ideas?
    Last edited by tavianator (2008-09-06 18:22:37)

    EDIT:  now uses 2.6.27-rc6, which I haven't tested.  For something I'm sure works on my laptop, set '_rc' to '-rc5' and '_git' to '-git9', and uncomment the various commented-out lines dealing with -git patches.
    Okay.  First start with everything from /var/abs/core/kernel26 in a separate directory.  Then, replace PKGBUILD with this
    PKGBUILD:
    # $Id: PKGBUILD 10337 2008-08-26 21:10:56Z tpowa $
    # Maintainer: Tobias Powalowski <[email protected]>
    # Maintainer: Thomas Baechler <[email protected]>
    pkgname=kernel26
    _basekernel=2.6.26
    pkgver=2.6.27
    pkgrel=1
    _rc=-rc6
    _git=
    pkgdesc="The Linux Kernel and modules"
    arch=(i686 x86_64)
    license=('GPL2')
    groups=('base')
    url="http://www.kernel.org"
    backup=(etc/mkinitcpio.d/${pkgname}.preset)
    depends=('coreutils' 'module-init-tools' 'mkinitcpio>=0.5.18')
    # pwc, ieee80211 and hostap-driver26 modules are included in kernel26 now
    # nforce package support was abandoned by nvidia, kernel modules should cover everything now.
    # kernel24 support is dropped since glibc24
    replaces=('kernel24' 'kernel24-scsi' 'kernel26-scsi'
    'alsa-driver' 'ieee80211' 'hostap-driver26'
    'pwc' 'nforce' 'squashfs' 'unionfs' 'ivtv'
    'zd1211' 'kvm-modules' 'iwlwifi' 'rt2x00-cvs')
    install=kernel26.install
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$_basekernel.tar.bz2
    http://kernel.org/pub/linux/kernel/v2.6/testing/patch-$pkgver$_rc.bz2
    # http://kernel.org/pub/linux/kernel/v2.6/snapshots/patch-$pkgver$_rc$_git.bz2
    # the main kernel config files
    config config.x86_64
    # standard config files for mkinitcpio ramdisk
    kernel26.preset)
    md5sums=('5169d01c405bc3f866c59338e217968c'
    'd3a173a00e15a6bf3c76068537a5c069'
    '4fd1071a8dc2ea993aed81d5920de18d'
    'd5ad1f296356d159a2616a49d98b3434'
    '25584700a0a679542929c4bed31433b6')
    build() {
    KARCH=x86
    cd $startdir/src/linux-$_basekernel
    # Add rc patches
    patch -Np1 -i $startdir/src/patch-${pkgver}${_rc} || return 1
    # patch -Np1 -i $startdir/src/patch-${pkgver}${_rc}${_git} || return 1
    if [ "$CARCH" = "x86_64" ]; then
    cat ../config.x86_64 >./.config
    else
    cat ../config >./.config
    fi
    # build the full kernel version to use in pathnames
    . ./.config
    ### next line is only needed for rc kernels
    #_kernver="2.6.25${CONFIG_LOCALVERSION}"
    _kernver="${pkgver}${_rc}${_git}${CONFIG_LOCALVERSION}"
    # load configuration
    yes "" | make config
    # build!
    # stop here
    # this is useful to configure the kernel
    #msg "Stopping build"
    #return 1
    make bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    cp System.map $startdir/pkg/boot/System.map26
    cp arch/$KARCH/boot/bzImage $startdir/pkg/boot/vmlinuz26
    install -D -m644 Makefile \
    $startdir/pkg/usr/src/linux-${_kernver}/Makefile
    install -D -m644 kernel/Makefile \
    $startdir/pkg/usr/src/linux-${_kernver}/kernel/Makefile
    install -D -m644 .config \
    $startdir/pkg/usr/src/linux-${_kernver}/.config
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include
    for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound video; do
    cp -a include/$i $startdir/pkg/usr/src/linux-${_kernver}/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers $startdir/pkg/usr/src/linux-${_kernver}
    cp -a scripts $startdir/pkg/usr/src/linux-${_kernver}
    # fix permissions on scripts dir
    chmod og-w -R $startdir/pkg/usr/src/linux-${_kernver}/scripts
    #mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/.tmp_versions
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/kernel
    cp arch/$KARCH/Makefile $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/
    if [ "$CARCH" = "i686" ]; then
    cp arch/$KARCH/Makefile_32.cpu $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/
    fi
    cp arch/$KARCH/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/kernel/
    # add headers for lirc package
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video
    cp drivers/media/video/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/
    for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102 usbvideo zc0301; do
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/$i
    cp -a drivers/media/video/$i/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/$i
    done
    # add dm headers
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/md
    cp drivers/md/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/md
    # add inotify.h
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include/linux
    cp include/linux/inotify.h $startdir/pkg/usr/src/linux-${_kernver}/include/linux/
    # add CLUSTERIP file for iptables
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/net/ipv4/netfilter/
    # add wireless headers
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/net/mac80211/
    cp net/mac80211/*.h $startdir/pkg/usr/src/linux-${_kernver}/net/mac80211/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/9912
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core
    cp drivers/media/dvb/dvb-core/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/11194
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include/config/dvb/
    cp include/config/dvb/*.h $startdir/pkg/usr/src/linux-${_kernver}/include/config/dvb/
    # add xfs and shmem for aufs building
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/fs/xfs
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/mm
    cp fs/xfs/xfs_sb.h $startdir/pkg/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h
    # add vmlinux
    cp vmlinux $startdir/pkg/usr/src/linux-${_kernver}
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
    cp $i $startdir/pkg/usr/src/linux-${_kernver}/$i
    done
    cd $startdir/pkg/usr/src/linux-${_kernver}/include && ln -s asm-$KARCH asm
    chown -R root.root $startdir/pkg/usr/src/linux-${_kernver}
    find $startdir/pkg/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
    cd $startdir/pkg/lib/modules/${_kernver} && \
    (rm -f source build; ln -sf ../../../usr/src/linux-${_kernver} build)
    # install fallback mkinitcpio.conf file and preset file for kernel
    install -m644 -D $startdir/src/${pkgname}.preset $startdir/pkg/etc/mkinitcpio.d/${pkgname}.preset || return 1
    # set correct depmod command for install
    sed -i -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" $startdir/kernel26.install
    echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${startdir}/pkg/etc/mkinitcpio.d/${pkgname}.kver
    # remove unneeded architectures
    rm -rf $startdir/pkg/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
    Then, edit the pkgbuild, and uncomment lines 62 and 63, right below "stop here / this is useful to configure the kernel."  Run makepkg, which will extract the sources, patch them, and stop.  Run:
    $ cd src/linux-2.6.26
    $ make menuconfig
    Go to Device Drivers ---> Network Device Support ---> Wireless LAN, and scroll down to "Intel Wireless WiFi Next Gen AGN."  Press 'm' to include this feature as a module.  Enable any subfeatures you want, by pressing 'y,' but be sure to enable "Intel Wireless WiFi 5000AGN."  Also, enable "Enable full debugging output in iwlagn driver," which is above "Intel Wireless WiFi AGN."  Exit menuconfig.  Run
    $ cd ../..
    $ cp src/linux-2.6.26/.config config
    or on Arch64, run
    $ cd ../..
    $ cp src/linux-2.6.26/.config config.x86_64
    Comment out the lines you uncommented in the PKGBUILD, run
    $ makepkg -g >> PKGBUILD
    $ rm -rf src # otherwise, it tries to patch an already patched kernel
    and finally, makepkg!
    Also, install the firmware:
    PKGBUILD:
    # $Id: PKGBUILD 4447 2008-07-07 12:06:04Z thomas $
    # Maintainer: Thomas Baechler <[email protected]>
    pkgname=iwlwifi-5000-ucode
    pkgver=5.4.A.11
    pkgrel=1
    pkgdesc="Intel wireless firmware for IPW5000 (iwlwifi driver)"
    arch=(i686 x86_64)
    url="http://intellinuxwireless.org/?p=iwlwifi"
    license=('custom')
    depends=()
    source=(http://intellinuxwireless.org/iwlwifi/downloads/$pkgname-$pkgver.tar.gz)
    md5sums=('748860c5079dde1a1313e72511b9322a')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    # Install firmware (ABI version 2, for future versions of iwl4965)
    install -D -m 644 iwlwifi-5000-1.ucode $startdir/pkg/lib/firmware/iwlwifi-5000-1.ucode || return 1
    # Install license
    install -D -m 644 LICENSE.iwlwifi-5000-ucode $startdir/pkg/usr/share/licenses/$pkgname/LICENSE || return 1
    Last edited by tavianator (2008-09-10 23:10:35)

  • How can I install fglrx driver on Arch64

    Hello!
    I have installed Arch64 but I've got a bit problem now. Fglrx drivers isn't going to work with my graphic card - Shapphire Radeon HD3650 (on Arch32 it worked). My xorg.conf file
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    # Files section. This allows default font and rgb paths to be set
    # Server flags section.
    # Input devices
    # Core keyboard's InputDevice section
    # Core Pointer's InputDevice section
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    # Device configured by xorgconfig:
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    Identifier "Simple Layout"
    Screen 0 "aticonfig-Screen[0]" 0 0
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    # FontPath "/usr/lib/X11/fonts/local/"
    # FontPath "/usr/lib/X11/fonts/misc/"
    # FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    # FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    # FontPath "/usr/lib/X11/fonts/75dpi/"
    # FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/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"
    # This loads the DBE extension module.
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    # This loads the font modules
    # Load "type1"
    # This loads the GLX module
    Load "dbe" # Double buffer extension
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    Load "freetype"
    # Load "xtt"
    Load "glx"
    # This loads the DRI module
    Load "dri"
    EndSection
    Section "InputDevice"
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "pl"
    EndSection
    Section "InputDevice"
    # Identifier and driver
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "IMPS/2" # IntelliMouse PS/2
    Option "Device" "/dev/input/mice"
    # Mouse-speed setting for PS/2 mouse.
    Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]"
    Driver "fglrx"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]"
    Device "aticonfig-Device[0]"
    Monitor "aticonfig-Monitor[0]"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Also when I use vesa drivers it work OK, but when I use fglrx logs are clean but I can see only black screen, sometimes with mouse cursor which isn't going to move - It is on the center of screen.
    (I apologize to my English. I hope you will understand me )

    You can try to put the following line in the 'Device' Section
    Option "ShadowFB"
    and create a the following somewhere in the file
    Section "ServerFlags"
    Option "AIGLX" "no"
    EndSection

  • Suspend to ram stopped working with Acer Aspire 5930G - Arch64

    Suspend to ram recently stopped working on my laptop running Arch64. When ever I press the suspend to ram button in kde4 simply nothing happens, no screen flashing or error messages of any kind. I tried to install the pm-utils package and run pm-suspend, but with the same result. The program just ran and nothing happened and no feedback, not even in dmesg.
    Here are the recent packages I've installed:
    [2009-05-20 00:53] synchronizing package lists
    [2009-05-20 00:53] starting full system upgrade
    [2009-05-20 00:54] upgraded cpio (2.9-4 -> 2.9-5)
    [2009-05-20 00:54] upgraded curl (7.19.4-1 -> 7.19.5-1)
    [2009-05-20 00:54] upgraded gconf (2.26.1-2 -> 2.26.2-1)
    [2009-05-20 00:54] upgraded glib2 (2.20.1-1 -> 2.20.2-1)
    [2009-05-20 00:54] upgraded gmp (4.3.0-1 -> 4.3.1-2)
    [2009-05-20 00:54] upgraded gsl (1.12-1 -> 1.12-2)
    [2009-05-20 00:54] upgraded gstreamer0.10 (0.10.22-1 -> 0.10.23-1)
    [2009-05-20 00:54] upgraded gstreamer0.10-base (0.10.22-1 -> 0.10.23-1)
    [2009-05-20 00:54] upgraded irssi (0.8.12-5 -> 0.8.13-1)
    [2009-05-20 00:54] upgraded libdrm (2.4.9-1 -> 2.4.11-1)
    [2009-05-20 00:54] upgraded libsndfile (1.0.19-1 -> 1.0.20-1)
    [2009-05-20 00:54] upgraded mesa (7.4.1-1 -> 7.4.2-1)
    [2009-05-20 00:54] upgraded netcfg (2.1.3-3 -> 2.2.0b1-1)
    [2009-05-20 00:54] upgraded poppler (0.10.6-1 -> 0.10.7-1)
    [2009-05-20 00:54] upgraded poppler-glib (0.10.6-1 -> 0.10.7-1)
    [2009-05-20 00:54] upgraded poppler-qt (0.10.6-1 -> 0.10.7-1)
    [2009-05-20 00:54] upgraded ppp (2.4.4-7 -> 2.4.4-8)
    [2009-05-20 00:54] upgraded psmisc (22.6-2.1 -> 22.7-1)
    [2009-05-20 00:54] upgraded pycairo (1.8.2-1 -> 1.8.4-1)
    [2009-05-20 00:54] upgraded subversion (1.6.2-1 -> 1.6.2-2)
    [2009-05-21 12:57] installed festival (1.96beta-2)
    [2009-05-21 13:01] installed festival-awb-arctic (1.0-1)
    [2009-05-21 13:03] removed festival-awb-arctic (1.0-1)
    [2009-05-21 13:03] removed festival (1.96beta-2)
    [2009-05-21 13:48] installed libmikmod (3.1.12-2)
    [2009-05-21 13:48] installed smpeg (0.4.4-5)
    [2009-05-21 13:48] installed sdl_mixer (1.2.8-3)
    [2009-05-21 13:48] installed ode (0.11-1)
    [2009-05-21 13:48] installed sdl_ttf (2.0.9-1)
    [2009-05-21 13:48] installed sdl_net (1.2.7-2)
    [2009-05-21 13:48] installed xmoto (0.5.1-2)
    Note, I tried to do a -Syu just now and got a new kernel, but it did not change anything.
    EDIT: I'm also currently running the nvidia 180.60 driver.
    Last edited by Avenger (2009-05-22 17:52:05)

    search the forums: http://bbs.archlinux.org/viewtopic.php?pid=556030
    in the future, i would definately use yaourt to upgrade since it displays better what is being updated and from where.
    edit: if pm-suspend fails, check its log (/var/log/pm-suspend.log)
    Last edited by eldragon (2009-05-22 18:16:08)

  • [BUG in coreutils-8.15] - Wierd 'du' behavior on my server ...

    Suddenly, today I needed to know what's the size of the backup tars from my linux-vserver based vps running fully up-to-date arch linux and I can't seem to find out why 'du' is acting like this.
    ┌─[23:39:09]-[root@stavrovski]-[~]
    └─› du -csxh /tmp/*
    6.8M /tmp/CI
    11M /tmp/CI_BEFORE_SED
    6.8M /tmp/CI_w-o_mce
    4.0K /tmp/cron.fAq4LB
    4.0K /tmp/cron.ppna3r
    4.0K /tmp/cron.R3GV1t
    4.0K /tmp/cron.xDo4yg
    4.0K /tmp/hsperfdata_root
    1.3M /tmp/knobs
    56M /tmp/packerbuild-0
    20K /tmp/packertmp-0
    8.0K /tmp/screens
    12K /tmp/test
    4.0K /tmp/yaourt-tmp-d
    4.0K /tmp/yaourt-tmp-root
    81M total
    ┌─[23:39:23]-[root@stavrovski]-[~]
    └─› du -csxh /media/tars/
    1.7G /media/tars/
    1.7G total
    ┌─[23:39:44]-[root@stavrovski]-[~]
    └─› du -csxh /media/tars/*
    0 total
    ┌─[23:39:48]-[root@stavrovski]-[~]
    └─› ls -1 /media/tars/|wc -l
    40
    So, there are not that much files for du to return total zero. And this only happens to be happening to the '/media/tars' directory. Really strange.
    ┌─[23:43:26]-[root@stavrovski]-[~]
    └─› du -csxh /media/*
    37M /media/backups
    4.6G /media/gentoo
    1.7G /media/tars
    6.3G total
    Can somebody tell what may be going on out here?
    Thanks
    EDIT: I ran 'strace' and got lines for each file within that directory that looks like this:
    fstatat64(AT_FDCWD, "/media/tars/root-archlinux_29_Feb_2012.tar.gz", {st_mode=S_IFREG|0644, st_size=11314753, ...}, AT_SYMLINK_NOFOLLOW) = 0
    Is something wrong on my end or what exactly that means? Google did not clarify this enough for me.
    EDIT: Edited the subject to be more relevant to the issue.
    Last edited by ViruSzZ (2012-03-09 01:24:30)

    Further investigation showed that this is not happening with coreutils-8.14-1. I have installed 8.15-1 by running Syu on 2012-02-25 and after downgrading it to 8.14 'du' is working as expected.
    ┌─[00:14:41]-[root@stavrovski]-[~]
    └─› du -csxh /media/tars/*
    1.1M /media/tars/etc-archlinux_01_Mar_2012.tar.gz
    1.1M /media/tars/etc-archlinux_02_Mar_2012.tar.gz
    1.1M /media/tars/etc-archlinux_03_Mar_2012.tar.gz
    1.2M /media/tars/etc-archlinux_04_Mar_2012.tar.gz
    1.2M /media/tars/etc-archlinux_05_Mar_2012.tar.gz
    1.2M /media/tars/etc-archlinux_06_Mar_2012.tar.gz
    1.2M /media/tars/etc-archlinux_07_Mar_2012.tar.gz
    992K /media/tars/etc-archlinux_27_Feb_2012.tar.gz
    1008K /media/tars/etc-archlinux_28_Feb_2012.tar.gz
    1.0M /media/tars/etc-archlinux_29_Feb_2012.tar.gz
    3.1M /media/tars/mysqlbackup_01_Mar_2012.tar.gz
    3.3M /media/tars/mysqlbackup_02_Mar_2012.tar.gz
    3.5M /media/tars/mysqlbackup_03_Mar_2012.tar.gz
    3.7M /media/tars/mysqlbackup_04_Mar_2012.tar.gz
    3.9M /media/tars/mysqlbackup_05_Mar_2012.tar.gz
    4.2M /media/tars/mysqlbackup_06_Mar_2012.tar.gz
    4.4M /media/tars/mysqlbackup_07_Mar_2012.tar.gz
    2.5M /media/tars/mysqlbackup_27_Feb_2012.tar.gz
    2.7M /media/tars/mysqlbackup_28_Feb_2012.tar.gz
    2.9M /media/tars/mysqlbackup_29_Feb_2012.tar.gz
    155M /media/tars/public_html_01_Mar_2012.tar.gz
    155M /media/tars/public_html_02_Mar_2012.tar.gz
    155M /media/tars/public_html_03_Mar_2012.tar.gz
    155M /media/tars/public_html_04_Mar_2012.tar.gz
    155M /media/tars/public_html_05_Mar_2012.tar.gz
    155M /media/tars/public_html_06_Mar_2012.tar.gz
    155M /media/tars/public_html_07_Mar_2012.tar.gz
    148M /media/tars/public_html_27_Feb_2012.tar.gz
    155M /media/tars/public_html_28_Feb_2012.tar.gz
    155M /media/tars/public_html_29_Feb_2012.tar.gz
    11M /media/tars/root-archlinux_01_Mar_2012.tar.gz
    11M /media/tars/root-archlinux_02_Mar_2012.tar.gz
    11M /media/tars/root-archlinux_03_Mar_2012.tar.gz
    11M /media/tars/root-archlinux_04_Mar_2012.tar.gz
    11M /media/tars/root-archlinux_05_Mar_2012.tar.gz
    11M /media/tars/root-archlinux_06_Mar_2012.tar.gz
    11M /media/tars/root-archlinux_07_Mar_2012.tar.gz
    11M /media/tars/root-archlinux_27_Feb_2012.tar.gz
    11M /media/tars/root-archlinux_28_Feb_2012.tar.gz
    11M /media/tars/root-archlinux_29_Feb_2012.tar.gz
    1.7G total
    and strace with codeutils-8.14-1 gives:
    fstatat64(AT_FDCWD, "/media/tars/root-archlinux_29_Feb_2012.tar.gz", {st_mode=S_IFREG|0644, st_size=11314753, ...}, AT_SYMLINK_NOFOLLOW) = 0
    write(1, "11M\t/media/tars/root-archlinux_2"..., 5011M /media/tars/root-archlinux_29_Feb_2012.tar.gz
    I don't know why is this happening though and 'stat /media/tars' shows that it's a simple directory with tarballs in it.
    ┌─[00:19:16]-[root@stavrovski]-[~]
    └─› stat /media/tars/
    File: `/media/tars/'
    Size: 4096 Blocks: 8 IO Block: 4096 directory
    Device: 807h/2055d Inode: 6668599 Links: 2
    Access: (0755/drwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
    is this a bug in coreutils-8.15-1 or my vps is buggy?
    Thanks

  • 4gb not showing up in Arch64

    Hi all.
    I finally installed Arch64 to take advantage of my 4gb of RAM and my Core 2 Duo. But I am having some problems. I don't think Arch sees all of it. It should not be a hardware problem because my BIOS correctly displays 4 gb. I left my 32-bit Arch on another partition and it actually sees more than Arch64.
    Here is my meminfo under Arch64
    $ cat /proc/meminfo
    MemTotal: 2996504 kB
    MemFree: 2856492 kB
    Buffers: 7852 kB
    Cached: 63932 kB
    SwapCached: 0 kB
    Active: 59900 kB
    Inactive: 51180 kB
    SwapTotal: 4249152 kB
    SwapFree: 4249152 kB
    Dirty: 220 kB
    Writeback: 0 kB
    AnonPages: 39476 kB
    Mapped: 19176 kB
    Slab: 11872 kB
    SReclaimable: 6888 kB
    SUnreclaim: 4984 kB
    PageTables: 2792 kB
    NFS_Unstable: 0 kB
    Bounce: 0 kB
    CommitLimit: 5747404 kB
    Committed_AS: 51408 kB
    VmallocTotal: 34359738367 kB
    VmallocUsed: 2260 kB
    VmallocChunk: 34359736099 kB
    And here is my meminfo under 32-bit arch
    $ cat /proc/meminfo
    MemTotal: 3115920 kB
    MemFree: 2951104 kB
    Buffers: 7640 kB
    Cached: 91980 kB
    SwapCached: 0 kB
    Active: 65716 kB
    Inactive: 71328 kB
    HighTotal: 2228032 kB
    HighFree: 2086300 kB
    LowTotal: 887888 kB
    LowFree: 864804 kB
    SwapTotal: 4249152 kB
    SwapFree: 4249152 kB
    Dirty: 228 kB
    Writeback: 0 kB
    AnonPages: 37276 kB
    Mapped: 22288 kB
    Slab: 8352 kB
    SReclaimable: 4420 kB
    SUnreclaim: 3932 kB
    PageTables: 988 kB
    NFS_Unstable: 0 kB
    Bounce: 0 kB
    CommitLimit: 5807112 kB
    Committed_AS: 88664 kB
    VmallocTotal: 116728 kB
    VmallocUsed: 45044 kB
    VmallocChunk: 66036 kB
    Just for kicks, I took out one stick and both Arch64 and 32-bit see the same 3 gb.
    Any ideas?

    Its an MSI P6N Platnium with an Nvidia 650i chipset.
    I looked through the dmesg and I found one line that seems to indicate the problem.
    WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 1024MB of RAM.
    So I guess this means I have to update the BIOS, according to this thread.
    http://www.hardforum.com/showthread.php?t=1164174
    I have never had to update a BIOS before, but all the how-to's require either a floppy drive, or a Windows installation, of which I have neither.  I could install XP in a pinch and run the BIOS update utility but I really don't want to have to do that.

  • How to make use of 32bit packages on Arch64

    Hello everyone, I recently installed arch 64bit which was not yet fully tweaked to suit my needs. 
    My 32bit version has some nice apps and I would like to know how to make use of them or even reuse them so that I won't download things anymore because I have a slow internet connection...:)
    Arch x86_64 / XFCE4
    Thanks in advance
    Last edited by kaola_linux (2008-12-09 15:24:36)

    kaola_linux wrote:
    Hello everyone, I recently installed arch 64bit which was not yet fully tweaked to suit my needs. 
    My 32bit version has some nice apps and I would like to know how to make use of them or even reuse them so that I won't download things anymore because I have a slow internet connection...:)
    Arch x86_64 / XFCE4
    Thanks in advance
    You can reuse the packages in /var/cache/pacman/pkg/ on your  Arch32.
    You can use these saved packages in a 32bit chroot ENV on your Arch64. Just pacman -U all of them.

  • SiS Mirage 3 671/771 - Can't make it work on Arch64...

    Hi folks! I'm new to the forum (first topic! yay! ) and also new to Arch Linux. I am a former Slack user, although I was using Kubuntu 9.10 till yesterday (shiped with my new notebook...).
    The thing is: I formated this notebook. Made a Dual Boot (Win + Arch). Installation worked just fine, i have a fully functional Arch environment. But the problem is about Xorg. The Videoboard is a SiS Mirage 3 671/771, so I installed xf86-driver-sis and xf86-driver-sisusb with Shaman (Chakra + tools are installed as well). But if I update my xorg.conf to use any of them, the X11 won't start, returning "No screens found" error. Using VESA, weird stuff happens... Strange artifacts on screen, "choppy" moving/resizing windows...
    Before formating the machine I checked Kubuntu's drivers and xorg.conf (made a copy of the last one), and Kubuntu was using "sis671" driver, and everything was working perfectly, including some (I repeat: SOME) of the Desktop Effects. Searching through the forum, I found two posts about this issue but nothing described there worked for me. Links for those posts:
    Sis graphics driver on linux?
    [Solved] Sis mirage3/sis 671
    This last one says [Solved], but i couldn't find clear instructions on how the author did it. Apparently, installing this url's drivers worked for a lot of people, but I can't manage to install/compile/use them.
    I'm using Arch64, for my computer is a Pentium DualCore T4300, 4Gb RAM, and ArchWiki says Arch32 doesn't support more than 3Gb RAM. Can this be the problem for me? Maybe the only people who actually installed the drivers from that URL are those using Arch32...
    I don't have to say everything works fine in Window$... crappy-SiS refuses to release a decent 3D driver for SiS Mirage on Linux, but work just fine with M$ OS. This annoys me...
    Afterall, is there anyone who can help me compiling/installing/making-work this crappy video-board? If I could make it work just like the default Kubuntu installation, it would be great!
    Sorry for the long (double)post and my awful english (I'm Brazilian),
    And thanks to all in advance.

    @mikkle, thank you so much! I followed the instructions to downgrade the xorg-server, installed the 64 bit driver and now it works perfectly! I have my resolution of 1280x800px and some of the desktop effects on KDE 4.3 (Chakra Project).
    Anyway, if anybody else goes through the same and would like to know how to proceed, I will describe the steps here. First, I upgraded the system:
    $ pacman -Syy
    $ pacman -Syu
    Then, after everything was done, I followed the instructions at the Arch Wiki: Downgrading Packages to downgrade xorg-server. Also did the trick to stop pacman from updating xorg-server.
    After the downgrade, I installed SiS drivers from this website (I used the one precompiled for Ubuntu 64 bits).
    Then I proceeded to reinstall Chakra project (uninstall it an install like described at Chakra`s website). About xorg.conf file, it is exactly as the one above, with the obvious difference to use "sis671" instead of "vesa" at the Driver field, looking like this:
    Section "Device"
    Identifier "Card0"
    Driver "sis671"
    All of those steps took me about a day or so to perform, but I would type one command and go out for a coffee, a smoke, some chating...... and come back after two, maybe three hours. I believe that with some more dedication (and a better internet connection) it can't take more than 8 hours.
    One last recommendation: if anyone will perform the same steps, make sure to read everything, downloading everything you believe will use, and really understanding the procedure before doing it! Seriously, I mean it! Understanding the procedure is the most important item here! Other than that, it is pointless to mess so much with your system, and in that case I would strongly recommend the use of Ubuntu (or anything alike...). Of course I had some other complications, it wasn't as simple as it sounds, but my knowledge of Linux was essential on solving it, knowledge that I acquired in years using Slackware (that has the same philosophy as Arch), reading tons of tutorials like those and really understanding all of them... The only reason I changed to Arch is Pacman (makes my life go faster)!
    Thanks again to everyone that helped! Can anyone add a [SOLVED] to the thread's title?!

  • Connection drops with arch64 and atheros wireless

    Hi, I've just installed arch64 on my desktop. I have a dlink dwa-556 wireless adapter, with atheros chipset. The card is seen correctly and has been configured. I started a kdemod install with pacman, went on for about an hour, and then it hung, the wireless connection dropped... I tried to start it up again, but only a reboot could help... now I started pacman again and after some minutes bang! connection dropped again...
    this is what iwconfig says
    wlan0 IEEE 802.11bgn ESSID:CUT
    Mode:Managed Frequency:2.432 GHz Access Point: Not Associated
    Tx-Power27dBm
    [cut]
    Link Quality:0 Signal level:0 Noise level:0
    [rest is all 0]
    iwlist says my router has a quality of 30-40/100 and a signal level of around -76dBm
    any help?
    edit: typo on title
    Last edited by sunriis (2009-02-19 18:45:04)

    I think I may be experiencing something similar. I'm also running Arch64 and have the exact same adapter (DWA-556) and every once in a while my wireless connection drops. It only happens once every few days or so, but whenever it happens on my system it seems to cause anything Xorg-related (mouse, keyboard, video) to respond slowly. If I move the mouse around it doesn't move smoothly - it kind of jerks and jumps around.
    Whenever the connection drops like this, I see the something like the following in /var/log/messages.log:
    Feb 16 17:07:26 blacktower dhcpcd[19326]: ath0: carrier lost
    The first couple of times this happened to me, I had to reboot to get the connection going again. I did find another way to get the connection working, though. What I did was unload the modules related to the wireless adapter, reload them, and then reconnect to the network. I wrote a quick shell script to do this for me, which looks like this:
    #!/bin/sh
    sudo rmmod ath_pci ath_rate_sample ath_hal
    sudo modprobe ath_pci
    sudo modprobe ath_hal
    sudo netcfg -d home
    sudo netcfg home
    I'm using the madwifi driver right now and as you can see, I use netcfg to connect to my wireless network here. I've tried the ath5k driver but I seem to have the same issue with that. I haven't really found a solution to this yet, but the workaround of removing the modules, reloading them, and then reconnecting has worked well enough so far. If I dig up anything else helpful on this, I'll be glad to post it here.

  • [SOLVED] Arch64, Opera and plugins library problem

    I have Arch64 with Opera 64-bit as default browser. I have succesfully installed 32-bit flashplugin and it works nicely. The only problem is that fonts cannot be read from the flash player context menu and Open File dialog opened from flash player. The problem is that flashplugin tries to load 64-bit GTK from /usr/lib/gtk-2.0/2.10.0/ and it fails. 32-bit version is installed and it's located in /opt/lib32/usr/lib/gtk-2.0/2.10.0/.
    Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so: wrong ELF class: ELFCLASS64
    Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so: wrong ELF class: ELFCLASS64
    Also I have library loading problem with totem-plugin. It cannot find libxul.so and libxpcom.so, but both library files are located in /usr/lib/xulrunner-1.9.0.1/. The plugin loads fine if I create links to both files in /usr/lib/. But that doesn't seem like right solution to me.
    $ ldd libtotem-mully-plugin.so
    libglib-2.0.so.0 => /usr/lib/libglib-2.0.so.0 (0x00007f94e19d9000)
    libtotem-plparser-mini.so.10 => /usr/lib/libtotem-plparser-mini.so.10 (0x00007f94e17d6000)
    libxul.so => not found
    libxpcom.so => not found
    libplds4.so => /usr/lib/libplds4.so (0x00007f94e15d2000)
    What would be a most elegant way of solving these two library loading problems?
    I think that symbolic links and moving files are not the most elegant way to solve the problem. Maybe some environment variable or some configuration setting would solve the problem (LDPATH comes to mind, but it seems that it doesn't work).
    EDIT: I wasn't sure in which section to post this question, so feel free to move it if necessary.
    Last edited by SnapShot (2008-09-12 02:50:01)

    I have solved my problem and I will post my solution because it can be usefull to others.
    First the problem with flashplugin and GTK library path. Opera uses operapluginwrapper scirpt to detect if the plugin is 32-bit or 64-bit and after detection it uses operapluiginwrapper-ia32-linux for 32-bit or operapluginwrapper-native for 64-bit plugins. operapluiginwrapper-ia32-linux loads the 32-bit flashplugin in my case which requires GTK, but it incorectly tries to load it form /usr/lib/gtk-2.0/ where 64-bit version of GTK resides.
    The solution is to set the GTK_PATH environment variable to point to /opt/lib32/usr/lib/gtk-2.0/ where 32-bit version resides. But if you set it globaly it will result in problems with other 64-bit applications. So the correct solution is to add following lines on the bottom of the operapluginwrapper script above the exec line:
    case "$wrapper" in
    *ia32*)
    export GTK_PATH="/opt/lib32/usr/lib/gtk-2.0"
    export PANGO_RC_FILE="/opt/lib32/config/pango/pangorc"
    esac
    In this way the 32-bit paths will be active only for operapluginwrapper-ia32-linux process.
    I have solved the other problem with totem-plugin requesting libxul.so and libxpcom.so, but the solution idoesn't matter because, although totem-plugin loads coreclty it doesn't work in opera. I have installed mplayer-plugin which works as it should. Also gecko-mediaplayer works correctly with opera, I have tested them both. Install one of the two plugins that work, and you will be fine.

  • Do I need glibc and coreutils in PKGBUILD depends?

    I'm submitting a package to the AUR and the only two packages it depends on are glibc and coreutils. The Arch wiki says (basically) not to include packages that are guaranteed to already be on everyone's system. Since both of those packages are essential packages and part of the base group, do I need to include them in the depends array of the PKGBUILD, or can I just leave it empty?
    PS: I apologize if this has been asked before, but I couldn't find anything specific when I searched for this.
    Last edited by lb.laboon (2015-02-14 16:57:22)

    Scimmia wrote:
    There's no official policy about including packages from the base group. Some packagers include them, others don't. Personally, I'm in the "include them" camp.
    Note that base-devel is only assumed at build time, not at run time.
    Allan wrote:Include them.  Although an Arch system without glibc has issues...
    Ok, based on both of your input and looking at other packages, I think I will include glibc but not coreutils. If I do 'pacman -Qi coreutils' on my system there's only 5 packages that list it as a dependency, as opposed to ~50 that list glibc. Plus, the only reason it needs coreutils is for cp and rm, and a system without those commands probably can't even run a package manager let alone install my package
    Thanks!

  • Wlan rtl8191se causes freeze on arch64

    Hello,
    i've got a new Toshiba L505-10j with realtek rtl8192se wlanadapter. There is no Linux-support for this one, so I had to install them by myself... I found drivers from realtek in a forum. They where on the official site only for a couple of days. I installed them with "make install". The interface was found after a reboot. After using Wlan-Connection a few seconds my system freezes. I tried networkmanager and wicd with the same effect. 
    I tried the same with GNU/Linux Mint(also x86_64) and I coud use my network without problems, so it should be a problem of arch/arch64.
    I've also tried ndiswrapper, but it only works with 32bit.
    uname -a
    Linux cyberwinnie 2.6.31-ARCH #1 SMP PREEMPT Tue Nov 10 19:01:40 CET 2009 x86_64 Intel(R) Core(TM)2 Duo CPU P7450 @ 2.13GHz GenuineIntel GNU/Linux
    /var/log/kernel.log
    ov 24 17:11:04 cyberwinnie kernel: pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Nov 24 17:11:07 cyberwinnie kernel: r8169: eth0: link down
    Nov 24 17:11:07 cyberwinnie kernel: ADDRCONF(NETDEV_UP): eth0: link is not ready
    Nov 24 17:11:07 cyberwinnie kernel: gen_RefreshLedState first init
    Nov 24 17:11:07 cyberwinnie kernel: =================> NIC version : C-cut
    Nov 24 17:11:07 cyberwinnie kernel: rtl819xSE 0000:14:00.0: firmware: requesting RTL8192SE/rtl8192sfw.bin
    Nov 24 17:11:07 cyberwinnie kernel: ===>rtl8192_SetWirelessMode(), wireless_mode:0x8, support_mode:0x16
    Nov 24 17:11:07 cyberwinnie kernel: <===rtl8192_SetWirelessMode(), wireless_mode:10, bEnableHT = 1
    Nov 24 17:11:07 cyberwinnie kernel: ===>ieee80211_start_scan_rsl()
    Nov 24 17:11:07 cyberwinnie kernel: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Nov 24 17:11:09 cyberwinnie kernel: ====================>haha:IPSEnter()
    Nov 24 17:11:09 cyberwinnie kernel: =========>NicIFDisableNIC()
    Nov 24 17:11:09 cyberwinnie kernel: PHY_SetRtl8192seRfHalt save BB/RF
    Nov 24 17:11:10 cyberwinnie kernel: r8169: eth0: link up
    Nov 24 17:11:10 cyberwinnie kernel: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    Nov 24 17:11:13 cyberwinnie kernel: =========>r8192_wx_set_scan(): IPSLeave
    Nov 24 17:11:13 cyberwinnie kernel: ===========>NicIFEnableNIC()
    Nov 24 17:11:13 cyberwinnie kernel: gen_RefreshLedState first init
    Nov 24 17:11:13 cyberwinnie kernel: =================> NIC version : C-cut
    Nov 24 17:11:13 cyberwinnie kernel: ===>rtl8192_SetWirelessMode(), wireless_mode:0x10, support_mode:0x16
    Nov 24 17:11:13 cyberwinnie kernel: <===rtl8192_SetWirelessMode(), wireless_mode:10, bEnableHT = 1
    Nov 24 17:11:17 cyberwinnie kernel: ====================>haha:IPSEnter()
    Nov 24 17:11:17 cyberwinnie kernel: =========>NicIFDisableNIC()
    Nov 24 17:11:17 cyberwinnie kernel: PHY_SetRtl8192seRfHalt save BB/RF
    Nov 24 17:11:21 cyberwinnie kernel: eth0: no IPv6 routers present
    Nov 24 17:11:22 cyberwinnie kernel: fuse init (API version 7.12)
    Nov 24 17:11:26 cyberwinnie kernel: =========>r8192_wx_set_scan(): IPSLeave
    Nov 24 17:11:26 cyberwinnie kernel: ===========>NicIFEnableNIC()
    Nov 24 17:11:26 cyberwinnie kernel: gen_RefreshLedState first init
    Nov 24 17:11:26 cyberwinnie kernel: =================> NIC version : C-cut
    Nov 24 17:11:27 cyberwinnie kernel: ===>rtl8192_SetWirelessMode(), wireless_mode:0x10, support_mode:0x16
    Nov 24 17:11:27 cyberwinnie kernel: <===rtl8192_SetWirelessMode(), wireless_mode:10, bEnableHT = 1
    Nov 24 17:11:28 cyberwinnie kernel: Linking with Canvas,channel:7, qos:1, myHT:1, networkHT:0, mode:6 cur_net.flags:0x40e
    Nov 24 17:11:28 cyberwinnie kernel: ===>ieee80211_associate_procedure_wq(), chan:7
    Nov 24 17:11:28 cyberwinnie kernel: ==========>HTSetConnectBwMode():pHTInfo->bCurBW40MHz:0
    Nov 24 17:11:28 cyberwinnie kernel: =================>ieee80211_authentication_req():auth->algorithm is 0
    Nov 24 17:11:28 cyberwinnie kernel: Linking with Canvas,channel:7, qos:1, myHT:1, networkHT:0, mode:6 cur_net.flags:0x40e
    Nov 24 17:11:28 cyberwinnie kernel: ===>ieee80211_associate_procedure_wq(), chan:7
    Nov 24 17:11:28 cyberwinnie kernel: ==========>HTSetConnectBwMode():pHTInfo->bCurBW40MHz:0
    Nov 24 17:11:28 cyberwinnie kernel: =================>ieee80211_authentication_req():auth->algorithm is 0
    Nov 24 17:11:28 cyberwinnie kernel: ===>rtl8192_SetWirelessMode(), wireless_mode:0x6, support_mode:0x16
    Nov 24 17:11:28 cyberwinnie kernel: <===rtl8192_SetWirelessMode(), wireless_mode:4, bEnableHT = 0
    Nov 24 17:11:28 cyberwinnie kernel: #################ieee80211_sta_send_associnfo(), assocreq_ies_len:57,assocresp_ies_len:42
    Nov 24 17:11:28 cyberwinnie kernel: ===>u4bAcParam:a425, ===>u4bAcParam:a449, ===>u4bAcParam:5e431c, ===>u4bAcParam:2f321c,
    Nov 24 17:11:28 cyberwinnie kernel: Associated successfully
    Nov 24 17:11:28 cyberwinnie kernel: ============>normal associate
    Nov 24 17:11:28 cyberwinnie kernel: Using G rates:108
    Nov 24 17:11:28 cyberwinnie kernel: Successfully associated, ht not enabled(0, 0)
    Nov 24 17:11:28 cyberwinnie kernel: ===========rtl8192se_update_ratr_table: ff5
    Nov 24 17:11:28 cyberwinnie kernel: ===>set to B/G mode
    Nov 24 17:11:28 cyberwinnie kernel: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    Nov 24 17:11:28 cyberwinnie kernel: EAPOL TranslateHeader(), pTcb->DataRate = 0x2
    Nov 24 17:11:28 cyberwinnie kernel: EAPOL TranslateHeader(), pTcb->DataRate = 0x2
    Nov 24 17:11:28 cyberwinnie kernel: alg name:TKIP
    Nov 24 17:11:28 cyberwinnie kernel: rtl819xSE:EnableHWSecurityConfig8192:, hwsec:1, pairwise_key:2, SECR_value:c
    Nov 24 17:11:28 cyberwinnie kernel:
    Nov 24 17:11:28 cyberwinnie kernel: rtl819xSE:====>to setKey(), dev:ffff88013c090000, EntryNo:4, KeyIndex:0, KeyType:2, MacAddr00:04:0e:db:8b:da
    Nov 24 17:11:28 cyberwinnie kernel:
    Nov 24 17:11:28 cyberwinnie kernel: rtl819xSE:=========>after set key, usconfig:8008
    Nov 24 17:11:28 cyberwinnie kernel:
    Nov 24 17:11:29 cyberwinnie kernel: ========>dm_check_edca_turbo():iot peer is unknown, bssid:00:04:0e:db:8b:da
    Nov 24 17:11:30 cyberwinnie kernel: alg name:TKIP
    Nov 24 17:11:30 cyberwinnie kernel: rtl819xSE:====>to setKey(), dev:ffff88013c090000, EntryNo:2, KeyIndex:2, KeyType:2, MacAddrff:ff:ff:ff:ff:ff
    Nov 24 17:11:30 cyberwinnie kernel:
    Nov 24 17:11:30 cyberwinnie kernel: rtl819xSE:=========>after set key, usconfig:800a
    Nov 24 17:11:30 cyberwinnie kernel:
    Nov 24 17:11:30 cyberwinnie kernel: EAPOL TranslateHeader(), pTcb->DataRate = 0x2
    Nov 24 17:11:30 cyberwinnie kernel: ===>DHCP Protocol start tx DHCP pkt src port:68, dest port:67!!
    Nov 24 17:11:39 cyberwinnie kernel: wlan0: no IPv6 routers present
    Nov 24 17:11:48 cyberwinnie kernel: rtl819xSE:==========>rtl8192_down()
    Nov 24 17:11:48 cyberwinnie kernel:
    Nov 24 17:11:48 cyberwinnie kernel: ################>notify_wx_assoc_event_rsl(): Tell user space disconnected
    Nov 24 17:11:48 cyberwinnie kernel: Save max pwr
    Nov 24 17:11:48 cyberwinnie kernel: rtl819xSE:<==========rtl8192_down()
    Nov 24 17:11:48 cyberwinnie kernel:
    Nov 24 17:11:48 cyberwinnie kernel: ============>r8192_wx_set_essid():driver is not up return
    Nov 24 17:15:17 cyberwinnie kernel: usb 2-2.4: new high speed USB device using ehci_hcd and address 5
    Nov 24 17:15:17 cyberwinnie kernel: usb 2-2.4: configuration #1 chosen from 1 choice
    Nov 24 17:15:17 cyberwinnie kernel: Initializing USB Mass Storage driver...
    Nov 24 17:15:17 cyberwinnie kernel: scsi6 : SCSI emulation for USB Mass Storage devices
    Nov 24 17:15:17 cyberwinnie kernel: usb-storage: device found at 5
    Nov 24 17:15:17 cyberwinnie kernel: usb-storage: waiting for device to settle before scanning
    Nov 24 17:15:17 cyberwinnie kernel: usbcore: registered new interface driver usb-storage
    Nov 24 17:15:17 cyberwinnie kernel: USB Mass Storage support registered.
    Nov 24 17:15:22 cyberwinnie kernel: scsi 6:0:0:0: Direct-Access TOSHIBA USB 3.5"-HDD 100 PQ: 0 ANSI: 2
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: Attached scsi generic sg2 type 0
    Nov 24 17:15:22 cyberwinnie kernel: usb-storage: device scan complete
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: [sdb] Write Protect is off
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: [sdb] Mode Sense: 38 00 00 00
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 24 17:15:22 cyberwinnie kernel: sdb: sdb1
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 24 17:15:22 cyberwinnie kernel: sd 6:0:0:0: [sdb] Attached SCSI disk
    rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="de_DE.utf8"
    HARDWARECLOCK="UTC"
    USEDIRECTISA="no"
    TIMEZONE="Europe/Berlin"
    KEYMAP="de-latin1"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=()
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="cyberwinnie"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng !network netfs crond alsa hal fam networkmanager gdm)

    I'm sorry, it works at all 32bit distros. It's just the 64x thing..., which doesn't work.

  • [solved] Missing 1G Memory, arch64. How to find back?

    It was a bios issue.
    After flashing the bios to 1.1o, free -m reports satisfactory 3879m memory
    the acer flashtool supports Vista and Dos.
    It seems a piece of common knowledge that Arch64 supports 4G + memory, and I have no doubt of that.
    But I still have 1G memory missing after switching to Arch64.
    Probably reserved for the video, which shares up to 1G mem? 
    The laptop is an acer aspire 5735, with 4G mem, and intel 4500MHD 
    Someone could do diagnosis for the machine?
    I've spent some time searching  without getting solid answers.
    Many thanks
    BIOS reports 4G
    [desper@T ~]$ free -m
    total used free shared buffers cached
    Mem: 2947 356 2591 0 40 131
    -/+ buffers/cache: 184 2762
    Swap: 2000 0 2000
    [desper@T ~]$ dmesg | grep memory
    Scanning 0 areas for low memory corruption
    init_memory_mapping: 0000000000000000-00000000bbc00000
    PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000
    PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    PM: Registered nosave memory: 00000000bb6a1000 - 00000000bb6a7000
    PM: Registered nosave memory: 00000000bb7bc000 - 00000000bb80f000
    PM: Registered nosave memory: 00000000bb908000 - 00000000bbb0f000
    PM: Registered nosave memory: 00000000bbb19000 - 00000000bbb1f000
    PM: Registered nosave memory: 00000000bbb64000 - 00000000bbb9f000
    PM: Registered nosave memory: 00000000bbbe2000 - 00000000bbbff000
    Freeing initrd memory: 783k freed
    Scanning for low memory corruption every 60 seconds
    Freeing unused kernel memory: 392k freed
    agpgart-intel 0000:00:00.0: detected 65532K stolen memory
    Last edited by desper (2009-04-10 16:02:35)

    Thanks a lot for the replies.
    fumbles wrote:Check your bios settings, something like "Remap memory over 4GB limit" - it will make more sense then that....
    The BIOS is quite primitive, i will check after this posting and report back
    It says the "extended memory"  is 4g, but unfortunately metions nothing about Remapping.
    bender02 wrote:Also you can see how much of VideoRAM is in use by looking at /var/log/Xorg.0.log and grepping for 'VideoRAM'.
    intel(0): VideoRam: 262144 KB
    It seems Video is normal, and the problem exists beyond the video memory reservation, if I understand the following line correctly 
    (II) intel(0): I830CheckAvailableMemory: 2927612 kB available
    by the way, Vista recognized full 4G mem. I have had a peek of the system info before I deleted the MS os.....
    Last edited by desper (2009-04-09 12:36:41)

  • Compiling libtorrent & rtorrent for arch64

    rtorrent is a pretty nice Ncurses BitTorrent client based on libTorrent.
    3 weeks ago, I built lib+rtorrent-0.6.3 from default aur PKGBUILD under arch64 and it is working fine.
    New version 0.6.4 PKGBUILD differs from previous as it gives specific CXXFLAGS options.
    Is there any need/interest to switch from "old" (below) to "new" CXXFLAGS style?
    build() {
    cd $startdir/src/$pkgname-$pkgver
    patch -p1 < ../rtorrent.patch
    CXXFLAGS="${CXXFLAGS} -fno-strength-reduce -fno-thread-jumps -fno-inline -fforce-addr"
    ./configure --prefix=/usr --disable-debug
    make || return 1
    make DESTDIR=$startdir/pkg install
    Or switch to new one which I think would be:
    if [ "$CARCH" == "x86_64" ]; then
    CXXFLAGS="-march=x86_64 -Os -pipe -fno-strength-reduce -fno-thread-jumps -fno-inline -fforce-addr"
    ./configure --prefix=/usr --disable-debug
    else
    CXXFLAGS="-march=i686 -Os -pipe -fno-strength-reduce -fno-thread-jumps -fno-inline -fforce-addr"
    ./configure --prefix=/usr --disable-debug
    fi

    Cerebral wrote:As for the arch= question, not a lot of package submitters/maintainers in the AUR have an x86_64 system, so they don't know whether or not it compiles on Arch64 - they can't put arch=(x86_64) unless they can verify it in some way.  Also, the arch= tag is fairly new, so I'd imagine some people don't even know it exists - in general they should be using it though.
    Oh that makes sense
    Haven't had any issue while running rtorrent's built with Arch64's makepkg.conf defaults flags (ok, with 'march=athlon64') as I still use ${CXXFLAGS} even on the latest 0.6.4 release. Maybe I'm lucky.
    In fact rtorrent on arch64 is slower to be responsive after it started than on arch i686 (where I use the community package i guess).
    Then after a minute it's fully functionnal, and's doing an amazing job here I dunno how to recognize "out-of-memory errors" unless they print something on the console.
    codemac : strange. I wouldn't worry if I was you. Some others linuxtracker registered users also use lib/rtorrent. But never one has had version up-to-date to Arch's
    :?  pliz excuse my poor English; it's getting pretty late here

  • Arch64 on my laptop

    I know this has been asked a million times else probably, but for a while now I've be considering trying Arch64. My laptop has one of the newer mobile sempron single cores that support x86_64. Some others have said that using it on the same laptop I have has improved compiz-fusion and some other programs, but they've been using the ubuntu 64bit. Is it really worth it? or are they just exaggerating? Most of the the posts I've seen on here say there is really no reason to change. Also, does catalyst work with x86_64?

    On the 32bit vs 64bit question:
    http://bbs.archlinux.org/viewtopic.php?id=44163
    http://bbs.archlinux.org/viewtopic.php?id=41490
    http://bbs.archlinux.org/viewtopic.php?id=41158
    http://bbs.archlinux.org/viewtopic.php?id=39616
    http://bbs.archlinux.org/viewtopic.php?id=38248
    http://bbs.archlinux.org/viewtopic.php?id=37211
    http://bbs.archlinux.org/viewtopic.php?id=34916
    There are many more, I just got tired of cut and pasting...
    As for your specific question about catalyst: I don't use ATI, but here is the link to the catalyst package from the x86_64 repo: ftp://ftp.archlinux.org/extra/os/x86_64 … pkg.tar.gz

Maybe you are looking for