Cannot create directory `/home/a/.config/openbox

Hi All,
I'm trying to setup openbox because it is so highly recommended in Arch but I get this:
[a@Astudio ~]$ mkdir -p ~/.config/openbox/
mkdir: cannot create directory `/home/a/.config': Permission denied
[a@Astudio ~]$ su
Password:
bash-3.2# chmod -R 755 /home/a/
bash-3.2# exit
exit
[a@Astudio ~]$ mkdir -p ~/.config/openbox/
mkdir: cannot create directory `/home/a/.config/openbox/': Permission denied
[a@Astudio ~]$ su
Password:
bash-3.2# chmod -R 755 /home/
bash-3.2# exit
exit
[a@Astudio ~]$ mkdir -p ~/.config/openbox/
mkdir: cannot create directory `/home/a/.config/openbox/': Permission denied
Does anyone know what I'm doing wrong.
Thanks,
Arthur
sorry about the double post!
Last edited by Frabato (2008-10-18 02:41:01)

Have you just installed Arch? Is there a chance that you're not the owner of your home directory? (check "ls -l /home/" to be sure... if not, chown it)
I don't know what else it could be but someone here will surely have an idea.

Similar Messages

  • Cannot create directory Bonjour

    Tried to install itues and get the same error "cannot create directory program files/Bonjour. A file with this name already exists...etc.
    I searched for such a file, deleted it , but still get the same errorr. I unistalled itunes, tried to reinstall an older version...same error...
    Any thoughts?

    Hello. Have you attempted to just install Bonjour by itself?
    http://support.apple.com/downloads/Bonjourfor_Windows_1_05
    Also if you need to go to Control panel and uninstall Bonjour, Reboot, then come back and install latest Bonjour at link above. Followed by iTunes if it installs.

  • Cannot create directory - dbca error message

    i am trying to create database through dbca in 10.2 in windows vista
    in 12 step while click finish button i am getting
    "cannot create directory f:\oracle\product\10.2.0\db_1\cfgtoollogs\dbca\catdb"
    please give solution for this. Thanks in advance.
    Edited by: user8941653 on Feb 7, 2011 12:14 AM
    Edited by: user8941653 on Feb 7, 2011 12:15 AM

    According to the download page the minimum supported version on Vista is 10.2.0.4 but the installation guide states 10.2.0.3.0.
    According to the installation guide you need administrator rights to run DBCA.
    How are you running DBCA? From the Start menu or from command line?

  • Error Cannot create directory /tmp/ .xorg.conf72

    During an install of Solaris 10 (as a virtual machine) I was attempting to run /usr/X11/bin/xorgconfig
    I received the following error:
    Cannot create directory /tmp/ .xorg.conf72
    Any Ideas as to how I could fix the problem?

    Hi,
    So, try to create this folder by your hands before create the track and assign all permissions to sap admin user.
    It will solve this issue.
    regards,
    Luciano

  • Storing config.xml in a separate directory (/home/secure/config) !

    Hi All,
    We wanted to keep the config.xml file alone in a different directory
    I have tried using the -Dweblogic.ConfigFile system property during weblogic server startup it did NOT work out.
    I have also tried using the -Dweblogic.RootDirectory in combination with -Dweblogic.ConfigFile . Even then I am facing a problem "weblogic.management.ManagementRuntimeException: com.rsa.jsafe.JSAFE_PaddingException"
    I would like to keep just the config.xml in a separate directory like for e.g. /home/secure/config/config.xml and wanted to point the domain I have created to use the config.xml stored under /home/secure/config directory.
    Any pointers to info source will be REALLY appreciated.
    Many Thanks in Advance,
    C R Baradwaj

    well it all about applying your programming logic..Why don't you write a dedicated servlet which can locate that particular in your computer and then send out the downloadable content for you by streaming the data.
    checkout the below example of one my recent posts where i'm trying to locate an image file and giving an option of opening that file in browser or asking eu to download that file via a customized logic.
    http://forum.java.sun.com/thread.jspa?threadID=5221863&messageID=9901376#9901376*
    Hope that might be of some help :)
    REGARDS,
    RaHuL

  • Cannot Create Directory During Installation

    I've been going through the various fixes posted by the top users (a very helpful and intelligent bunch) but I haven't seen a fix for my particular issue. After downloading iTunes v7.6, during the installation process I receive a message:
    Cannot create the directory C:\WINDOWS\Installer\{80FD852F-5AAC-4129-B931-06AAFFA43138}. A file with this name already exists. Please rename or remove the file and click retry, or click cancel to exit.
    I have searched my system and there is no other file with that name on my hard drives anywhere. Does anyone have an idea why this is happening and what can be done to resolve this issue?

    I found the answer myself. I entered into safe mode with the c: prompt. I was then able to locate and delete the file in C:\WINDOWS\Installer. I then went and deleted the files via add/delete program files. Per previous recommendations, I also deleted all iTunes and Quicktime folders/files in C:\Program Files and C:\WINDOWS\system32. Then I emptied the recycled bin, rebooted the computer and reloaded iTunes/Quicktime off the Apple iTunes web site. I hope this information helps someone else.

  • Can't create directory while in fakeroot

    Hi all,
    I'm trying to create a PKGBUILD for mplabx. When the installer tries to create the directory /opt/microchip, it gets the error permission denied.
    My pkgbuild:
    # This is an example PKGBUILD file. Use this as a start to creating your own,
    # and remove these comments. For more information, see 'man PKGBUILD'.
    # NOTE: Please fill out the license field for your package! If it is unknown,
    # then please put 'unknown'.
    # Maintainer: Cedric de Wijs <[email protected]>
    pkgname=microchip_mplab-x
    pkgver=7.02
    pkgrel=1
    epoch=
    pkgdesc=""
    arch=('x86_64')
    url="http://www.microchip.com/en_US/family/mplabx/index.html"
    license=('unknown')
    groups=()
    depends=()
    makedepends=()
    checkdepends=()
    optdepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    changelog=
    source=(http://ww1.microchip.com/downloads/mplab/X_Beta/mplabx-ide-beta7.02-linux-64-bit-installer.bin)
    noextract=()
    md5sums=('fbe573dabb54120947bbefaa2d8003d4')
    build() {
    whoami
    check() {
    whoami
    package() {
    whoami
    chmod +x mplabx-ide-beta7.02-linux-64-bit-installer.bin
    mkdir -p /opt
    mkdir /opt/microchip
    mkdir /opt/microchip/mplabx
    ./mplabx-ide-beta7.02-linux-64-bit-installer.bin
    The console output:
    $ makepkg
    ==> Making package: microchip_mplab-x 7.02-1 (Mon Sep 26 07:42:15 CEST 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found mplabx-ide-beta7.02-linux-64-bit-installer.bin
    ==> Validating source files with md5sums...
    mplabx-ide-beta7.02-linux-64-bit-installer.bin ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    cedric
    ==> Starting check()...
    cedric
    ==> Entering fakeroot environment...
    ==> Starting package()...
    root
    mkdir: cannot create directory `/opt/microchip': Permission denied
    ==> ERROR: A failure occurred in package().
    Aborting...
    When I create the directory /opt/microchip (in the real root), the above error changes:
    $ su
    Password:
    [root@cedric mplab-test]# mkdir /opt/microchip
    [root@cedric mplab-test]# exit
    exit
    [cedric@cedric mplab-test]$ makepkg
    ==> Making package: microchip_mplab-x 7.02-1 (Mon Sep 26 07:45:15 CEST 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found mplabx-ide-beta7.02-linux-64-bit-installer.bin
    ==> Validating source files with md5sums...
    mplabx-ide-beta7.02-linux-64-bit-installer.bin ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    cedric
    ==> Starting check()...
    cedric
    ==> Entering fakeroot environment...
    ==> Starting package()...
    root
    mkdir: cannot create directory `/opt/microchip': File exists
    ==> ERROR: A failure occurred in package().
    Aborting...
    What can I do to get around this?
    Best regards,
    Cedric

    Thanks. I have now adjusted the PKGBUILD as such
    # This is an example PKGBUILD file. Use this as a start to creating your own,
    # and remove these comments. For more information, see 'man PKGBUILD'.
    # NOTE: Please fill out the license field for your package! If it is unknown,
    # then please put 'unknown'.
    # Maintainer: Cedric de Wijs <[email protected]>
    pkgname=microchip_mplab-x
    pkgver=7.02
    pkgrel=1
    epoch=
    pkgdesc=""
    arch=('x86_64')
    url="http://www.microchip.com/en_US/family/mplabx/index.html"
    license=('unknown')
    groups=()
    depends=()
    makedepends=()
    checkdepends=()
    optdepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    changelog=
    source=(http://ww1.microchip.com/downloads/mplab/X_Beta/mplabx-ide-beta7.02-linux-64-bit-installer.bin)
    noextract=()
    md5sums=('fbe573dabb54120947bbefaa2d8003d4')
    build() {
    whoami
    check() {
    whoami
    package() {
    whoami
    chmod +x mplabx-ide-beta7.02-linux-64-bit-installer.bin
    install -d "$pkgdir"/opt/microchip/mplabx
    ./mplabx-ide-beta7.02-linux-64-bit-installer.bin
    The directories are no made without problems, but the mplab installer still complains it can't create the directories.
    $ makepkg
    ==> Making package: microchip_mplab-x 7.02-1 (Mon Sep 26 08:04:04 CEST 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found mplabx-ide-beta7.02-linux-64-bit-installer.bin
    ==> Validating source files with md5sums...
    mplabx-ide-beta7.02-linux-64-bit-installer.bin ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    cedric
    ==> Starting check()...
    cedric
    ==> Entering fakeroot environment...
    ==> Starting package()...
    root
    ERROR: ld.so: object 'libfakeroot.so' from LD_PRELOAD cannot be preloaded: ignored.
    ==> ERROR: A failure occurred in package().
    Aborting...
    It looks like makepkg only runs install in the fakeroot. Is there any way a binary installer can be run inside the fakeroot?
    Am I going in the right direction, or is there no way to run a binary installer like this?
    Are there other binary installers that are run like this?
    Best regards,
    Cedric
    Last edited by cdwijs (2011-09-26 06:32:06)

  • [Solved] error: C compiler cannot create executables; see 'config.log'

    Trying to build avant-window-navigator from the aur using yaourt results in this error message.  I recently upgraded my system and suspect this may be the cause, but I'm not sure how to proceed from here.  My config.log follows.
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by avant-window-navigator configure 0.4.1, which was
    generated by GNU Autoconf 2.68. Invocation command line was
    $ ./configure --prefix=/usr --sysconfdir=/usr/share --disable-static --disable-pymod-checks
    ## Platform. ##
    hostname = vectorman
    uname -m = x86_64
    uname -r = 3.2.7-1-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Tue Feb 21 09:51:29 CET 2012
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = x86_64
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /usr/local/bin
    PATH: /usr/bin
    PATH: /bin
    PATH: /usr/local/sbin
    PATH: /usr/sbin
    PATH: /sbin
    PATH: /usr/bin/vendor_perl
    PATH: /usr/bin/core_perl
    ## Core tests. ##
    configure:2498: checking for a BSD-compatible install
    configure:2566: result: /bin/install -c
    configure:2577: checking whether build environment is sane
    configure:2627: result: yes
    configure:2768: checking for a thread-safe mkdir -p
    configure:2807: result: /bin/mkdir -p
    configure:2820: checking for gawk
    configure:2836: found /usr/bin/gawk
    configure:2847: result: gawk
    configure:2858: checking whether make sets $(MAKE)
    configure:2880: result: yes
    configure:2961: checking whether to enable maintainer-specific portions of Makefiles
    configure:2970: result: no
    configure:2999: checking for style of include used by make
    configure:3027: result: GNU
    configure:3098: checking for gcc
    configure:3114: found /usr/bin/gcc
    configure:3125: result: gcc
    configure:3354: checking for C compiler version
    configure:3363: gcc --version >&5
    gcc (GCC) 4.6.2 20111223 (prerelease)
    Copyright (C) 2011 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:3374: $? = 0
    configure:3363: gcc -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.2/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/src/gcc-4.6-20111223/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --enable-gnu-unique-object --enable-linker-build-id --with-ppl --enable-cloog-backend=isl --enable-lto --enable-gold --enable-ld=default --enable-plugin --with-plugin-ld=ld.gold --enable-multilib --disable-libssp --disable-libstdcxx-pch --enable-checking=release --with-fpmath=sse
    Thread model: posix
    gcc version 4.6.2 20111223 (prerelease) (GCC)
    configure:3374: $? = 0
    configure:3363: gcc -V >&5
    gcc: error: unrecognized option '-V'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3374: $? = 1
    configure:3363: gcc -qversion >&5
    gcc: error: unrecognized option '-qversion'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3374: $? = 1
    configure:3394: checking whether the C compiler works
    configure:3416: gcc -march=x86-64 -mtune=generic -O2 -pipe -Wl,--hash-style=gnu -Wl,--as-needed conftest.c >&5
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.2/cc1: error while loading shared libraries: libcloog-isl.so.2: cannot open shared object file: No such file or directory
    configure:3420: $? = 1
    configure:3458: result: no
    configure: failed program was:
    | /* confdefs.h */
    | #define PACKAGE_NAME "avant-window-navigator"
    | #define PACKAGE_TARNAME "avant-window-navigator"
    | #define PACKAGE_VERSION "0.4.1"
    | #define PACKAGE_STRING "avant-window-navigator 0.4.1"
    | #define PACKAGE_BUGREPORT "https://bugs.launchpad.net/awn"
    | #define PACKAGE_URL ""
    | #define EXTRA_VERSION ""
    | #define PACKAGE "avant-window-navigator"
    | #define VERSION "0.4.1"
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:3463: error: in `/tmp/yaourt-tmp-terry/aur-avant-window-navigator-bzr/src/awn-build':
    configure:3465: error: C compiler cannot create executables
    See `config.log' for more details
    ## Cache variables. ##
    ac_cv_env_AWN_CFLAGS_set=
    ac_cv_env_AWN_CFLAGS_value=
    ac_cv_env_AWN_LIBS_set=
    ac_cv_env_AWN_LIBS_value=
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=x86-64 -mtune=generic -O2 -pipe'
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_DOCK_CFLAGS_set=
    ac_cv_env_DOCK_CFLAGS_value=
    ac_cv_env_DOCK_LIBS_set=
    ac_cv_env_DOCK_LIBS_value=
    ac_cv_env_GTKDOC_DEPS_CFLAGS_set=
    ac_cv_env_GTKDOC_DEPS_CFLAGS_value=
    ac_cv_env_GTKDOC_DEPS_LIBS_set=
    ac_cv_env_GTKDOC_DEPS_LIBS_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value='-Wl,--hash-style=gnu -Wl,--as-needed'
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_PKG_CONFIG_LIBDIR_set=
    ac_cv_env_PKG_CONFIG_LIBDIR_value=
    ac_cv_env_PKG_CONFIG_PATH_set=
    ac_cv_env_PKG_CONFIG_PATH_value=
    ac_cv_env_PKG_CONFIG_set=
    ac_cv_env_PKG_CONFIG_value=
    ac_cv_env_PYGTK_CFLAGS_set=
    ac_cv_env_PYGTK_CFLAGS_value=
    ac_cv_env_PYGTK_LIBS_set=
    ac_cv_env_PYGTK_LIBS_value=
    ac_cv_env_PYTHON_set=set
    ac_cv_env_PYTHON_value=/usr/bin/python2
    ac_cv_env_TASKMANAGER_CFLAGS_set=
    ac_cv_env_TASKMANAGER_CFLAGS_value=
    ac_cv_env_TASKMANAGER_LIBS_set=
    ac_cv_env_TASKMANAGER_LIBS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_path_install='/bin/install -c'
    ac_cv_path_mkdir=/bin/mkdir
    ac_cv_prog_AWK=gawk
    ac_cv_prog_ac_ct_CC=gcc
    ac_cv_prog_make_make_set=yes
    ## Output variables. ##
    ACLOCAL='${SHELL} /tmp/yaourt-tmp-terry/aur-avant-window-navigator-bzr/src/awn-build/missing --run aclocal-1.11'
    ACLOCAL_AMFLAGS='${ACLOCAL_FLAGS}'
    ALL_LINGUAS=''
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='$${TAR-tar}'
    AM_DEFAULT_VERBOSITY=''
    AM_MAKEFLAGS=''
    APPLETSDIR=''
    AR=''
    AUTOCONF='${SHELL} /tmp/yaourt-tmp-terry/aur-avant-window-navigator-bzr/src/awn-build/missing --run autoconf'
    AUTOHEADER='${SHELL} /tmp/yaourt-tmp-terry/aur-avant-window-navigator-bzr/src/awn-build/missing --run autoheader'
    AUTOMAKE='${SHELL} /tmp/yaourt-tmp-terry/aur-avant-window-navigator-bzr/src/awn-build/missing --run automake-1.11'
    AWK='gawk'
    AWN_CFLAGS=''
    AWN_LIBS=''
    CATALOGS=''
    CATOBJEXT=''
    CC='gcc'
    CCDEPMODE=''
    CFLAGS='-march=x86-64 -mtune=generic -O2 -pipe'
    CPP=''
    CPPFLAGS=''
    CXX=''
    CYGPATH_W='echo'
    DATADIR=''
    DATADIRNAME=''
    DBUS_GLIB_BIN=''
    DEFS=''
    DEPDIR='.deps'
    DISABLE_DEPRECATED_FLAGS=''
    DLLTOOL=''
    DOCK_CFLAGS=''
    DOCK_LIBS=''
    DOLT_BASH=''
    DSYMUTIL=''
    DUMPBIN=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    ENABLE_GTK_DOC_FALSE=''
    ENABLE_GTK_DOC_TRUE=''
    EXEEXT=''
    EXTRA_VERSION=''
    F77=''
    FC=''
    FGREP=''
    GCONFTOOL=''
    GCONF_SCHEMAS_INSTALL_FALSE=''
    GCONF_SCHEMAS_INSTALL_TRUE=''
    GCONF_SCHEMA_CONFIG_SOURCE=''
    GCONF_SCHEMA_FILE_DIR=''
    GETTEXT_PACKAGE=''
    GLIB_GENMARSHAL=''
    GMOFILES=''
    GMSGFMT=''
    GREP=''
    GTKDOC_CHECK=''
    GTKDOC_DEPS_CFLAGS=''
    GTKDOC_DEPS_LIBS=''
    GTKDOC_MKPDF=''
    GTKDOC_REBASE=''
    GTK_DOC_BUILD_HTML_FALSE=''
    GTK_DOC_BUILD_HTML_TRUE=''
    GTK_DOC_BUILD_PDF_FALSE=''
    GTK_DOC_BUILD_PDF_TRUE=''
    GTK_DOC_USE_LIBTOOL_FALSE=''
    GTK_DOC_USE_LIBTOOL_TRUE=''
    GTK_DOC_USE_REBASE_FALSE=''
    GTK_DOC_USE_REBASE_TRUE=''
    HTML_DIR=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    INSTOBJEXT=''
    INTLLIBS=''
    INTLTOOL_CAVES_RULE=''
    INTLTOOL_DESKTOP_RULE=''
    INTLTOOL_DIRECTORY_RULE=''
    INTLTOOL_EXTRACT=''
    INTLTOOL_KBD_RULE=''
    INTLTOOL_KEYS_RULE=''
    INTLTOOL_MERGE=''
    INTLTOOL_OAF_RULE=''
    INTLTOOL_PERL=''
    INTLTOOL_POLICY_RULE=''
    INTLTOOL_PONG_RULE=''
    INTLTOOL_PROP_RULE=''
    INTLTOOL_SCHEMAS_RULE=''
    INTLTOOL_SCHEMA_INI_RULE=''
    INTLTOOL_SERVER_RULE=''
    INTLTOOL_SERVICE_RULE=''
    INTLTOOL_SHEET_RULE=''
    INTLTOOL_SOUNDLIST_RULE=''
    INTLTOOL_THEME_RULE=''
    INTLTOOL_UI_RULE=''
    INTLTOOL_UPDATE=''
    INTLTOOL_V_MERGE=''
    INTLTOOL_V_MERGE_OPTIONS=''
    INTLTOOL_XAM_RULE=''
    INTLTOOL_XML_NOMERGE_RULE=''
    INTLTOOL_XML_RULE=''
    INTLTOOL__v_MERGE_0=''
    INTLTOOL__v_MERGE_=''
    LD=''
    LDA_BINDIR=''
    LDA_DEFSDIR=''
    LDA_VAPIDIR=''
    LDFLAGS='-Wl,--hash-style=gnu -Wl,--as-needed'
    LIBAPPLETDIR=''
    LIBDIR=''
    LIBOBJS=''
    LIBRARY_MODULES=''
    LIBS=''
    LIBTOOL=''
    LIPO=''
    LN_S=''
    LOCALEDIR=''
    LTCOMPILE=''
    LTCXXCOMPILE=''
    LTLIBOBJS=''
    MAINT='#'
    MAINTAINER_MODE_FALSE=''
    MAINTAINER_MODE_TRUE='#'
    MAKEFLAGS=''
    MAKEINFO='${SHELL} /tmp/yaourt-tmp-terry/aur-avant-window-navigator-bzr/src/awn-build/missing --run makeinfo'
    MANIFEST_TOOL=''
    MKDIR_P='/bin/mkdir -p'
    MKINSTALLDIRS=''
    MSGFMT=''
    MSGFMT_OPTS=''
    MSGMERGE=''
    NM=''
    NMEDIT=''
    OBJDUMP=''
    OBJEXT=''
    OTOOL64=''
    OTOOL=''
    PACKAGE='avant-window-navigator'
    PACKAGE_BUGREPORT='https://bugs.launchpad.net/awn'
    PACKAGE_NAME='avant-window-navigator'
    PACKAGE_STRING='avant-window-navigator 0.4.1'
    PACKAGE_TARNAME='avant-window-navigator'
    PACKAGE_URL=''
    PACKAGE_VERSION='0.4.1'
    PATH_SEPARATOR=':'
    PKGDATADIR=''
    PKG_CONFIG=''
    PKG_CONFIG_LIBDIR=''
    PKG_CONFIG_PATH=''
    POFILES=''
    POSUB=''
    PO_IN_DATADIR_FALSE=''
    PO_IN_DATADIR_TRUE=''
    PYGTK_CFLAGS=''
    PYGTK_DEFSDIR=''
    PYGTK_LIBS=''
    PYG_CODEGEN=''
    PYTHON='/usr/bin/python2'
    PYTHON_CPPFLAGS=''
    PYTHON_EXEC_PREFIX=''
    PYTHON_EXTRA_LDFLAGS=''
    PYTHON_EXTRA_LIBS=''
    PYTHON_LDFLAGS=''
    PYTHON_PLATFORM=''
    PYTHON_PREFIX=''
    PYTHON_VERSION=''
    Q=''
    RANLIB=''
    SED=''
    SET_MAKE=''
    SHELL='/bin/sh'
    STANDARD_CPPFLAGS=''
    STRIP=''
    TASKMANAGER_CFLAGS=''
    TASKMANAGER_LIBS=''
    USE_NLS=''
    V=''
    VALAC='/opt/vala-0.12/bin/valac'
    VALA_GEN_INTROSPECT=''
    VAPIGEN=''
    VERSION='0.4.1'
    WARNING_FLAGS=''
    XGETTEXT=''
    ac_ct_AR=''
    ac_ct_CC='gcc'
    ac_ct_DUMPBIN=''
    am__EXEEXT_FALSE=''
    am__EXEEXT_TRUE=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__include='include'
    am__isrc=''
    am__leading_dot='.'
    am__nodep='_no'
    am__quote=''
    am__tar='$${TAR-tar} chof - "$$tardir"'
    am__untar='$${TAR-tar} xf -'
    bindir='${exec_prefix}/bin'
    build=''
    build_alias=''
    build_cpu=''
    build_os=''
    build_vendor=''
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host=''
    host_alias=''
    host_cpu=''
    host_os=''
    host_vendor=''
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='${SHELL} /tmp/yaourt-tmp-terry/aur-avant-window-navigator-bzr/src/awn-build/install-sh'
    intltool__v_merge_options_0=''
    intltool__v_merge_options_=''
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localedir_intermediate=''
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    mkdir_p='/bin/mkdir -p'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    pkgpyexecdir=''
    pkgpythondir=''
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    pyexecdir=''
    pythondir=''
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    shavedir=''
    sysconfdir='/usr/share'
    target_alias=''
    ## confdefs.h. ##
    /* confdefs.h */
    #define PACKAGE_NAME "avant-window-navigator"
    #define PACKAGE_TARNAME "avant-window-navigator"
    #define PACKAGE_VERSION "0.4.1"
    #define PACKAGE_STRING "avant-window-navigator 0.4.1"
    #define PACKAGE_BUGREPORT "https://bugs.launchpad.net/awn"
    #define PACKAGE_URL ""
    #define EXTRA_VERSION ""
    #define PACKAGE "avant-window-navigator"
    #define VERSION "0.4.1"
    configure: exit 77
    Last edited by vectorman (2012-02-26 14:47:18)

    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.2/cc1: error while loading shared libraries: libcloog-isl.so.2: cannot open shared object file: No such file or directory
    cloog provides libcloog-isl.so cloog /usr/lib/libcloog-isl.so.3 and cloog /usr/lib/libcloog-isl.so.3.0.0 but not libcloog-isl.so.2.
    Edit: https://bbs.archlinux.org/viewtopic.php … 35#p983435
    If your system is fully updated, maybe you're using some custom packages, like glibc https://bbs.archlinux.org/viewtopic.php … 51#p845851
    Last edited by karol (2012-02-26 14:01:30)

  • Mail account cannot update because home directory is full. But I can not get into mail without freezing. Is there a back door entry?

    mail account cannot update because home directory is full. But I can not get into mail without freezing. Is there a back door entry?

    Do you mean that your startup disk is full?

  • "Setup encountered a problem while validating the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run se

    Team,
    I am trying to Install Exchange on my Lab, getting below error
    message.
    The Schema Role is installed on Root Domain and trying to install
    exchange on Child domain.
    1 Root Domain - 1 Child domain. both are located on single site.
    “Setup encountered a problem while validating
    the state of Active Directory: Exchange organization-level objects have not been created, and setup cannot create them because the local computer is not in the same domain and site as the schema master. Run setup with the /prepareAD parameter and wait for
    replication to complete.”
    Followed below articles:
    http://support.risualblogs.com/blog/2012/02/21/exchange-2010-sp2-upgrade-issue-exchange-organization-level-objects-have-not-been-created-and-setup-cannot-create-them-because-the-local-computer-is-not-in-the-same-domain-and-site-as-the-sche/
    http://www.petenetlive.com/KB/Article/0000793.htm
    transferred the schema roles to different server on root domain, still no luck.
    can someone please help me.
    regards
    Srinivasa k
    Srinivasa K

    Hi Srinivasa,
    I guess, you didn't completed the initial setup schemaprep and adprep before starting the installation. You can do it as follows:
    1. Open command Prompt as administrator and browse to the root of installation cd and run Setup.exe /PrepareSchema /IAcceptExchangeServerLicenseTerms
    After finishing this,
    2. Setup.exe /PrepareAD /OrganizationName:"<organization name>" /IAcceptExchangeServerLicenseTerms
    3. To prepare all domains within the forest run Setup.exe /PrepareAllDomains /IAcceptExchangeServerLicenseTerms. If you want to prepare a specific domain run Setup.exe /PrepareDomain:<FQDN of the domain you want to prepare> /IAcceptExchangeServerLicenseTerms
    4. Once you complete all of the 3 steps, install the pre-requisities for Exchange 2013
    5. Finally, run the setup program
    Hope this will help you
    Regards from Visit ExchangeOnline |
    Visit WindowsAdmin

  • Unable to create node /home/ SID adm with type directory

    I am currently experiencing a problem when trying to install a Java Stack onto my new SCM 7.0  EHP1 server.
    I receive the error:
    System call failed.  Error 89......mkdir..../home/djdadm....
    (djd is the SID of my new Java AS)
    This is followed by an error:
    Unable to create node /home/djdadm with type directory
    We have Solaris v10 (SPARC), and the ABAP stack has already been installed successfully.
    The user djdadm was created manually on solaris before starting the installation (assigned to groups sapsys, dba, sapinst + oper) and the home directory "/usr/sap/DJD/home" was specified. 
    Note the difference in the home directory that it is trying to create to the one that we set against the new user djdadm.
    This error is experienced quite early in when SAPINST is performing the tasks (and it stops at the Create users for SAP system stage).
    I was experiencing a problem where SAPINST crashed completely for a while, so I've downloaded the latest version of SAPINST today.  Also, I've set a new TEMP folder and am running SAPINST from there, but am stuck at the problem mentioned above.
    Any help would be much appreciated. 
    Alistair Crawshaw

    Hello,
    It looks like a Solaris issue. Check if the home directory /home is reserved in the Solaris configuration.                                                                               
    You may try this in that case:       
    1. modify /etc/auto_master file to change the entry for '/home' to say 
       '/autohome' instead                                                  
    2. reboot                                                              
    3. rmdir /home                                                         
    4. ln -s /export/home /home (make sure /export/home exists)       
    Regards,
    Désiré

  • Hudson - Unable to create the home directory

    Hello, I installed tomcat and downloaded hudson.war and put it into
    /opt/tomcat/webapps/hudson.war
    I'm able to navigate to localhost:8080/hudson, but I only see this message:
    Unable to create the home directory {0}. This is most likely a permission problem.
    To change the home directory, use HUDSON_HOME environment variable or set the HUDSON_HOME system property. See Container-specific documentation for more details of how to do this.
    I've set HUDSON_HOME in a gazillion places -- yet none of them has done any good.
    Can anyone point me to a solution?
    Thanks,
    --Nate

    That indicates that Time Machine is having trouble writing to that sparse bundle.
    See #C9 and #C10 in the Time Machine - Troubleshooting *User Tip,* also at the top of the +Time Machine+ forum.

  • Cannot create temp directory: The system cannot find the path specified

    Hello
    I am getting Cannot create temp directory when deploying to Oracle AS , can any one help ?
    ---- Deployment started. ---- Apr 23, 2007 8:20:29 AM
    Target platform is Oracle Application Server 10g 10.1.3 (WEBQA01).
    Wrote WAR file to C:\ide\jdeveloper\jdev\mywork\Upload\Upload\deploy\fileupload.war
    Wrote EAR file to C:\ide\jdeveloper\jdev\mywork\Upload\Upload\deploy\fileupload.ear
    Operation failed with error:
    Cannot create temp directory: The system cannot find the path specified
    Deployment failed
    Elapsed time for deployment: 8 seconds
    #### Deployment incomplete. #### Apr 23, 2007 8:20:37 AM

    In Windows, setting the Environmental Variable sometimes DOES NOT WORK.
    The -Djava.io.tmpdir=C:\temp setting must be made in the server properties of the oc4j in order for it to work.
    Jae

  • SelectTransport: creating directory failed: Win32Exception: root of directory to create not found: The system cannot find the path specified. [0x00000003]

    USMT is failing with error 71 for all users in a specific office when backing up to a specific share:
    COMPUTERNAME\Guest, administrator: No, interactive: Yes, logged on: No, has profile: No
    DOMAIN\USERNAME, administrator: Yes, interactive: Yes, logged on: Yes, has profile: Yes
    COMPUTERNAME\Administrator, administrator: Yes, interactive: Yes, logged on: No, has profile: Yes
    2014-10-31 12:52:37, Status [0x000000] Activity: 'MIGACTIVITY_TRANSPORT_SELECTION'
    2014-10-31 12:52:37, Info [0x000000] Processing the settings store
    2014-10-31 12:52:37, Error [0x000000] SelectTransport: creating directory \\san.f.q.d.n\share$\username\BACKUP\USERNAME\USMT failed: Win32Exception: root of directory to create not found: The system cannot find the path specified. [0x00000003] class UnBCL::DirectoryInfo *__cdecl UnBCL::Directory::CreateDir(const class UnBCL::String *)[gle=0x00000005]
    2014-10-31 12:52:37, Info [0x000000] Failed.[gle=0x00000091]
    2014-10-31 12:52:37, Info [0x000000] A Windows Win32 API error occurred
    Windows error 3 description: The system cannot find the path specified.[gle=0x00000091]
    2014-10-31 12:52:37, Info [0x000000] Windows Error 3 description: The system cannot find the path specified.
    2014-10-31 12:52:37, Info [0x000000] USMT Completed at 2014/10/31:12:52:37.861[gle=0x00000091]
    2014-10-31 12:52:37, Info [0x000000] Entering MigShutdown method
    2014-10-31 12:52:37, Info [0x080000] COutOfProcPluginFactory::FreeSurrogateHost: Shutdown in progress.
    2014-10-31 12:52:37, Info [0x0803e5] Not unmapping HKLM\ELAM; it is not mapped
    2014-10-31 12:52:37, Info [0x0803e6] Removing mapping for HKLM
    2014-10-31 12:52:37, Info [0x0803e7] Successfully unmapped HKLM
    2014-10-31 12:52:37, Info [0x0803e6] Removing mapping for HKU
    2014-10-31 12:52:37, Info [0x0803e7] Successfully unmapped HKU
    2014-10-31 12:52:37, Info [0x080487] Destroying OS analysis service
    2014-10-31 12:52:37, Info [0x080488] Destroyed OS analysis service
    2014-10-31 12:52:37, Info [0x000000] Leaving MigShutdown method
    2014-10-31 12:52:37, Info [0x000000] ----------------------------------- USMT ERROR SUMMARY -----------------------------------
    2014-10-31 12:52:37, Info [0x000000] * USMT error code 71:
    2014-10-31 12:52:37, Info [0x000000] +-----------------------------------------------------------------------------------------
    2014-10-31 12:52:37, Info [0x000000] | A Windows Win32 API error occurred
    2014-10-31 12:52:37, Info [0x000000] | Windows error 3 description: The system cannot find the path specified.
    2014-10-31 12:52:37, Info [0x000000] +-----------------------------------------------------------------------------------------
    As the user in question, when I browse \\san.f.q.d.n\share$\username, the BACKUP directory exists, but there are no sub directories.
    I manually created the sub directories, USERNAME\USMT - so the full path now exists: \\san.f.q.d.n\share$\username\BACKUP\USERNAME\USMT
    I re-ran USMT but the process returned the same error.
    If I specify other shares not on san.f.q.d.n but on san1.f.q.d.n or server.f.q.d.n or even workstation.f.q.d.n, it works fine.
    Can someone provide guidance on how to troubleshoot this further?

    In Windows, setting the Environmental Variable sometimes DOES NOT WORK.
    The -Djava.io.tmpdir=C:\temp setting must be made in the server properties of the oc4j in order for it to work.
    Jae

  • Error creating user home in directory

    Hello All,
    I installed the Jdeveloper with patch p8751878 to work on 11.5.10.2.  This is on a win7 64bit machine.
    My environment and system variables have the following:
    Variable= JDEV_USER_HOME
    value=C:\p8751878_11i_GENERIC\jdevhome\jdev
    When I try to launch the Jdeveloper getting the following message:
    Eror creating user home in directory C:\p8751878_11i_GENERIC\jdevhome\jdev.  Please restart JDeveloper with a new user home specified.
    Error stack shows the following
    java.io.IOException: Error copying file C:\p8751878_11i_GENERIC\jdevhome\jdev\system9.0.3.5.1453\Classic.kdf
    at oracle.ide.MultiCopier.copyDirectory(Ide.java:3356)
    Any suggestions as to what could be causing this (pls. excuse if this has been asked before..)?
    Thanks,
    Monkey

    Does anyone know how Raptor determines where it will create it's user home???
    On our development network I keep getting the noted error message, regardless of Windows 2003, 2000, or XP. So Im starting to think we may have some Windows policy that is preventing the creation of the .raptor folder that Raptor creates when it first starts up.
    On my laptop, which is not tied into the development network, I dont have this problem.

Maybe you are looking for

  • [T420] VGA to S-video or composite video

    I want to connect a T420 to an older TV.  Can I use this VGA to s-video/composite adapter?  The website says: "Your  video card MUST be able to support s-Video or Composite out through it's VGA port. This is known as a TV out function. If you don't k

  • Business Rules CmdLnLauncher.exe

    I am working on an Essbase application and I want to launch a business rule through a command line as shown in the example below. (taken from the HBR admin guide). Here is how to launch a business rule called Budget with the run-time prompt informati

  • IWeb 1.1.2 and Mobile Me

    Greetings, all. Does anyone out there in Mac-land know the extent to which the first version of iWeb will be compatible with the new-and-improved Mobile Me (e.g., will things like comment functions cease working? I'm already having some problems)? Th

  • Error in debatching while sending the message

    Why the following error occured while using debatching after muncheain grouping There was a failure executing pipeline "Microsoft.BizTalk.DefaultPipelines.XMLReceive". Error details: "Finding the document specification by message type "http://Microso

  • Open New Browser Window Behavior

    I have set a behavior in Dreamweaver CS3 to open a new browser window to a set size and to only show scroll bars if needed. I have left all other attributes unchecked. This works fine in all browsers including IE6 but IE7 ignores all my settings and