[SOLVED] dkms think "make" fails despite that it exits successfully.

Greetings. I have a laptop with my own kernel module that I update every now and then.
So far I made it compile just fine.
Next I did create a PKGBUILD and a dkms config for it. It worked flawlessly as well, and it has been working for a while.
But recently, with the latest updates. dkms starts to spit out errors about my dkms package.
I go in and check what's up.
Now some strange things starts happening:
if I try to make dkms to update my module, it ends with an error:
Command:
sudo dkms install asus_oled-sg/r103 -k $(uname -r)
Output:
Kernel preparation unnecessary for this kernel. Skipping...
Building module:
cleaning build area....
make KERNELRELEASE=3.17.4-1-ARCH -C /var/lib/dkms/asus_oled-sg/r103/build/....
Error! Build of asus_oled-sg.ko failed for: 3.17.4-1-ARCH (x86_64)
Consult the make.log in the build directory
/var/lib/dkms/asus_oled-sg/r103/build/ for more information.
The content of /var/lib/dkms/asus_oled-sg/r103/build/make.log :
DKMS make.log for asus_oled-sg-r103 for kernel 3.17.4-1-ARCH (x86_64)
Sun 14 Dec 15:22:45 CET 2014
make: Entering directory '/var/lib/dkms/asus_oled-sg/r103/build'
make[1]: Entering directory '/usr/lib/modules/3.17.4-1-ARCH/build'
CC [M] /var/lib/dkms/asus_oled-sg/r103/build/asus_oled.o
In file included from include/linux/thread_info.h:11:0,
from ./arch/x86/include/asm/preempt.h:6,
from include/linux/preempt.h:18,
from include/linux/spinlock.h:50,
from include/linux/seqlock.h:35,
from include/linux/time.h:5,
from include/linux/stat.h:18,
from include/linux/module.h:10,
from /var/lib/dkms/asus_oled-sg/r103/build/asus_oled.c:39:
include/linux/bug.h:33:45: warning: initialization from incompatible pointer type
#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
^
include/linux/kernel.h:849:3: note: in expansion of macro ‘BUILD_BUG_ON_ZERO’
BUILD_BUG_ON_ZERO((perms) & 2) + \
^
include/linux/sysfs.h:75:12: note: in expansion of macro ‘VERIFY_OCTAL_PERMISSIONS’
.mode = VERIFY_OCTAL_PERMISSIONS(_mode) }, \
^
include/linux/device.h:426:46: note: in expansion of macro ‘__ATTR’
struct class_attribute class_attr_##_name = __ATTR(_name, _mode, _show, _store)
^
/var/lib/dkms/asus_oled-sg/r103/build/asus_oled.c:765:8: note: in expansion of macro ‘CLASS_ATTR’
static CLASS_ATTR(version, S_IRUGO, version_show, NULL);
^
include/linux/bug.h:33:45: warning: (near initialization for ‘class_attr_version.show’)
#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
^
include/linux/kernel.h:849:3: note: in expansion of macro ‘BUILD_BUG_ON_ZERO’
BUILD_BUG_ON_ZERO((perms) & 2) + \
^
include/linux/sysfs.h:75:12: note: in expansion of macro ‘VERIFY_OCTAL_PERMISSIONS’
.mode = VERIFY_OCTAL_PERMISSIONS(_mode) }, \
^
include/linux/device.h:426:46: note: in expansion of macro ‘__ATTR’
struct class_attribute class_attr_##_name = __ATTR(_name, _mode, _show, _store)
^
/var/lib/dkms/asus_oled-sg/r103/build/asus_oled.c:765:8: note: in expansion of macro ‘CLASS_ATTR’
static CLASS_ATTR(version, S_IRUGO, version_show, NULL);
^
In file included from include/linux/printk.h:5:0,
from include/linux/kernel.h:13,
from /var/lib/dkms/asus_oled-sg/r103/build/asus_oled.c:38:
/var/lib/dkms/asus_oled-sg/r103/build/asus_oled.c: In function ‘__inittest’:
include/linux/init.h:329:4: warning: return from incompatible pointer type
{ return initfn; } \
^
/var/lib/dkms/asus_oled-sg/r103/build/asus_oled.c:805:1: note: in expansion of macro ‘module_init’
module_init(asus_oled_init);
^
Building modules, stage 2.
MODPOST 1 modules
CC /var/lib/dkms/asus_oled-sg/r103/build/asus_oled.mod.o
LD [M] /var/lib/dkms/asus_oled-sg/r103/build/asus_oled.ko
make[1]: Leaving directory '/usr/lib/modules/3.17.4-1-ARCH/build'
make: Leaving directory '/var/lib/dkms/asus_oled-sg/r103/build'
So it contains a few notes and warnings, but it compiles just fine. It has generated a .ko file.
Yet dkms thinks "make" failed. Why?
If try this, it works:
cd /var/lib/dkms/asus_oled-sg/r103/build/
sudo make clean
sudo make
No errors, same set of notes and warnings. exit status 0, as it should be.
Then why do dkms think it has failed?
This is my dkms.conf file:
PACKAGE_NAME="@_PKGBASE@"
PACKAGE_VERSION="@PKGVER@"
MAKE[0]='make -C /var/lib/dkms/@_PKGBASE@/@PKGVER@/build/'
CLEAN='make -C /var/lib/dkms/@_PKGBASE@/@PKGVER@/build/ clean'
BUILT_MODULE_NAME[0]="@_PKGBASE@"
DEST_MODULE_LOCATION[0]="/extra"
AUTOINSTALL="yes"
Last edited by SysGhost (2014-12-15 10:05:47)

Well I finally solved it.
I had to make some adjustments in the given examples at https://wiki.archlinux.org/index.php/Dy … le_Support
Looks like I tried to overdo it. Old versions of PKGBUILD and dkms.conf that previously worked, led me astray.
This is how the files now look like: (slightly different from what the wiki page above gives. I had to make some adjustments.)
PKGBUILD:
_pkgbase=asus_oled
pkgname=asus_oled-dkms
pkgver=r103
pkgrel=6
pkgdesc="Driver for small OLED displays found in some older Asus laptops. Ugly-patched for >3.14 kernels."
url="http://lapsus.berlios.de/asus_oled.html"
arch=('x86_64' 'i686')
license=('GPL2')
depends=('dkms')
makedepends=('sed')
provides=("${_pkgbase}")
conflicts=("${_pkgbase}")
install="${pkgname}.install"
source=("${pkgname}.tar.gz"
"dkms.conf")
md5sums=('SKIP'
'SKIP')
build() {
cd "${_pkgbase}-${pkgver}"
make clean
make
rm modules.order
package() {
# Prepare Makeile
sed -i 's/depmod/\#depmod/g' "${_pkgbase}-${pkgver}"/Makefile
# Install
msg2 "Starting make install..."
make -C "${_pkgbase}-${pkgver}" PREFIX="${pkgdir}/usr" DESTDIR="${pkgdir}/usr" INSTALL_MOD_PATH="/usr/lib/modules/$(uname -r)/extra" install
# Copy dkms.conf
install -Dm644 dkms.conf "${pkgdir}"/usr/src/${_pkgbase}-${pkgver}/dkms.conf
# Set name and version
sed -e "s/@_PKGBASE@/${_pkgbase}/" \
-e "s/@PKGVER@/${pkgver}/" \
-i "${pkgdir}"/usr/src/${_pkgbase}-${pkgver}/dkms.conf
# Copy sources (including Makefile)
cp -r "${_pkgbase}-${pkgver}"/* "${pkgdir}"/usr/src/${_pkgbase}-${pkgver}/
dkms.conf:
PACKAGE_NAME="@_PKGBASE@"
PACKAGE_VERSION="@PKGVER@"
MAKE[0]='make'
CLEAN='make clean'
BUILT_MODULE_NAME[0]="@_PKGBASE@"
DEST_MODULE_LOCATION[0]="/extra"
AUTOINSTALL="yes"
asus_oled-dkms.install:
post_install() {
dkms install asus_oled/${1%%-*}
pre_upgrade() {
pre_remove ${2%%-*}
post_upgrade() {
post_install ${1%%-*}
pre_remove() {
dkms remove asus_oled/${1%%-*} --all
Seems this was more like a package problem than a problem with the kernel module itself, as I first thought. Hence the thread placement.
I am now marking this as solved.

Similar Messages

  • [SOLVED] Amarok 2 make fails

    Hi,
    I'm trying to install Amarok 2 via yaourt with this package: http://aur.archlinux.org/packages.php?ID=19633
    However, it fails with several errors.   I've done some searching, but I can't find any solution that's helpful to me/one I understand (still being new to Arch).
    Here is the output:
    ==> Building and installing package
    ==> Making package: amarok2 2.0-1 i686 (Fri Dec 12 18:54:45 EST 2008)
    ==> WARNING: Running makepkg as root...
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found amarok-2.0.tar.bz2 in build dir
    ==> Validating source files with md5sums...
    amarok-2.0.tar.bz2 ... Passed
    ==> Extracting Sources...
    -> bsdtar -x -f amarok-2.0.tar.bz2
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    -- Found Qt-Version 4.4.3 (using /usr/bin/qmake)
    -- Found X11: /usr/lib/libX11.so
    -- Found Threads: TRUE
    -- Found Automoc4: /usr/bin/automoc4
    -- Found Perl: /usr/bin/perl
    -- Found KDE 4.1 include dir: /usr/include
    -- Found KDE 4.1 library dir: /usr/lib
    -- Found KDE4 kconfig_compiler preprocessor: /usr/bin/kconfig_compiler
    -- Found automoc4: /usr/bin/automoc4
    Qt QTNSPLUGIN library not found.
    -- Found taglib: -L/usr/lib -ltag
    -- Taglib found: -L/usr/lib -ltag
    -- Found Strigi
    -- Found Strigi: /usr/lib/libstreams.so
    -- Strigi API is pre-screwup check, need 'char'
    -- Found MySQL: /usr/include/mysql, /usr/lib/libmysqlclient.so
    -- Found MySQL Embedded: /usr/include/mysql, /usr/lib/mysql/libmysqld.a
    -- Found GLIB2: /usr/lib/libglib-2.0.so
    -- KDE CMake PKGCONFIG macro indicates that libgpod-1.0 is not installed on your computer.
    -- Install the package which contains libgpod-1.0.pc if you want to support this feature.
    -- Could not find OPTIONAL package Ipod
    -- Found MP4V2: /usr/lib/libmp4v2.so
    -- Found MTP but version requirements not met
    -- Found CURL: /usr/lib/libcurl.so
    -- Libgcrypt found: /usr/lib/libgcrypt.so
    -- Found GObject libraries: /usr/lib/libgobject-2.0.so;/usr/lib/libgmodule-2.0.so;/usr/lib/libgthread-2.0.so;/usr/lib/libglib-2.0.so
    -- Found GObject includes : /usr/include/glib-2.0/gobject
    -- KDE CMake PKGCONFIG macro indicates that loudmouth-1.0 is not installed on your computer.
    -- Install the package which contains loudmouth-1.0.pc if you want to support this feature.
    -- Could not find OPTIONAL package Loudmouth
    -- Found Soprano: /usr/lib/libsoprano.so
    -- Found Soprano includes: /usr/include
    -- Found Soprano Index: /usr/lib/libsopranoindex.so
    -- Found Soprano Client: /usr/lib/libsopranoclient.so
    -- KDE CMake PKGCONFIG macro indicates that libgpod-1.0 is not installed on your computer.
    -- Install the package which contains libgpod-1.0.pc if you want to support this feature.
    -- Could not find OPTIONAL package Ipod
    -- The following external packages were located on your system.
    -- This installation will have the extra features provided by these packages.
    + kdelibs
    + taglib
    + strigi
    + mysqld
    + zlib
    + glib2
    + Gdk
    + libmp4v2
    + curl
    + libxml2
    + openssl or libgcrypt
    + gobject
    + soprano
    + nepomuk
    + Qt4 Glib support
    -- The following OPTIONAL packages could NOT be located on your system.
    -- Consider installing them to enable more features from this software.
    + libgpod, 0.6.0: Support Apple iPod audio devices <http://sourceforge.net/projects/gtkpod/>
    + libmtp, 0.3.0: Enable Support for portable media devices that use the media transfer protocol <http://libmtp.sourceforge.net/>
    + loudmouth: Loudmouth is the communication backend needed by mp3tunes for synching. <http://www.loudmouth-project.org>
    -- Configuring done
    CMake Warning at /usr/share/apps/cmake/modules/KDE4Macros.cmake:560 (add_library):
    Cannot generate a safe linker search path for target
    amarok_collection-sqlcollection because files in some directories may
    conflict with libraries in implicit directories:
    link library [libmysqlclient.so] in /usr/lib may be hidden by files in:
    /usr/lib/mysql
    Some of these libraries may not be found correctly.
    Call Stack (most recent call first):
    src/collection/sqlcollection/CMakeLists.txt:50 (kde4_add_plugin)
    -- Generating done
    -- Build files have been written to: /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0
    [ 4%] Built target generator
    [ 11%] Built target qtscript_core
    [ 49%] Built target qtscript_gui
    [ 53%] Built target qtscript_network
    [ 54%] Built target qtscript_sql
    [ 54%] Built target qtscript_uitools
    [ 57%] Built target qtscript_xml
    [ 59%] Built target amarok_taglib
    [ 64%] Built target amarokplasma
    [ 64%] Built target amarokpud
    [ 83%] Built target amaroklib
    [ 83%] Built target amarok
    [ 84%] Built target amarok_afttagger
    [ 84%] Built target amarok_collection-daapcollection
    [ 84%] Building CXX object src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/amarok_collection-mtpcollection_automoc.o
    In file included from /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/moc_MtpHandler.cpp:10,
    from /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/amarok_collection-mtpcollection_automoc.cpp:4:
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:68: error: 'LIBMTP_raw_device_t' has not been declared
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:160: error: 'LIBMTP_raw_device_t' has not been declared
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:171: error: ISO C++ forbids declaration of 'LIBMTP_raw_device_t' with no type
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:171: error: expected ';' before '*' token
    make[2]: *** [src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/amarok_collection-mtpcollection_automoc.o] Error 1
    make[1]: *** [src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build amarok2 package.
    Does anyone know how I can fix this?   I suppose waiting for Amarok 2 to arrive in the main repos is the best solution, but I don't know when that will happen.
    Last edited by vertimyst (2008-12-13 01:41:20)

    FrozenFox wrote:
    EDIT: Curse you, slammer. Beat me to it
    The "mtpcollection" in the error line and this earlier note in the program:
    " Found MTP but version requirements not met  "
    Give me the impression that it may be because of an outdated libmtp. Try pacman -Rd libmtp and install libmtp-devel from AUR, perhaps?
    I didn't see that bit, actually.   If I had maybe I would have thought of the solution myself.
    But thanks guys, it worked. ^_^
    Any idea as to when we'll get a package in the repos?

  • [SOLVED] make fails but makepkg works fine (when building zathura git)

    Hello,
    when I build the "zathura-girara-git" AUR package with makepkg everything works fine, but if I try to build zathura after cloning the git repo make fails with some errors.
    make output from makepkg:
    zathura build options:
    CFLAGS = -march=native -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -std=c99 -pedantic -Wall -Wno-format-zero-length -Wextra -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14
    LIBS = -lgirara-gtk2 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -ldl -lpthread -lm
    DFLAGS = -g
    CC commands.c
    CC = cc
    CC document.c
    CC render.c
    CC zathura.c
    CC completion.c
    CC bookmarks.c
    CC utils.c
    CC shortcuts.c
    CC config.c
    CC callbacks.c
    CC print.c
    CC database-plain.c
    CC -o zathura
    installing executable file
    installing header files
    installing manual pages
    which: no rst2man in (/usr/lib/ccache/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/local/bin/:/home/bexie/bin)
    installing desktop file
    installing pkgconfig file
    make output:
    zathura build options:
    CFLAGS = -std=c99 -pedantic -Wall -Wno-format-zero-length -Wextra -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14
    LIBS = -lgirara-gtk2 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lsqlite3 -ldl -lpthread -lm
    DFLAGS = -g
    CC = cc
    CC commands.c
    In file included from commands.c:3:0:
    commands.h:7:20: fatal error: girara.h: No such file or directory
    compilation terminated.
    make: *** [commands.o] Error 1
    I tried exporting the enviroment variables from /etc/makepkg.conf, to no avail. I also tried adding the girara include files to CFLAGS, but it throws the same kind of error about some gtk dependency.
    I don't know if this is a general issue, but as I can compile it through makepkg I don't think this is due to zathura.
    Does anyone have a clue on what could be wrong here?
    Last edited by donbex (2012-01-22 12:56:59)

    In the PKGBUILD, they are cloning the repo by doing :
    _gitroot="git://pwmt.org/zathura.git"
    _gitname="zathura"
    git clone $_gitroot
    cd $_gitname && git checkout --track -b develop origin/develop
    Are you doing the same ?

  • SAVE  FAILED. You don't have permission to make changes on that file.

    I have copied the domain file from one machine to edit the website from another machine. The editing job can be done without hassle. When I try to publish the we site from the machine where I have imported the domain file appear the message:
    SAVE FAILED. You don't have permission to make changes on that file.
    What's wrong ??
    After 2 minutes appears another window: Your domain has been published...

    And how did you copy it over?
    Depending on how the file was brought over, it may still have permissions set from the prior volume (I had this problem with iPhoto libraries). It's able to create the web content from the live document, but unable to save the changes to the domain.sites file.
    You can try running "repair permissions" with Disk Utility in your Utilities folder to see if that helps.

  • Hello-- I'am thinking off making an app to the iphone, but i'am not sure aboutsomething. the app should get some alarms from a specific phone number, and my question is, can i make an app that can receive message from a specific phone number ?

    Hello-- I'am thinking off making an app to the iphone, but i'am not sure aboutsomething. the app should get some alarms from a specific phone number, and my question is, can i make an app that can receive message from a specific phone number ?

    This needs to be asked at http://developer.apple.com/

  • Make failed with ld error... [SOLVED]

    hello!
    I try to upgrade kchmviewer to version 1.3, but make failed with ld error:
    /usr/bin/ld: cannot find -lXext
    collect2: ld returned 1 exit status
    But libXext.so is here!
    $ locate Xext
    /usr/X11R6/lib/libXext.so
    /usr/X11R6/lib/libXext.so.6.4
    /usr/X11R6/lib/libXext.a
    /usr/X11R6/lib/libXext.so.6
    /usr/X11R6/include/X11/extensions/panoramiXext.h
    /usr/X11R6/include/X11/extensions/Xext.h
    $ cat /etc/ld.so.conf
    # /etc/ld.so.conf
    /usr/X11R6/lib
    /opt/gnome/lib
    /opt/qt/lib
    /opt/xfce4/lib
    #/usr/lib/oracle/10.1.0.2/client/lib
    /opt/mono/lib
    /opt/mozilla/lib/firefox
    So I'm alittle confused... Why ld can't find it?

    Thanks a lot guys!
    You helps me to find some way! I danced a newby jig around Makefile and now kchmviewer updated.
    /* Hope, PKGBUILD is alright */

  • HP deskjet 3520 ink cartridge problem...​Can anyone suggest another make of printer that is not HP?

    Hello...I have yet to receive an answer that resolves the problem. I regret buying the printer because now it doesn't work. The error message remains despite taking advice how to fix it. 
    We only use the black cartridge.
    Can anyone suggest another make of printer that is not HP?
    Thanks in advance. I am in the UK and need to print urgently.
    This question was solved.
    View Solution.

    Hello...problem resolved...many thanks.

  • Yosemite will not upload on my MacPro, says I have to verify or repair, but when I do - it fails on that too. Am now stuck with a computer that doesn't work ! Have I lost everything ?

    Yosemite will not upload on my MacPro, says I have to verify or repair, but when I do - it fails on that too. Am now stuck with a computer that doesn't work ! Have I lost everything ?

    Hello BassoonPlayer,
    Since you are using one of the the school's Macbooks, it is quite possible that the time and date are not properly set on the computer that you are using.  FaceTime will not work if you do not have the proper time zone set up for the location that you are in.  This past week, there were a two other Macbook users I've helped by simply telling them to set the Date/Time properly.  By the way, you described your problem very well, which makes it easier for us to help you.  Hope this solves your problem -- if not, post back and I can suggest other remedies.
    Wuz

  • Adobe PDF Maker has detected that document is protected. Could not create PDF using Pro

    Hi All,
    I am new to this forum and have just started recently using Adobe Pro to  convert huge number of Microsoft Office documents into PDF.
    I get this error when I am batch Processing.
    Adobe PDF Maker has detected that the Document is Protected. It will be unable to create Tags,links and notes with protection on. Do you wish to continue and create PDF without Tags.
    I click Yes , but still I do not see the PDFs created.
    By the way where do i look for the failed documents . Is there any log file. Just to scroll down at the end of batch processing is time consuming.
    Thanks for all your input.

    There is typically a log file produced and located in the folder with the file I think (I don't run into the errors much and so do not look for the files). It is also possible you have turned off retaining the file.

  • Make failed while deploying loan flow

    Hi,
    when I try to deploy my loan flow sample through Jdeveloper to oracle bpel process manager 10.1.3.1.0
    I am getting the following
    "Beginning Deployment Process...
    Compiling...
    [6:54:51 PM] Compilation complete: 0 errors, 1 warnings.
    Deploying to http://localhost:9700 domain: default. Please wait....[6:54:51 PM] Deployment failed.
    Make failed, so nothing to deploy."
    I will glad if some one could help me out.
    Thanks
    -Sagar

    Thanks for the reply.. I restarted and tried next day without making any changes. It deployed succesfully. Probably a rare bug.
    I am not using SOA suite. I am using oracle bpel process manager 10.1.3.1.0 alone. Here I think the default is 9700. I checked out http.port= 9700.
    And one more thing is bpel server integration status is shown to be ok with 9700 but ESB status is failed. Am I right in assuming that there is no ESB service in oracle bpel process manager 10.1.3.1.0 alone?. I think it is present only in the SOA suite.

  • [SOLVED] startx and xinit fail on eeepc901 (possibly after upgrade)

    Dear all,
    Can't get X to start.
    After a system upgrade (was a messy one, I'm pretty sure this is not a bug) I must have deleted some very important file for X. The fact is that it has stopped working, startx fails, xinit fail, even Xorg -configure fails. Please also note that I've changed the kernel (from zeneee to stock) but I had the same behavior with the previous kernel.
    Possibly interesting outputs:
    $xinit
    giving up.
    xinit: No such file or directory (errno 2): unable to connect to X server
    xinit: No such process (errno 3): Server error.
    $startx
    xauth: creating new authority file /home/mgp/.serverauth.4397
    giving up.
    xinit: No such file or directory (errno 2): unable to connect to X server
    xinit: No such process (errno 3): Server error.
    It does create the authority file. Fails after that.
    #Xorg -configure
    Segmentation fault
    My xorg.conf file is as follows (although I have tried without one and have the same errors, so probably not related):
    Section "ServerLayout"
    Identifier "Arch Linux"
    Screen 0 "Screen0"
    InputDevice "keyboard"
    InputDevice "mouse"
    InputDevice "synaptics"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "GLcore"
    Load "glx"
    Load "record"
    Load "dri"
    Load "extmod"
    Load "xtrap"
    Load "dbe"
    Load "freetype"
    Load "synaptics"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail"
    Option "BlankTime" "5"
    Option "AIGLX" "false"
    Option "AutoAddDevices" "false"
    EndSection
    Section "InputDevice"
    Identifier "keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "IMPS/2"
    Option "Emulate3Buttons" "yes"
    Option "ZAxisMapping" "4 5"
    Option "CorePointer"
    EndSection
    Section "InputDevice"
    Identifier "synaptics"
    Driver "synaptics"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "PalmDetect" "0"
    Option "SHMConfig" "true"
    Option "SendCoreEvents" "yes"
    Option "RBCornerButton" "0"
    Option "RTCornerButtom" "0"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    Option "AccelFactor" "0.0320"
    Option "MaxSpeed" "0.72"
    Option "MinSpeed" "0.6"
    Option "Emulate3Buttons" "true"
    Option "TouchPadOff" "0"
    Option "LBCornerButton" "2"
    Option "LeftEdge" "60"
    Option "RightEdge" "1070"
    Option "TopEdge" "90"
    Option "BottomEdge" "680"
    Option "VertTwoFingerScroll" "1"
    Option "HorizTwoFingerScroll" "1"
    Option "HorizScrollDelta" "20"
    Option "LockedDrags" "1"
    Option "CoastingSpeed" "0.13"
    Option "CircularScrolling" "1"
    Option "CircScrollTrigger" "8" # 8=Top Left Corner
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "ASUS"
    ModelName "eeePC 901"
    Modeline "1024x600" 48.96 1024 1064 1168 1312 600 601 604 622 -HSync +VSync # 60 Hz
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 915GM/GMS/910GML Express Graphics Controller"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "EXA"
    Option "MigrationHeuristic" "greedy"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    If it means anything to anyone, I have the strace output to xinit and startx but can't post them both due to the limit on the length of the post. Here is the xinit strace output:
    4173 execve("/usr/bin/xinit", ["xinit"], [/* 33 vars */]) = 0
    4173 brk(0) = 0x9264000
    4173 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
    4173 open("/etc/ld.so.cache", O_RDONLY) = 3
    4173 fstat64(3, {st_mode=S_IFREG|0644, st_size=133164, ...}) = 0
    4173 mmap2(NULL, 133164, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb80ad000
    4173 close(3) = 0
    4173 open("/usr/lib/libX11.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240d\1\0004\0\0\0\310"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=1255735, ...}) = 0
    4173 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80ac000
    4173 mmap2(NULL, 1162916, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7f90000
    4173 mmap2(0xb80a8000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x117) = 0xb80a8000
    4173 close(3) = 0
    4173 open("/lib/libc.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220k\1\0004\0\0\0\0"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=1553884, ...}) = 0
    4173 mmap2(NULL, 1333512, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e4a000
    4173 mmap2(0xb7f8a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13f) = 0xb7f8a000
    4173 mmap2(0xb7f8d000, 10504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7f8d000
    4173 close(3) = 0
    4173 open("/usr/lib/libxcb.so.1", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320~\0\0004\0\0\0D"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=128751, ...}) = 0
    4173 mmap2(NULL, 99968, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e31000
    4173 mmap2(0xb7e49000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17) = 0xb7e49000
    4173 close(3) = 0
    4173 open("/lib/libdl.so.2", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \n\0\0004\0\0\0\\"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=13419, ...}) = 0
    4173 mmap2(NULL, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e2d000
    4173 mmap2(0xb7e2f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7e2f000
    4173 close(3) = 0
    4173 open("/usr/lib/libXau.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\10\0\0004\0\0\0\20"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=9706, ...}) = 0
    4173 mmap2(NULL, 10112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e2a000
    4173 mmap2(0xb7e2c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7e2c000
    4173 close(3) = 0
    4173 open("/usr/lib/libXdmcp.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\17\0\0004\0\0\0\344"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=20705, ...}) = 0
    4173 mmap2(NULL, 19708, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e25000
    4173 mmap2(0xb7e29000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xb7e29000
    4173 close(3) = 0
    4173 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e24000
    4173 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e23000
    4173 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7e236c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
    4173 mprotect(0xb7e2f000, 4096, PROT_READ) = 0
    4173 mprotect(0xb7f8a000, 8192, PROT_READ) = 0
    4173 mprotect(0xb80eb000, 4096, PROT_READ) = 0
    4173 munmap(0xb80ad000, 133164) = 0
    4173 access("/home/mgp/.xinitrc", F_OK) = -1 ENOENT (No such file or directory)
    4173 access("/home/mgp/.xserverrc", F_OK) = -1 ENOENT (No such file or directory)
    4173 brk(0) = 0x9264000
    4173 brk(0x9285000) = 0x9285000
    4173 rt_sigaction(SIGCHLD, {SIG_DFL, [CHLD], SA_RESTART}, {SIG_DFL, [], 0}, 8) = 0
    4173 rt_sigaction(SIGTERM, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGQUIT, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGINT, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGHUP, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGPIPE, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGALRM, {0x8048eb0, [ALRM], SA_RESTART}, {SIG_DFL, [], 0}, 8) = 0
    4173 rt_sigaction(SIGUSR1, {0x8048e90, [USR1], SA_RESTART}, {SIG_DFL, [], 0}, 8) = 0
    4173 rt_sigprocmask(SIG_BLOCK, [USR1], [], 8) = 0
    4173 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7e23728) = 4174
    4174 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
    4173 setpriority(PRIO_PROCESS, 4174, -1 <unfinished ...>
    4174 <... rt_sigprocmask resumed> NULL, 8) = 0
    4174 rt_sigaction(SIGTTIN, {0x1, [TTIN], SA_RESTART}, <unfinished ...>
    4173 <... setpriority resumed> ) = 0
    4174 <... rt_sigaction resumed> {SIG_DFL, [], 0}, 8) = 0
    4174 rt_sigaction(SIGTTOU, {0x1, [TTOU], SA_RESTART}, <unfinished ...>
    4173 waitpid(4174, <unfinished ...>
    4174 <... rt_sigaction resumed> {SIG_DFL, [], 0}, 8) = 0
    4173 <... waitpid resumed> 0x804b940, WNOHANG) = 0
    4174 rt_sigaction(SIGUSR1, {0x1, [USR1], SA_RESTART}, <unfinished ...>
    4173 write(2, "\n"..., 1 <unfinished ...>
    4174 <... rt_sigaction resumed> {0x8048e90, [USR1], SA_RESTART}, 8) = 0
    4174 setpgid(0, 4174) = 0
    4174 execve("/bin/X", ["X", ":0"], [/* 33 vars */]) = -1 ENOENT (No such file or directory)
    4174 execve("/usr/bin/X", ["X", ":0"], [/* 33 vars */] <unfinished ...>
    4173 <... write resumed> ) = 1
    4173 alarm(15) = 0
    4173 rt_sigsuspend([] <unfinished ...>
    4174 <... execve resumed> ) = 0
    4174 brk(0) = 0x8baa000
    4174 fcntl64(0, F_GETFD) = 0
    4174 fcntl64(1, F_GETFD) = 0
    4174 fcntl64(2, F_GETFD) = 0
    4174 access("/etc/suid-debug", F_OK) = -1 ENOENT (No such file or directory)
    4174 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
    4174 open("/etc/ld.so.cache", O_RDONLY) = 3
    4174 fstat64(3, {st_mode=S_IFREG|0644, st_size=133164, ...}) = 0
    4174 mmap2(NULL, 133164, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f3b000
    4174 close(3) = 0
    4174 open("/usr/lib/libpciaccess.so.0", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\24\0\0004\0\0\0\234"..., 512) = 512
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f3a000
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=30651, ...}) = 0
    4174 mmap2(NULL, 27868, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7f33000
    4174 mmap2(0xb7f39000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5) = 0xb7f39000
    4174 close(3) = 0
    4174 open("/lib/libpthread.so.0", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0I\0\0004\0\0\0,"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=119590, ...}) = 0
    4174 mmap2(NULL, 98784, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7f1a000
    4174 mprotect(0xb7f2e000, 4096, PROT_NONE) = 0
    4174 mmap2(0xb7f2f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14) = 0xb7f2f000
    4174 mmap2(0xb7f31000, 4576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7f31000
    4174 close(3) = 0
    4174 open("/usr/lib/libXfont.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 e\0\0004\0\0\0\34"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=242478, ...}) = 0
    4174 mmap2(NULL, 223616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ee3000
    4174 mmap2(0xb7f18000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x34) = 0xb7f18000
    4174 close(3) = 0
    4174 open("/usr/lib/libXau.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\10\0\0004\0\0\0\20"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=9706, ...}) = 0
    4174 mmap2(NULL, 10112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ee0000
    4174 mmap2(0xb7ee2000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7ee2000
    4174 close(3) = 0
    4174 open("/lib/tls/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/tls/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/tls/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/tls/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    4174 open("/usr/lib/tls/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/tls/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/tls/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/tls/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/libpixman-1.so.0", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0207\0\0004\0\0\0\\"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=394811, ...}) = 0
    4174 mmap2(NULL, 363888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e87000
    4174 mmap2(0xb7ede000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x57) = 0xb7ede000
    4174 close(3) = 0
    4174 open("/usr/lib/libhal.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320*\0\0004\0\0\0\340"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=71014, ...}) = 0
    4174 mmap2(NULL, 64412, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e77000
    4174 mmap2(0xb7e86000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe) = 0xb7e86000
    4174 close(3) = 0
    4174 open("/usr/lib/libdbus-1.so.3", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0PQ\0\0004\0\0\0,"..., 512) = 512
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e76000
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=285567, ...}) = 0
    4174 mmap2(NULL, 230592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e3d000
    4174 mmap2(0xb7e74000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x36) = 0xb7e74000
    4174 close(3) = 0
    4174 open("/usr/lib/libXdmcp.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\17\0\0004\0\0\0\344"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=20705, ...}) = 0
    4174 mmap2(NULL, 19708, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e38000
    4174 mmap2(0xb7e3c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xb7e3c000
    4174 close(3) = 0
    4174 open("/usr/lib/libcrypto.so.0.9.8", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\332\3\0004\0\0\0D"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0555, st_size=1561754, ...}) = 0
    4174 mmap2(NULL, 1381304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ce6000
    4174 mmap2(0xb7e1f000, 90112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x139) = 0xb7e1f000
    4174 mmap2(0xb7e35000, 9144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7e35000
    4174 close(3) = 0
    4174 open("/lib/libdl.so.2", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \n\0\0004\0\0\0\\"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=13419, ...}) = 0
    4174 mmap2(NULL, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ce2000
    4174 mmap2(0xb7ce4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7ce4000
    4174 close(3) = 0
    4174 open("/lib/libm.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@4\0\0004\0\0\0("..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=180855, ...}) = 0
    4174 mmap2(NULL, 151680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7cbc000
    4174 mmap2(0xb7ce0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23) = 0xb7ce0000
    4174 close(3) = 0
    4174 open("/lib/librt.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\30\0\0004\0\0\0\234"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=39252, ...}) = 0
    4174 mmap2(NULL, 33364, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7cb3000
    4174 mmap2(0xb7cba000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6) = 0xb7cba000
    4174 close(3) = 0
    4174 open("/usr/lib/libgcc_s.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20#\0\0004\0\0\0\344"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0644, st_size=129370, ...}) = 0
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7cb2000
    4174 mmap2(NULL, 119784, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7c94000
    4174 mmap2(0xb7cb1000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c) = 0xb7cb1000
    4174 close(3) = 0
    4174 open("/lib/libc.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220k\1\0004\0\0\0\0"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=1553884, ...}) = 0
    4174 mmap2(NULL, 1333512, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7b4e000
    4174 mmap2(0xb7c8e000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13f) = 0xb7c8e000
    4174 mmap2(0xb7c91000, 10504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7c91000
    4174 close(3) = 0
    4174 open("/usr/lib/libfreetype.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`}\0\0004\0\0\0,"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=604088, ...}) = 0
    4174 mmap2(NULL, 542228, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ac9000
    4174 mmap2(0xb7b4a000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x81) = 0xb7b4a000
    4174 close(3) = 0
    4174 open("/usr/lib/libz.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260\30\0\0004\0\0\0\30"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=82987, ...}) = 0
    4174 mmap2(NULL, 78844, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ab5000
    4174 mmap2(0xb7ac8000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12) = 0xb7ac8000
    4174 close(3) = 0
    4174 open("/usr/lib/libfontenc.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\f\0\0004\0\0\0004"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=30017, ...}) = 0
    4174 mmap2(NULL, 24288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7aaf000
    4174 mmap2(0xb7ab4000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5) = 0xb7ab4000
    4174 close(3) = 0
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7aae000
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7aad000
    4174 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7aad6c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
    4174 mprotect(0xb7c8e000, 8192, PROT_READ) = 0
    4174 mprotect(0xb7cba000, 4096, PROT_READ) = 0
    4174 mprotect(0xb7ce0000, 4096, PROT_READ) = 0
    4174 mprotect(0xb7ce4000, 4096, PROT_READ) = 0
    4174 mprotect(0xb7e74000, 4096, PROT_READ) = 0
    4174 --- SIGSEGV (Segmentation fault) @ 0 (0) ---
    4173 <... rt_sigsuspend resumed> ) = ? ERESTARTNOHAND (To be restarted)
    4173 --- SIGCHLD (Child exited) @ 0 (0) ---
    4173 rt_sigsuspend([]) = ? ERESTARTNOHAND (To be restarted)
    4173 --- SIGALRM (Alarm clock) @ 0 (0) ---
    4173 rt_sigaction(SIGALRM, {0x8048eb0, [ALRM], SA_RESTART}, {0x8048eb0, [ALRM], SA_RESTART}, 8) = 0
    4173 sigreturn() = ? (mask now [USR1])
    4173 alarm(0) = 0
    4173 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
    4173 socket(PF_FILE, SOCK_STREAM, 0) = 3
    4173 connect(3, {sa_family=AF_FILE, path=@"/tmp/.X11-unix/X0"...}, 20) = -1 ECONNREFUSED (Connection refused)
    4173 close(3) = 0
    4173 socket(PF_FILE, SOCK_STREAM, 0) = 3
    4173 connect(3, {sa_family=AF_FILE, path="/tmp/.X11-unix/X0"...}, 110) = -1 ENOENT (No such file or directory)
    4173 close(3) = 0
    4173 waitpid(4174, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV}], WNOHANG) = 4174
    4173 write(2, "giving up.\r\n"..., 12) = 12
    4173 write(2, "xinit: "..., 8) = 8
    4173 write(2, "No such file or directory (errno "..., 38) = 38
    4173 write(2, "unable to connect to X server\r\n"..., 31) = 31
    4173 kill(-4174, SIGTERM) = -1 ESRCH (No such process)
    4173 rt_sigaction(SIGTERM, {0x1, [TERM], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGQUIT, {0x1, [QUIT], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGINT, {0x1, [INT], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGHUP, {0x1, [HUP], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGPIPE, {0x1, [PIPE], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 write(2, "xinit: "..., 8) = 8
    4173 write(2, "No such process (errno 3): "..., 28) = 28
    4173 write(2, "Server error.\n"..., 14) = 14
    4173 exit_group(1) = ?
    I've searched over for a solution but can't really find anything relevant. I've tried installing xorg a few times. Also hal and all that stuff but I don't trust myself too much on that. I don't know how to proceed any further and would appreciate any help possible or any ideas you think I could try. I'm pretty sure it's something quite stupid. Thanks for your time and consideration.
    Best regards,
    Michael
    Last edited by mgp (2009-09-24 06:31:36)

    Hi all,
    I fixed it. By looking closely at the strace I figured that for some reason X couldn't access my /tmp. I remember setting my /tmp directories in fstab to mount on tmpfs so I figured that wasn't working anymore. I removed my tmp entries in fstab (will have to refigure that one out). Something changed with the devices. Maybe I wasn't using udev before or something as it also has problems mounting devices it previously mounted on boot. However all this happened before I changed kernel. Dunno, anyway, it works although I have to fix a bunch of small things that still don't work. Lesson would be update often (hadn't done so in a year) and keep in touch with what is going on in the community (eee instructions have changed a lot -and become slightly more confusing-). Anyway, thanks for your help, specially Rasi.
    Best regards,
    Michael

  • In Mail, how do I make it so that email replies to me are sent to the email address from which I sent my original message?

    I have two IMAP accounts set up in Mail, one work and one personal. The personal account also receives emails from a third account (but I have that set up through gmail's forwarding, not Mail). I am sending emails from my work account and replies are coming to this third account, which I don't want to happen.
    How do I make it so that replies to me are sent to the email address from which I sent my original message?
    Thanks for your help!

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • IPhoto suddenly doesn't seem to recognize my camera, and essentially freezes. The only thing that makes sense is that another person in my house imported using a different camera and that changed things somehow. Ideas?

    iPhoto suddenly doesn't seem to recognize my camera, and essentially freezes. The only thing that makes sense is that another person in my house imported using a different camera and that changed things somehow. Ideas?

    Hi There!
    The camera is a Panasonic Lumix. I don't have a USB card reader. I did try and different port although not a different cable.
    I did remember one additional thing. I plugged my camera in at work to a PC. It was after that, when I came home, that the iPhoto wasn't working when I connected my camera to our iMac/iPhoto at home. I think this may have caused the problem.
    Cheers!

  • I Think It's Time That Verizon Opens Up Testing Of Updates & Firmware To The Windows Phone Community!!!

    Waiting for Verizon to release updates on a reasonable time table has become a complete failure.  If you only have a couple technicians in house testing the 4-5 devices you only carry and it takes this long, there's a problem with your technicians.
    If you don't want to allocate the time, money and resources to a platform that your sales reps never push or even mention in stores, or on your website or over the phone, I think it's time to either drop the line completely or turn to the Windows Phone Community to do your job for you.
    I think it's time that Verizon takes a queue from Microsoft and opens up testing of updates and firmware to any and all Windows Phone Users that want to help the cause and better support the platform in the process.  You can have your legal department draft up a clause that releases Verizon of any liability if a user opts to test updates or firmware. 
    What else better than to have the Community help in the cause (in masses) over the limited few technicians you have in house testing out the updates and firmware.  You will get all the feedback you will need to make a proper decision as to push the updates or firmware or go back to Microsoft and make fixes to any/all bugs that are found.
    In a technological age we live in, to not take advantage of a community of users who would be more than willing to test out products, goods, services, you are just shooting yourself in the foot.
    If you look at the numbers of how many users signed up to be part of Microsoft's Developer Preview app, you will see that there are millions of users willing to take the risk in order to help the cause while being a part of the testing process, making the platform better in the long run.
    It's time for change, it's time to embrace the community, it's time to respond at let the community know one way or another if we are going to get updates and firmware in a timely manner... and not just one update or firmware in a year cycle.
    Windows (9) is going to be released to the general public as Technical Preview on September 30, and you can guarantee that millions of users are going to download the OS and test it out and submit feedback via the OS and Microsoft's Community Forum in order to make it a success...  So why don't you Verizon do the same and open up beta testing of updates and firmware to the Windows Phone Community here!!!
    Think about it, take a poll... but do something, one way or another... It's time to stop keeping us paying customers in the dark regarding updates and firmware that improves the experience, enhances our devices and provides the security that we need for our phones.  If you take good care of us, we will continue to be customers, renew our contracts or even sign up for Verizon Edge Accounts.
    But if you keep us in the dark, you can guarantee that you will get customers leaving when there contracts are up because Windows Phone Users are loyal to Windows Phone... PERIOD!!!
    Waiting for Tidbits and Elector to grace my post with there constant negativity and start a war of words as usual... since they love stirring the pot and angering the Windows Phone Community every time they reply to posts.  I just can't believe they spend that much time here on the forums replying if they are not a paid Verizon employee or a paid basher from a competing platform.

    [Quote]
    Waiting for Tidbits and Elector to grace my post with there constant negativity and start a war of words as usual... since they love stirring the pot and angering the Windows Phone Community every time they reply to posts.  I just can't believe they spend that much time here on the forums replying if they are not a paid Verizon employee or a paid basher from a competing platform.
    [/Quote]
    Well I found nothing wrong in your post. So why even make a statement like the quote I included?
    Once more I am a retired government employee. So I have the time to post. Or has my rights been taken away to voice an opinion?
    Your posts was great you were not whining about your rights to file complaints to the FCC or FTC etc. One of the best I have read.
    And I am not trying to sway you from your phone choice. If you looked at my avitar it shows apple iphones. But I use and have used androids and not Windows phones.
    However your numbers of windows phone users all leaving over the issue is miniscule in the number of users of Android and iOS devices.
    I have written many times I wish all the devices get updated like iOS devices do. But at present that is not happening
    No bashing, no adversarial post just a little common sense is all I use.
    And again your post was great.
    Good Luck

  • Does Apple make a monitor that looks like the iMac27, for dual monitor setup?

    I'm thinking about buying an iMac, but I'm used to a multiple monitor setup. Does Apple make a monitor that looks like the iMac27, for dual monitor setup?

    Look at these links.
    http://store.apple.com/us/product/MC914LL/B/apple-thunderbolt-display-27-inch?fn ode=53
    http://store.apple.com/us/product/MC007LL/A/apple-led-cinema-display-(27%22-flat -panel)?fnode=53
    Allan

Maybe you are looking for