LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-09-2013, 07:59 AM   #1
sukhdip
Member
 
Registered: Sep 2011
Posts: 55

Rep: Reputation: Disabled
Graphical run of script error


Hi.. I'm working on IBM Websphere Commerce for Ldap integration at OS RHEL 5.9.
While trying to run one .sh file I'm getting below error.
Code:
[wcsuser@CTSINMBPVPCC13 bin]$ ./WCIntegrationWizard.sh
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified

The installer is unable to run in graphical mode. Try running the installer with the -console or -silent flag.
WARNING: could not write using log service: ServiceException: (error code = 200; message = "/wcp_ismp_install.log (Permission denied)"; severity = 0; exception = [java.io.FileNotFoundException: /wcp_ismp_install.log (Permission denied)])
(May 9, 2013 6:17:56 PM), Install.product.install, com.installshield.wizard.StandardWizardListener, err, could not initialize interface swing
Other graphical utilities related to this s/w are running fine in GUI mode. But this only providing me error.
I tried with exporting DISPLAY but no use.


Content of WCIntegrationWizard.sh
Code:
[root@CTSINMBPVPCC13 bin]# cat WCIntegrationWizard.sh
#!/bin/sh

# Licensed Materials - Property of IBM
# WebSphere Commerce
# (c) Copyright IBM Corp. 2000, 2006
# US Government Users Restricted Rights - Use, duplication or
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

BINDIR=`dirname $0`
. $BINDIR/setenv.sh

  TEMP=`(/usr/bin/id | grep $CMSTARTUP_USER)`
  if [ $? -ne 0 ]
  then
     echo "You must be $CMSTARTUP_USER user to run this."
     exit 1
  fi

jarpath=$WAS_HOME/plugins/*




CLASSPATH=$WCS_HOME/lib:$WCS_HOME/lib/Enablement-BaseComponentsLogic.jar:$WCS_HOME/lib/wcsdepchecker.jar:$WCS_HOME/lib/ConfigManager.jar:$WCS_HOME/lib/icu4j.zip:$jarpath

LIBPATH=$WCS_HOME/bin:$LIBPATH

${JAVA_EXE?} -cp $CLASSPATH:$WCS_HOME/lib/WCIntegrationWizard.jar  -Dcommerce.installLocation=$WCS_HOME -Dcommerce.user.installDir=$WCS_HOME  -DWAS_HOME=$WAS_HOME run -W Debug.systemValue="false" $*
Please help me to solve the problem.

Thank You,
 
Old 05-10-2013, 12:52 AM   #2
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,830

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
you can make a copy of this script and add set -xv at the beginning - to see how it is running.
Next, you can try to execute xterm in the same window (just test if it was really successful). If xterm works it could not be a DISPLAY issue.
 
Old 05-21-2013, 05:19 AM   #3
sukhdip
Member
 
Registered: Sep 2011
Posts: 55

Original Poster
Rep: Reputation: Disabled
hi! I run using -xv method. Below is the output. Can you help me with that afterwards what needs to be done?

Code:
wcsuser@CTSINMBPVPCC13 bin]$ ./WCIntegrationWizard.sh 
#!/bin/sh -xv

# Licensed Materials - Property of IBM
# WebSphere Commerce
# (c) Copyright IBM Corp. 2000, 2006
# US Government Users Restricted Rights - Use, duplication or
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

BINDIR=`dirname $0`
dirname $0
++ dirname ./WCIntegrationWizard.sh
+ BINDIR=.
. $BINDIR/setenv.sh
+ . ./setenv.sh
#!/usr/bin/sh
# Licensed Materials - Property of IBM
# WebSphere Commerce
# (c) Copyright IBM Corp. 2000, 2004
# US Government Users Restricted Rights - Use, duplication or
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

OS_NAME=`uname`
uname
+++ uname
++ OS_NAME=Linux

#
# User that Config is allowed to start as. Default Root. Will be set to NonRoot user if req
#
CMSTARTUP_USER=wcsuser
++ CMSTARTUP_USER=wcsuser
export CMSTARTUP_USER
++ export CMSTARTUP_USER

AIX_WAS_HOME="/usr/WebSphere/AppServer"
++ AIX_WAS_HOME=/usr/WebSphere/AppServer
SUN_WAS_HOME="/opt/WebSphere/AppServer"
++ SUN_WAS_HOME=/opt/WebSphere/AppServer
LNX_WAS_HOME=/opt/IBM/WebSphere/AppServer
++ LNX_WAS_HOME=/opt/IBM/WebSphere/AppServer
ISERIES_WAS_HOME=/qibm/proddata/WebSphere/AppServer/V7/ND
++ ISERIES_WAS_HOME=/qibm/proddata/WebSphere/AppServer/V7/ND
ISERIES_WAS_INST=/qibm/UserData/WebSphere/AppServer/V7/ND
++ ISERIES_WAS_INST=/qibm/UserData/WebSphere/AppServer/V7/ND




AIX_WCS_HOME="/usr/WebSphere/CommerceServer70"
++ AIX_WCS_HOME=/usr/WebSphere/CommerceServer70
SUN_WCS_HOME="/opt/WebSphere/CommerceServer70"
++ SUN_WCS_HOME=/opt/WebSphere/CommerceServer70
LNX_WCS_HOME=/opt/IBM/WebSphere/CommerceServer70
++ LNX_WCS_HOME=/opt/IBM/WebSphere/CommerceServer70
ISERIES_WCS_HOME="/QIBM/ProdData/CommerceServer70"
++ ISERIES_WCS_HOME=/QIBM/ProdData/CommerceServer70
ISERIES_WCS_USER_HOME="/QIBM/UserData/CommerceServer70"
++ ISERIES_WCS_USER_HOME=/QIBM/UserData/CommerceServer70



AIX_DB2_HOME="/usr/IBM/db2/V9.5"
++ AIX_DB2_HOME=/usr/IBM/db2/V9.5
SUN_DB2_HOME="/opt/IBM/db2/V9.5"
++ SUN_DB2_HOME=/opt/IBM/db2/V9.5
LNX_DB2_HOME=/opt/IBM/db2/V9.5
++ LNX_DB2_HOME=/opt/IBM/db2/V9.5




WAS_PLUGIN_HOME=/opt/IBM/WebSphere/Plugins
++ WAS_PLUGIN_HOME=/opt/IBM/WebSphere/Plugins
export WAS_PLUGIN_HOME
++ export WAS_PLUGIN_HOME

INSTALL_LOCALE=en_US
++ INSTALL_LOCALE=en_US
export INSTALL_LOCALE
++ export INSTALL_LOCALE

DBUSERHOME=/home/db2inst1
++ DBUSERHOME=/home/db2inst1
export DBUSERHOME
++ export DBUSERHOME

# Preset the WAS path by OS
# Set the WCS & DB2V7 install path
if [ "$OS_NAME" = "AIX" ] ; then
        WAS_HOME=$AIX_WAS_HOME
        WAS_INST=$AIX_WAS_HOME
        WCS_HOME=$AIX_WCS_HOME
        DB2_HOME=$AIX_DB2_HOME
        WCS_USER_HOME=$WCS_HOME
elif [ "$OS_NAME" = "SunOS" ] ; then
        WAS_HOME=$SUN_WAS_HOME
        WAS_INST=$SUN_WAS_HOME
        WCS_HOME=$SUN_WCS_HOME
        DB2_HOME=$SUN_DB2_HOME
        WCS_USER_HOME=$WCS_HOME
elif [ "$OS_NAME" = "Solaris" ] ; then
        WAS_HOME=$SUN_WAS_HOME
        WAS_INST=$SUN_WAS_HOME
        WCS_HOME=$SUN_WCS_HOME
        DB2_HOME=$SUN_DB2_HOME
        WCS_USER_HOME=$WCS_HOME
elif [ "$OS_NAME" = "Linux" ] ; then
        WAS_HOME=$LNX_WAS_HOME
        WAS_INST=$LNX_WAS_HOME
        WCS_HOME=$LNX_WCS_HOME
        DB2_HOME=$LNX_DB2_HOME
        WCS_USER_HOME=$WCS_HOME
# add by CDL    start
        PATH=.:$PATH
        export PATH
# add by CDL    end

else
        echo "Unsupported platform: $OS_NAME"
        echo "Exiting ..."
        exit 1
fi
++ '[' Linux = AIX ']'
++ '[' Linux = SunOS ']'
++ '[' Linux = Solaris ']'
++ '[' Linux = Linux ']'
++ WAS_HOME=/opt/IBM/WebSphere/AppServer
++ WAS_INST=/opt/IBM/WebSphere/AppServer
++ WCS_HOME=/opt/IBM/WebSphere/CommerceServer70
++ DB2_HOME=/opt/IBM/db2/V9.5
++ WCS_USER_HOME=/opt/IBM/WebSphere/CommerceServer70
++ PATH=.:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
++ export PATH

export WAS_HOME
++ export WAS_HOME
export WCS_HOME
++ export WCS_HOME
export DB2_HOME
++ export DB2_HOME


WCLOGDIR=$WCS_HOME/logs
++ WCLOGDIR=/opt/IBM/WebSphere/CommerceServer70/logs
WCTEMPDIR=$WCS_HOME/temp
++ WCTEMPDIR=/opt/IBM/WebSphere/CommerceServer70/temp


export WCLOGDIR
++ export WCLOGDIR
export WCTEMPDIR
++ export WCTEMPDIR



JAVA_HOME=$WAS_HOME/java/jre
++ JAVA_HOME=/opt/IBM/WebSphere/AppServer/java/jre


export JAVA_HOME
++ export JAVA_HOME

ORACLE_HOME=""
++ ORACLE_HOME=
export ORACLE_HOME
++ export ORACLE_HOME

if [ "$ORACLE_HOME" != "" ] ; then
        # ORACLE set so set below values
        NLS_LANG=AMERICAN_AMERICA.UTF8
        export NLS_LANG
        CLASSPATH=$CLASSPATH:$ORACLE_HOME/jdbc/lib/ojdbc6.jar
        CLASSPATH=$CLASSPATH:$ORACLE_HOME/jlib/orai18n.jar
        export CLASSPATH
fi
++ '[' '' '!=' '' ']'

TOOLBOX_DRIVER="$WCS_HOME/lib/jtopen.jar"
++ TOOLBOX_DRIVER=/opt/IBM/WebSphere/CommerceServer70/lib/jtopen.jar
export TOOLBOX_DRIVER
++ export TOOLBOX_DRIVER



DB2_DRIVER=$DB2_HOME/java/db2jcc4.jar:$DB2_HOME/java/db2jcc_license_cu.jar
++ DB2_DRIVER=/opt/IBM/db2/V9.5/java/db2jcc4.jar:/opt/IBM/db2/V9.5/java/db2jcc_license_cu.jar


export DB2_DRIVER
++ export DB2_DRIVER

ORACLE_CLASSPATH=$ORACLE_HOME/jdbc/lib/ojdbc6.jar
++ ORACLE_CLASSPATH=/jdbc/lib/ojdbc6.jar
ORACLE_LIBPATH=$ORACLE_HOME/lib32:$ORACLE_HOME/lib
++ ORACLE_LIBPATH=/lib32:/lib
WCS_PATH=$WCS_HOME/bin:$WAS_HOME/bin:$JAVA_HOME/bin:$DB2_HOME/bin
++ WCS_PATH=/opt/IBM/WebSphere/CommerceServer70/bin:/opt/IBM/WebSphere/AppServer/bin:/opt/IBM/WebSphere/AppServer/java/jre/bin:/opt/IBM/db2/V9.5/bin
export ORACLE_CLASSPATH
++ export ORACLE_CLASSPATH
export ORACLE_LIBPATH
++ export ORACLE_LIBPATH
export WCS_PATH
++ export WCS_PATH

# Duplicate from the non-root script the setting of the LIBPATH
if [ "$OS_NAME" = "AIX" ] || [ "$OS_NAME" = "SunOS" ] || [ "$OS_NAME" = "Solaris" ] || [ "$OS_NAME" = "Linux" ] ; then
    LD_LIBRARY_PATH=${WCS_HOME}/bin:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
fi
++ '[' Linux = AIX ']'
++ '[' Linux = SunOS ']'
++ '[' Linux = Solaris ']'
++ '[' Linux = Linux ']'
++ LD_LIBRARY_PATH=/opt/IBM/WebSphere/CommerceServer70/bin:
++ export LD_LIBRARY_PATH


WCS_JCE_CLASSPATH=$JAVA_HOME/lib/ext/ibmjcefw.jar:$JAVA_HOME/lib/ext/ibmjceprovider.jar:$JAVA_HOME/lib/ext/local_policy.jar:$JAVA_HOME/lib/ext/US_export_policy.jar
++ WCS_JCE_CLASSPATH=/opt/IBM/WebSphere/AppServer/java/jre/lib/ext/ibmjcefw.jar:/opt/IBM/WebSphere/AppServer/java/jre/lib/ext/ibmjceprovider.jar:/opt/IBM/WebSphere/AppServer/java/jre/lib/ext/local_policy.jar:/opt/IBM/WebSphere/AppServer/java/jre/lib/ext/US_export_policy.jar


export WCS_JCE_CLASSPATH
++ export WCS_JCE_CLASSPATH


JAVA_EXE="$JAVA_HOME/bin/java -DWAS_HOME=$WAS_HOME -DWAS_INST=$WAS_INST -DWAS_PLUGIN_HOME=$WAS_PLUGIN_HOME "
++ JAVA_EXE='/opt/IBM/WebSphere/AppServer/java/jre/bin/java -DWAS_HOME=/opt/IBM/WebSphere/AppServer -DWAS_INST=/opt/IBM/WebSphere/AppServer -DWAS_PLUGIN_HOME=/opt/IBM/WebSphere/Plugins '


export JAVA_EXE
++ export JAVA_EXE

PM_HOME=$WCS_HOME/payments
++ PM_HOME=/opt/IBM/WebSphere/CommerceServer70/payments
PM_DB_CLASSPATH=$DB2_DRIVER:$ORACLE_CLASSPATH
++ PM_DB_CLASSPATH=/opt/IBM/db2/V9.5/java/db2jcc4.jar:/opt/IBM/db2/V9.5/java/db2jcc_license_cu.jar:/jdbc/lib/ojdbc6.jar
export PM_HOME
++ export PM_HOME
export PM_DB_CLASSPATH
++ export PM_DB_CLASSPATH

getWCInstDir()
{
#input param:  <wcs_inst_name>
local instanme
if [ $# -ne 1 ]; then
        WC_INST=
else
        instname=$1
   WC_INST=`grep -i "^$instname;" $WCS_USER_HOME/instances/wcs_instances | sed 's/.*local\=\(.*\)\/xml\/.*$/\1/'`
fi
}


extract()
{
  ARGS=
  local argFound=
  local arg=$1
  EXTRACTED_VALUE=
  shift
  for i in "$@"
  do
    if test "$argFound" = "Y" ; then
      # Found the parameter last time
      EXTRACTED_VALUE=$i
      argFound="D"
    else
      if test "$i" = "-$arg" && test "$argFound" != "D" ; then
        # Next parameter is the value
        argFound="Y"
      else
        if [ -n "$ARGS" ]; then
          ARGS="$ARGS$NL$i"
        else
          ARGS="$i"
        fi
      fi
    fi
  done
  if [ ${#ARGS} -gt 0 ] ; then
    ARGS="$NL$ARGS"
  fi
}

  TEMP=`(/usr/bin/id | grep $CMSTARTUP_USER)`
(/usr/bin/id | grep $CMSTARTUP_USER)
++ /usr/bin/id
++ grep wcsuser
+ TEMP='uid=500(wcsuser) gid=500(wcsuser) groups=99(nobody),500(wcsuser),505(db2inst1)'
  if [ $? -ne 0 ]
  then
     echo "You must be $CMSTARTUP_USER user to run this."
     exit 1
  fi
+ '[' 0 -ne 0 ']'

jarpath=$WAS_HOME/plugins/*
+ jarpath='/opt/IBM/WebSphere/AppServer/plugins/*'




CLASSPATH=$WCS_HOME/lib:$WCS_HOME/lib/Enablement-BaseComponentsLogic.jar:$WCS_HOME/lib/wcsdepchecker.jar:$WCS_HOME/lib/ConfigManager.jar:$WCS_HOME/lib/icu4j.zip:$jarpath
+ CLASSPATH='/opt/IBM/WebSphere/CommerceServer70/lib:/opt/IBM/WebSphere/CommerceServer70/lib/Enablement-BaseComponentsLogic.jar:/opt/IBM/WebSphere/CommerceServer70/lib/wcsdepchecker.jar:/opt/IBM/WebSphere/CommerceServer70/lib/ConfigManager.jar:/opt/IBM/WebSphere/CommerceServer70/lib/icu4j.zip:/opt/IBM/WebSphere/AppServer/plugins/*'

LIBPATH=$WCS_HOME/bin:$LIBPATH
+ LIBPATH=/opt/IBM/WebSphere/CommerceServer70/bin:

${JAVA_EXE?} -cp $CLASSPATH:$WCS_HOME/lib/WCIntegrationWizard.jar  -Dcommerce.installLocation=$WCS_HOME -Dcommerce.user.installDir=$WCS_HOME  -DWAS_HOME=$WAS_HOME run -W Debug.systemValue="false" $*
+ /opt/IBM/WebSphere/AppServer/java/jre/bin/java -DWAS_HOME=/opt/IBM/WebSphere/AppServer -DWAS_INST=/opt/IBM/WebSphere/AppServer -DWAS_PLUGIN_HOME=/opt/IBM/WebSphere/Plugins -cp '/opt/IBM/WebSphere/CommerceServer70/lib:/opt/IBM/WebSphere/CommerceServer70/lib/Enablement-BaseComponentsLogic.jar:/opt/IBM/WebSphere/CommerceServer70/lib/wcsdepchecker.jar:/opt/IBM/WebSphere/CommerceServer70/lib/ConfigManager.jar:/opt/IBM/WebSphere/CommerceServer70/lib/icu4j.zip:/opt/IBM/WebSphere/AppServer/plugins/*:/opt/IBM/WebSphere/CommerceServer70/lib/WCIntegrationWizard.jar' -Dcommerce.installLocation=/opt/IBM/WebSphere/CommerceServer70 -Dcommerce.user.installDir=/opt/IBM/WebSphere/CommerceServer70 -DWAS_HOME=/opt/IBM/WebSphere/AppServer run -W Debug.systemValue=false
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified

The installer is unable to run in graphical mode. Try running the installer with the -console or -silent flag.
WARNING: could not write using log service: ServiceException: (error code = 200; message = "/wcp_ismp_install.log (Permission denied)"; severity = 0; exception = [java.io.FileNotFoundException: /wcp_ismp_install.log (Permission denied)])
(May 21, 2013 3:45:09 PM), Install.product.install, com.installshield.wizard.StandardWizardListener, err, could not initialize interface swing
I'm not aware about xterm. Can you please help in detail.
Thanks a lot.
 
Old 05-21-2013, 05:25 AM   #4
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,830

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
just execute the command xterm to check if it works. I think you made a sudo or something to change the user id.
 
Old 05-21-2013, 05:44 AM   #5
sukhdip
Member
 
Registered: Sep 2011
Posts: 55

Original Poster
Rep: Reputation: Disabled
Yes pan64, xterm is working, As i gave the command it opened a new window. What next?

---------- Post added 05-21-13 at 05:45 AM ----------

xterm by wcsuser(non-root) user is not working though. Only by root user its working.
 
Old 05-21-2013, 05:50 AM   #6
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,830

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
so as root you need to execute xhost +
not a safe solution but hopefully works

Last edited by pan64; 05-22-2013 at 01:48 AM. Reason: typo
 
Old 05-21-2013, 07:33 PM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,358

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Code:
Try running the installer with the -console ... flag
I'd use that option; much simpler
 
Old 05-22-2013, 02:02 AM   #8
sukhdip
Member
 
Registered: Sep 2011
Posts: 55

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by pan64 View Post
so as root you need to execute xhost +
not a safe solution but hopefully works
Hi pan64, Need your help. Got the below error with xhost

Code:
[root@CTSINMBPVPCC13 bin]# xhost +
access control disabled, clients can connect from any host


---------- Post added 05-22-13 at 02:03 AM ----------

Quote:
Originally Posted by chrism01 View Post
Code:
Try running the installer with the -console ... flag
I'd use that option; much simpler
hi chrism01

tried with console option also. not successfull. Please see the error below:
Code:
[wcsuser@CTSINMBPVPCC13 bin]$ ./WCIntegrationWizard.sh -console
The wizard cannot continue because of the following error: Invalid command line option: console is not supported (1001) (403)
 
Old 05-22-2013, 02:14 AM   #9
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,830

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
Quote:
Originally Posted by sukhdip View Post
Hi pan64, Need your help. Got the below error with xhost

Code:
[root@CTSINMBPVPCC13 bin]# xhost +
access control disabled, clients can connect from any host
This is not an error message, this is the expected behaviour. The next step would be to start your script as "usual".
 
Old 05-22-2013, 02:21 AM   #10
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,358

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
That's odd, considering it tells you to use that.
couple of ideas

1. try '-c' instead
2. contact the provider; much easier
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Run script after auto login on graphical system Lieve Linux - Newbie 5 10-09-2009 04:59 AM
How to enter graphical mode (run level 5) command line (run lenel 3) edmondgyampoh Linux - Newbie 3 05-15-2009 06:33 PM
Error as this program must be run in a graphical enviroment.. chandrala13 Linux - Software 1 06-03-2008 09:15 AM
error when tying to run python script(bash error?) shanenin Programming 5 01-10-2006 10:01 AM
run script error ust Linux - Software 7 09-09-2004 08:44 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration