SmartGit/Hg launch error The Next CEO of Stack OverflowSetting JAVA_HOME on Ubuntu...
% symbol leads to superlong (forever?) compilations
Grabbing quick drinks
How long to clear the 'suck zone' of a turbofan after start is initiated?
Why here is plural "We went to the movies last night."
How do spells that require an ability check vs. the caster's spell save DC work?
WOW air has ceased operation, can I get my tickets refunded?
How did people program for Consoles with multiple CPUs?
Failed to fetch jessie backports repository
Can the Reverse Gravity spell affect the Meteor Swarm spell?
What makes a siege story/plot interesting?
How to write papers efficiently when English isn't my first language?
Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?
Why were Madagascar and New Zealand discovered so late?
How do I solve this limit?
Go Pregnant or Go Home
What does "Its cash flow is deeply negative" mean?
Whats the best way to handle refactoring a big file?
Why do remote companies require working in the US?
Why does standard notation not preserve intervals (visually)
Can a single photon have an energy density?
MAZDA 3 2006 (UK) - poor acceleration then takes off at 3250 revs
How easy is it to start Magic from scratch?
Science fiction (dystopian) short story set after WWIII
How to start emacs in "nothing" mode (`fundamental-mode`)
SmartGit/Hg launch error
The Next CEO of Stack OverflowSetting JAVA_HOME on Ubuntu 10.xinstalling jdk1.7.0 on Ubuntu 11.04 machineOpenJDK timezone issues: sun.util.calendar.ZoneInfoFile.getZoneIDsOracle Java Ubuntu Installation - Javac not functioningInstalling JCC Ubuntu asking for path varaiableHow to set the Java versionjava 7 on debian 6.0 not working usr/bin/java no such file or directoryJAVA_HOME errors when run without sudocannot set JAVA_HOMESetting the System proxy using _JAVA_OPTIONS/net.properties
For a personal project, I've been trying to get SmartGit/Hg to run from a portable drive. To do this, I am using the "generic" version that runs on Java alone. Unfortunately, every time I try to launch it, the following errors show up:
Error invoking SmartGit/Hg
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at QBootLoader.main(SourceFile:112)
Caused by: java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Display
at com.syntevo.q.gui.cl.a(SourceFile:43)
at smartgit.Xl.a(SourceFile:320)
at smartgit.anQ.a(SourceFile:229)
at smartgit.anQ.b(SourceFile:185)
at smartgit.anQ.a(SourceFile:72)
at smartgit.anR.a(SourceFile:114)
at smartgit.anR.call(SourceFile:111)
at com.syntevo.q.gui.cl.a(SourceFile:84)
at smartgit.anQ.a(SourceFile:111)
at smartgit.XA.b(SourceFile:62)
at SmartGit.main(SourceFile:11)
... 5 more
Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.widgets.Display
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 16 more
Since this is a commercial program, I cannot legally check any of the files mentioned for errors. If anyone has worked with SmartGit/Hg and knows how to fix this error, I would greatly appreciate any assistance. I hope is not too specific of a question to be removed from the listing since I could not find any other information on the errors.
Slight addition to information: The launcher that is being used is derived from the following supplied .sh file:
#!/bin/bash
#
# Normally, editing this script should not be required.
#
# To specify an alternative Java Runtime Environment, set the environment variable SMARTGITHG_JAVA_HOME
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$SMARTGIT_JAVA_HOME
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] && [ -f "/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java" ] ; then
SMARTGITHG_JAVA_HOME="/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java"
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$JAVA_HOME
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=$SMARTGIT_MAX_HEAP_SIZE
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=256m
fi
# this seems necessary for Solaris to find the Cairo-library
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib/gnome-private/lib
_JAVA_EXEC="java"
if [ "$SMARTGITHG_JAVA_HOME" != "" ] ; then
_TMP="$SMARTGITHG_JAVA_HOME/bin/java"
if [ -f "$_TMP" ] ; then
if [ -x "$_TMP" ] ; then
_JAVA_EXEC="$_TMP"
else
echo "Warning: $_TMP is not executable"
fi
else
echo "Warning: $_TMP does not exist"
fi
fi
if ! which "$_JAVA_EXEC" >/dev/null ; then
echo "Error: No java environment found"
exit 1
fi
#
# Resolve the location of the SmartGit/Hg installation.
# This includes resolving any symlinks.
PRG=$0
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '^.*-> (.*)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
SMARTGIT_BIN=`dirname "$PRG"`
# absolutize dir
oldpwd=`pwd`
cd "${SMARTGIT_BIN}"; SMARTGIT_BIN=`pwd`
cd "${oldpwd}"; unset oldpwd
SMARTGIT_HOME=`dirname "$SMARTGIT_BIN"`
# The next line is to work around following SWT bug:
# https://bugs.eclipse.org/bugs/show_bug.cgi?id=419729
UBUNTU_MENUPROXY=0
_VM_PROPERTIES="-Dsun.io.useCanonCaches=false"
# Uncomment the following line to change the location where SmartGit/Hg should store
# settings (the given example path will make SmartGit/Hg portable by storing the settings
# in the installation directory):
#_VM_PROPERTIES="$_VM_PROPERTIES -Dsmartgit.settings=${smartgit.installation}/.smartgit"
$_JAVA_EXEC $_VM_PROPERTIES -Xmx${SMARTGITHG_MAX_HEAP_SIZE} -Xverify:none -Dsmartgit.vm-xmx=${SMARTGITHG_MAX_HEAP_SIZE} -jar "$SMARTGIT_HOME/lib/bootloader.jar" "$@"
java git hg
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
For a personal project, I've been trying to get SmartGit/Hg to run from a portable drive. To do this, I am using the "generic" version that runs on Java alone. Unfortunately, every time I try to launch it, the following errors show up:
Error invoking SmartGit/Hg
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at QBootLoader.main(SourceFile:112)
Caused by: java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Display
at com.syntevo.q.gui.cl.a(SourceFile:43)
at smartgit.Xl.a(SourceFile:320)
at smartgit.anQ.a(SourceFile:229)
at smartgit.anQ.b(SourceFile:185)
at smartgit.anQ.a(SourceFile:72)
at smartgit.anR.a(SourceFile:114)
at smartgit.anR.call(SourceFile:111)
at com.syntevo.q.gui.cl.a(SourceFile:84)
at smartgit.anQ.a(SourceFile:111)
at smartgit.XA.b(SourceFile:62)
at SmartGit.main(SourceFile:11)
... 5 more
Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.widgets.Display
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 16 more
Since this is a commercial program, I cannot legally check any of the files mentioned for errors. If anyone has worked with SmartGit/Hg and knows how to fix this error, I would greatly appreciate any assistance. I hope is not too specific of a question to be removed from the listing since I could not find any other information on the errors.
Slight addition to information: The launcher that is being used is derived from the following supplied .sh file:
#!/bin/bash
#
# Normally, editing this script should not be required.
#
# To specify an alternative Java Runtime Environment, set the environment variable SMARTGITHG_JAVA_HOME
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$SMARTGIT_JAVA_HOME
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] && [ -f "/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java" ] ; then
SMARTGITHG_JAVA_HOME="/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java"
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$JAVA_HOME
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=$SMARTGIT_MAX_HEAP_SIZE
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=256m
fi
# this seems necessary for Solaris to find the Cairo-library
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib/gnome-private/lib
_JAVA_EXEC="java"
if [ "$SMARTGITHG_JAVA_HOME" != "" ] ; then
_TMP="$SMARTGITHG_JAVA_HOME/bin/java"
if [ -f "$_TMP" ] ; then
if [ -x "$_TMP" ] ; then
_JAVA_EXEC="$_TMP"
else
echo "Warning: $_TMP is not executable"
fi
else
echo "Warning: $_TMP does not exist"
fi
fi
if ! which "$_JAVA_EXEC" >/dev/null ; then
echo "Error: No java environment found"
exit 1
fi
#
# Resolve the location of the SmartGit/Hg installation.
# This includes resolving any symlinks.
PRG=$0
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '^.*-> (.*)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
SMARTGIT_BIN=`dirname "$PRG"`
# absolutize dir
oldpwd=`pwd`
cd "${SMARTGIT_BIN}"; SMARTGIT_BIN=`pwd`
cd "${oldpwd}"; unset oldpwd
SMARTGIT_HOME=`dirname "$SMARTGIT_BIN"`
# The next line is to work around following SWT bug:
# https://bugs.eclipse.org/bugs/show_bug.cgi?id=419729
UBUNTU_MENUPROXY=0
_VM_PROPERTIES="-Dsun.io.useCanonCaches=false"
# Uncomment the following line to change the location where SmartGit/Hg should store
# settings (the given example path will make SmartGit/Hg portable by storing the settings
# in the installation directory):
#_VM_PROPERTIES="$_VM_PROPERTIES -Dsmartgit.settings=${smartgit.installation}/.smartgit"
$_JAVA_EXEC $_VM_PROPERTIES -Xmx${SMARTGITHG_MAX_HEAP_SIZE} -Xverify:none -Dsmartgit.vm-xmx=${SMARTGITHG_MAX_HEAP_SIZE} -jar "$SMARTGIT_HOME/lib/bootloader.jar" "$@"
java git hg
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
For a personal project, I've been trying to get SmartGit/Hg to run from a portable drive. To do this, I am using the "generic" version that runs on Java alone. Unfortunately, every time I try to launch it, the following errors show up:
Error invoking SmartGit/Hg
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at QBootLoader.main(SourceFile:112)
Caused by: java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Display
at com.syntevo.q.gui.cl.a(SourceFile:43)
at smartgit.Xl.a(SourceFile:320)
at smartgit.anQ.a(SourceFile:229)
at smartgit.anQ.b(SourceFile:185)
at smartgit.anQ.a(SourceFile:72)
at smartgit.anR.a(SourceFile:114)
at smartgit.anR.call(SourceFile:111)
at com.syntevo.q.gui.cl.a(SourceFile:84)
at smartgit.anQ.a(SourceFile:111)
at smartgit.XA.b(SourceFile:62)
at SmartGit.main(SourceFile:11)
... 5 more
Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.widgets.Display
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 16 more
Since this is a commercial program, I cannot legally check any of the files mentioned for errors. If anyone has worked with SmartGit/Hg and knows how to fix this error, I would greatly appreciate any assistance. I hope is not too specific of a question to be removed from the listing since I could not find any other information on the errors.
Slight addition to information: The launcher that is being used is derived from the following supplied .sh file:
#!/bin/bash
#
# Normally, editing this script should not be required.
#
# To specify an alternative Java Runtime Environment, set the environment variable SMARTGITHG_JAVA_HOME
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$SMARTGIT_JAVA_HOME
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] && [ -f "/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java" ] ; then
SMARTGITHG_JAVA_HOME="/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java"
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$JAVA_HOME
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=$SMARTGIT_MAX_HEAP_SIZE
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=256m
fi
# this seems necessary for Solaris to find the Cairo-library
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib/gnome-private/lib
_JAVA_EXEC="java"
if [ "$SMARTGITHG_JAVA_HOME" != "" ] ; then
_TMP="$SMARTGITHG_JAVA_HOME/bin/java"
if [ -f "$_TMP" ] ; then
if [ -x "$_TMP" ] ; then
_JAVA_EXEC="$_TMP"
else
echo "Warning: $_TMP is not executable"
fi
else
echo "Warning: $_TMP does not exist"
fi
fi
if ! which "$_JAVA_EXEC" >/dev/null ; then
echo "Error: No java environment found"
exit 1
fi
#
# Resolve the location of the SmartGit/Hg installation.
# This includes resolving any symlinks.
PRG=$0
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '^.*-> (.*)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
SMARTGIT_BIN=`dirname "$PRG"`
# absolutize dir
oldpwd=`pwd`
cd "${SMARTGIT_BIN}"; SMARTGIT_BIN=`pwd`
cd "${oldpwd}"; unset oldpwd
SMARTGIT_HOME=`dirname "$SMARTGIT_BIN"`
# The next line is to work around following SWT bug:
# https://bugs.eclipse.org/bugs/show_bug.cgi?id=419729
UBUNTU_MENUPROXY=0
_VM_PROPERTIES="-Dsun.io.useCanonCaches=false"
# Uncomment the following line to change the location where SmartGit/Hg should store
# settings (the given example path will make SmartGit/Hg portable by storing the settings
# in the installation directory):
#_VM_PROPERTIES="$_VM_PROPERTIES -Dsmartgit.settings=${smartgit.installation}/.smartgit"
$_JAVA_EXEC $_VM_PROPERTIES -Xmx${SMARTGITHG_MAX_HEAP_SIZE} -Xverify:none -Dsmartgit.vm-xmx=${SMARTGITHG_MAX_HEAP_SIZE} -jar "$SMARTGIT_HOME/lib/bootloader.jar" "$@"
java git hg
For a personal project, I've been trying to get SmartGit/Hg to run from a portable drive. To do this, I am using the "generic" version that runs on Java alone. Unfortunately, every time I try to launch it, the following errors show up:
Error invoking SmartGit/Hg
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at QBootLoader.main(SourceFile:112)
Caused by: java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Display
at com.syntevo.q.gui.cl.a(SourceFile:43)
at smartgit.Xl.a(SourceFile:320)
at smartgit.anQ.a(SourceFile:229)
at smartgit.anQ.b(SourceFile:185)
at smartgit.anQ.a(SourceFile:72)
at smartgit.anR.a(SourceFile:114)
at smartgit.anR.call(SourceFile:111)
at com.syntevo.q.gui.cl.a(SourceFile:84)
at smartgit.anQ.a(SourceFile:111)
at smartgit.XA.b(SourceFile:62)
at SmartGit.main(SourceFile:11)
... 5 more
Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.widgets.Display
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 16 more
Since this is a commercial program, I cannot legally check any of the files mentioned for errors. If anyone has worked with SmartGit/Hg and knows how to fix this error, I would greatly appreciate any assistance. I hope is not too specific of a question to be removed from the listing since I could not find any other information on the errors.
Slight addition to information: The launcher that is being used is derived from the following supplied .sh file:
#!/bin/bash
#
# Normally, editing this script should not be required.
#
# To specify an alternative Java Runtime Environment, set the environment variable SMARTGITHG_JAVA_HOME
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$SMARTGIT_JAVA_HOME
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] && [ -f "/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java" ] ; then
SMARTGITHG_JAVA_HOME="/usr/lib/jvm/java-7-openjdk-i386/jre/bin/java"
fi
if [ "$SMARTGITHG_JAVA_HOME" = "" ] ; then
SMARTGITHG_JAVA_HOME=$JAVA_HOME
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=$SMARTGIT_MAX_HEAP_SIZE
fi
if [ "$SMARTGITHG_MAX_HEAP_SIZE" = "" ] ; then
SMARTGITHG_MAX_HEAP_SIZE=256m
fi
# this seems necessary for Solaris to find the Cairo-library
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib/gnome-private/lib
_JAVA_EXEC="java"
if [ "$SMARTGITHG_JAVA_HOME" != "" ] ; then
_TMP="$SMARTGITHG_JAVA_HOME/bin/java"
if [ -f "$_TMP" ] ; then
if [ -x "$_TMP" ] ; then
_JAVA_EXEC="$_TMP"
else
echo "Warning: $_TMP is not executable"
fi
else
echo "Warning: $_TMP does not exist"
fi
fi
if ! which "$_JAVA_EXEC" >/dev/null ; then
echo "Error: No java environment found"
exit 1
fi
#
# Resolve the location of the SmartGit/Hg installation.
# This includes resolving any symlinks.
PRG=$0
while [ -h "$PRG" ]; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '^.*-> (.*)$' 2>/dev/null`
if expr "$link" : '^/' 2> /dev/null >/dev/null; then
PRG="$link"
else
PRG="`dirname "$PRG"`/$link"
fi
done
SMARTGIT_BIN=`dirname "$PRG"`
# absolutize dir
oldpwd=`pwd`
cd "${SMARTGIT_BIN}"; SMARTGIT_BIN=`pwd`
cd "${oldpwd}"; unset oldpwd
SMARTGIT_HOME=`dirname "$SMARTGIT_BIN"`
# The next line is to work around following SWT bug:
# https://bugs.eclipse.org/bugs/show_bug.cgi?id=419729
UBUNTU_MENUPROXY=0
_VM_PROPERTIES="-Dsun.io.useCanonCaches=false"
# Uncomment the following line to change the location where SmartGit/Hg should store
# settings (the given example path will make SmartGit/Hg portable by storing the settings
# in the installation directory):
#_VM_PROPERTIES="$_VM_PROPERTIES -Dsmartgit.settings=${smartgit.installation}/.smartgit"
$_JAVA_EXEC $_VM_PROPERTIES -Xmx${SMARTGITHG_MAX_HEAP_SIZE} -Xverify:none -Dsmartgit.vm-xmx=${SMARTGITHG_MAX_HEAP_SIZE} -jar "$SMARTGIT_HOME/lib/bootloader.jar" "$@"
java git hg
java git hg
asked Oct 27 '13 at 23:28
mnadareskimnadareski
315
315
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 12 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
In my case it was not using X windows in my ciXwin correctly. I needed to remember to start my SSH with:
$ ssh -Y vagrant@localhost
I realize you may not be using the same system as mine, but that might give you something to go on!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f666134%2fsmartgit-hg-launch-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In my case it was not using X windows in my ciXwin correctly. I needed to remember to start my SSH with:
$ ssh -Y vagrant@localhost
I realize you may not be using the same system as mine, but that might give you something to go on!
add a comment |
In my case it was not using X windows in my ciXwin correctly. I needed to remember to start my SSH with:
$ ssh -Y vagrant@localhost
I realize you may not be using the same system as mine, but that might give you something to go on!
add a comment |
In my case it was not using X windows in my ciXwin correctly. I needed to remember to start my SSH with:
$ ssh -Y vagrant@localhost
I realize you may not be using the same system as mine, but that might give you something to go on!
In my case it was not using X windows in my ciXwin correctly. I needed to remember to start my SSH with:
$ ssh -Y vagrant@localhost
I realize you may not be using the same system as mine, but that might give you something to go on!
edited Mar 2 '14 at 22:42
random♦
12.9k84757
12.9k84757
answered Mar 2 '14 at 18:06
Thomas GreenThomas Green
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f666134%2fsmartgit-hg-launch-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown