How do I install Qtstalker on Ubuntu 17.10?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
The other posts about qtstalker on this site are pretty old, and I tried following the instructions here: http://qtstalker.sourceforge.net/install.html
but I failed miserably. Any help would be appreciated though. Thanks!
17.10 desktop-apps finance
add a comment |Â
up vote
1
down vote
favorite
The other posts about qtstalker on this site are pretty old, and I tried following the instructions here: http://qtstalker.sourceforge.net/install.html
but I failed miserably. Any help would be appreciated though. Thanks!
17.10 desktop-apps finance
What errors did you get? (and on which step/command)? , please be specific ideally with commands & errors (edit your question and add there). I opened the site it looked easy enough to follow, so detail would be helpful (beyond you fail...)
â guiverc
Feb 2 at 4:57
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
The other posts about qtstalker on this site are pretty old, and I tried following the instructions here: http://qtstalker.sourceforge.net/install.html
but I failed miserably. Any help would be appreciated though. Thanks!
17.10 desktop-apps finance
The other posts about qtstalker on this site are pretty old, and I tried following the instructions here: http://qtstalker.sourceforge.net/install.html
but I failed miserably. Any help would be appreciated though. Thanks!
17.10 desktop-apps finance
17.10 desktop-apps finance
asked Feb 2 at 4:02
![](https://i.stack.imgur.com/o91U8.png?s=32&g=1)
![](https://i.stack.imgur.com/o91U8.png?s=32&g=1)
Lumbeezl
889
889
What errors did you get? (and on which step/command)? , please be specific ideally with commands & errors (edit your question and add there). I opened the site it looked easy enough to follow, so detail would be helpful (beyond you fail...)
â guiverc
Feb 2 at 4:57
add a comment |Â
What errors did you get? (and on which step/command)? , please be specific ideally with commands & errors (edit your question and add there). I opened the site it looked easy enough to follow, so detail would be helpful (beyond you fail...)
â guiverc
Feb 2 at 4:57
What errors did you get? (and on which step/command)? , please be specific ideally with commands & errors (edit your question and add there). I opened the site it looked easy enough to follow, so detail would be helpful (beyond you fail...)
â guiverc
Feb 2 at 4:57
What errors did you get? (and on which step/command)? , please be specific ideally with commands & errors (edit your question and add there). I opened the site it looked easy enough to follow, so detail would be helpful (beyond you fail...)
â guiverc
Feb 2 at 4:57
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
This software is extremely old.
I see only one solution - you can install it into schroot with Ubuntu 12.04 LTS inside:
sudo apt-get install schroot debootstrap -y
cat <<EOF | sudo tee /etc/schroot/chroot.d/precise.conf
[precise]
description=Ubuntu 12.04 Precise
directory=/srv/chroot/precise
root-users=$USER
type=directory
users=$USER
EOF
sudo mkdir -p /srv/chroot/precise
create 32-bit chroot
sudo linux32 debootstrap --no-check-gpg precise /srv/chroot/precise
cat <<EOF | sudo tee /srv/chroot/precise/etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse
deb http://security.ubuntu.com/ubuntu precise-security main restricted universe multiverse
EOF
schroot -c precise -u root apt-get update
schroot -c precise -u root apt-get upgrade
Then you can install qtstalker as usual (they have deb-packages) and with some dependencies
mkdir -p ~/Downloads/qtstalker
cd ~/Downloads/qtstalker
wget http://www.zwets.com/debs/unstable/libqtstalker0-dev_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libqtstalker0_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libta-lib0_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-doc_0.36-2_all.deb
wget http://www.zwets.com/debs/unstable/ta-lib0-dev_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-quote-plugins_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-plugin-mysql_0.36.0-1_i386.deb
# dependencies
wget http://repo.percona.com/apt/pool/main/p/percona-sql-dfsg-5.0/libmysqlclient15off_5.0.92-b23.87.lenny_i386.deb
wget https://mirrors.mediatemple.net/debian-archive/debian/pool/main/d/db4.6/libdb4.6_4.6.21-16_i386.deb
go to chroot with
schroot -c precise -u root
and install deb-packages here with
apt-get install mysql-common -y
dpkg -i --force-all *.deb
apt-get install -f -y
dpkg -i --force-all *.deb
exit from schroot with
exit
Then try to launch qtstalker
from terminal
schroot -c precise env DISPLAY=:0.0 qtstalker
If it works you may want to create desktop shortcut for it as follows:
cat <<EOF > ~/Desktop/qtstalker.desktop
[Desktop Entry]
Type=Application
Version=1.0
Encoding=UTF-8
Name=Qtstalker
GenericName=Stock Charting
Exec=schroot -c precise env LC_ALL=en_US.UTF-8 DISPLAY=:0.0 qtstalker
Terminal=false
Type=Application
Icon=/srv/chroot/precise/usr/share/pixmaps/qtstalker.xpm
Categories=Graphics;Finance;Office;Qt;
X-Debian-Standards-Version=3.6.0
EOF
chmod +x ~/Desktop/qtstalker.desktop
And then launch QtStalker from desktop.
1
You sir, are a genius. That was very detailed and precise and it worked perfectly. Thanks for the help.
â Lumbeezl
Feb 5 at 23:56
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
This software is extremely old.
I see only one solution - you can install it into schroot with Ubuntu 12.04 LTS inside:
sudo apt-get install schroot debootstrap -y
cat <<EOF | sudo tee /etc/schroot/chroot.d/precise.conf
[precise]
description=Ubuntu 12.04 Precise
directory=/srv/chroot/precise
root-users=$USER
type=directory
users=$USER
EOF
sudo mkdir -p /srv/chroot/precise
create 32-bit chroot
sudo linux32 debootstrap --no-check-gpg precise /srv/chroot/precise
cat <<EOF | sudo tee /srv/chroot/precise/etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse
deb http://security.ubuntu.com/ubuntu precise-security main restricted universe multiverse
EOF
schroot -c precise -u root apt-get update
schroot -c precise -u root apt-get upgrade
Then you can install qtstalker as usual (they have deb-packages) and with some dependencies
mkdir -p ~/Downloads/qtstalker
cd ~/Downloads/qtstalker
wget http://www.zwets.com/debs/unstable/libqtstalker0-dev_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libqtstalker0_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libta-lib0_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-doc_0.36-2_all.deb
wget http://www.zwets.com/debs/unstable/ta-lib0-dev_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-quote-plugins_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-plugin-mysql_0.36.0-1_i386.deb
# dependencies
wget http://repo.percona.com/apt/pool/main/p/percona-sql-dfsg-5.0/libmysqlclient15off_5.0.92-b23.87.lenny_i386.deb
wget https://mirrors.mediatemple.net/debian-archive/debian/pool/main/d/db4.6/libdb4.6_4.6.21-16_i386.deb
go to chroot with
schroot -c precise -u root
and install deb-packages here with
apt-get install mysql-common -y
dpkg -i --force-all *.deb
apt-get install -f -y
dpkg -i --force-all *.deb
exit from schroot with
exit
Then try to launch qtstalker
from terminal
schroot -c precise env DISPLAY=:0.0 qtstalker
If it works you may want to create desktop shortcut for it as follows:
cat <<EOF > ~/Desktop/qtstalker.desktop
[Desktop Entry]
Type=Application
Version=1.0
Encoding=UTF-8
Name=Qtstalker
GenericName=Stock Charting
Exec=schroot -c precise env LC_ALL=en_US.UTF-8 DISPLAY=:0.0 qtstalker
Terminal=false
Type=Application
Icon=/srv/chroot/precise/usr/share/pixmaps/qtstalker.xpm
Categories=Graphics;Finance;Office;Qt;
X-Debian-Standards-Version=3.6.0
EOF
chmod +x ~/Desktop/qtstalker.desktop
And then launch QtStalker from desktop.
1
You sir, are a genius. That was very detailed and precise and it worked perfectly. Thanks for the help.
â Lumbeezl
Feb 5 at 23:56
add a comment |Â
up vote
1
down vote
accepted
This software is extremely old.
I see only one solution - you can install it into schroot with Ubuntu 12.04 LTS inside:
sudo apt-get install schroot debootstrap -y
cat <<EOF | sudo tee /etc/schroot/chroot.d/precise.conf
[precise]
description=Ubuntu 12.04 Precise
directory=/srv/chroot/precise
root-users=$USER
type=directory
users=$USER
EOF
sudo mkdir -p /srv/chroot/precise
create 32-bit chroot
sudo linux32 debootstrap --no-check-gpg precise /srv/chroot/precise
cat <<EOF | sudo tee /srv/chroot/precise/etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse
deb http://security.ubuntu.com/ubuntu precise-security main restricted universe multiverse
EOF
schroot -c precise -u root apt-get update
schroot -c precise -u root apt-get upgrade
Then you can install qtstalker as usual (they have deb-packages) and with some dependencies
mkdir -p ~/Downloads/qtstalker
cd ~/Downloads/qtstalker
wget http://www.zwets.com/debs/unstable/libqtstalker0-dev_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libqtstalker0_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libta-lib0_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-doc_0.36-2_all.deb
wget http://www.zwets.com/debs/unstable/ta-lib0-dev_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-quote-plugins_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-plugin-mysql_0.36.0-1_i386.deb
# dependencies
wget http://repo.percona.com/apt/pool/main/p/percona-sql-dfsg-5.0/libmysqlclient15off_5.0.92-b23.87.lenny_i386.deb
wget https://mirrors.mediatemple.net/debian-archive/debian/pool/main/d/db4.6/libdb4.6_4.6.21-16_i386.deb
go to chroot with
schroot -c precise -u root
and install deb-packages here with
apt-get install mysql-common -y
dpkg -i --force-all *.deb
apt-get install -f -y
dpkg -i --force-all *.deb
exit from schroot with
exit
Then try to launch qtstalker
from terminal
schroot -c precise env DISPLAY=:0.0 qtstalker
If it works you may want to create desktop shortcut for it as follows:
cat <<EOF > ~/Desktop/qtstalker.desktop
[Desktop Entry]
Type=Application
Version=1.0
Encoding=UTF-8
Name=Qtstalker
GenericName=Stock Charting
Exec=schroot -c precise env LC_ALL=en_US.UTF-8 DISPLAY=:0.0 qtstalker
Terminal=false
Type=Application
Icon=/srv/chroot/precise/usr/share/pixmaps/qtstalker.xpm
Categories=Graphics;Finance;Office;Qt;
X-Debian-Standards-Version=3.6.0
EOF
chmod +x ~/Desktop/qtstalker.desktop
And then launch QtStalker from desktop.
1
You sir, are a genius. That was very detailed and precise and it worked perfectly. Thanks for the help.
â Lumbeezl
Feb 5 at 23:56
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
This software is extremely old.
I see only one solution - you can install it into schroot with Ubuntu 12.04 LTS inside:
sudo apt-get install schroot debootstrap -y
cat <<EOF | sudo tee /etc/schroot/chroot.d/precise.conf
[precise]
description=Ubuntu 12.04 Precise
directory=/srv/chroot/precise
root-users=$USER
type=directory
users=$USER
EOF
sudo mkdir -p /srv/chroot/precise
create 32-bit chroot
sudo linux32 debootstrap --no-check-gpg precise /srv/chroot/precise
cat <<EOF | sudo tee /srv/chroot/precise/etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse
deb http://security.ubuntu.com/ubuntu precise-security main restricted universe multiverse
EOF
schroot -c precise -u root apt-get update
schroot -c precise -u root apt-get upgrade
Then you can install qtstalker as usual (they have deb-packages) and with some dependencies
mkdir -p ~/Downloads/qtstalker
cd ~/Downloads/qtstalker
wget http://www.zwets.com/debs/unstable/libqtstalker0-dev_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libqtstalker0_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libta-lib0_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-doc_0.36-2_all.deb
wget http://www.zwets.com/debs/unstable/ta-lib0-dev_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-quote-plugins_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-plugin-mysql_0.36.0-1_i386.deb
# dependencies
wget http://repo.percona.com/apt/pool/main/p/percona-sql-dfsg-5.0/libmysqlclient15off_5.0.92-b23.87.lenny_i386.deb
wget https://mirrors.mediatemple.net/debian-archive/debian/pool/main/d/db4.6/libdb4.6_4.6.21-16_i386.deb
go to chroot with
schroot -c precise -u root
and install deb-packages here with
apt-get install mysql-common -y
dpkg -i --force-all *.deb
apt-get install -f -y
dpkg -i --force-all *.deb
exit from schroot with
exit
Then try to launch qtstalker
from terminal
schroot -c precise env DISPLAY=:0.0 qtstalker
If it works you may want to create desktop shortcut for it as follows:
cat <<EOF > ~/Desktop/qtstalker.desktop
[Desktop Entry]
Type=Application
Version=1.0
Encoding=UTF-8
Name=Qtstalker
GenericName=Stock Charting
Exec=schroot -c precise env LC_ALL=en_US.UTF-8 DISPLAY=:0.0 qtstalker
Terminal=false
Type=Application
Icon=/srv/chroot/precise/usr/share/pixmaps/qtstalker.xpm
Categories=Graphics;Finance;Office;Qt;
X-Debian-Standards-Version=3.6.0
EOF
chmod +x ~/Desktop/qtstalker.desktop
And then launch QtStalker from desktop.
This software is extremely old.
I see only one solution - you can install it into schroot with Ubuntu 12.04 LTS inside:
sudo apt-get install schroot debootstrap -y
cat <<EOF | sudo tee /etc/schroot/chroot.d/precise.conf
[precise]
description=Ubuntu 12.04 Precise
directory=/srv/chroot/precise
root-users=$USER
type=directory
users=$USER
EOF
sudo mkdir -p /srv/chroot/precise
create 32-bit chroot
sudo linux32 debootstrap --no-check-gpg precise /srv/chroot/precise
cat <<EOF | sudo tee /srv/chroot/precise/etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu precise main universe multiverse
deb http://security.ubuntu.com/ubuntu precise-security main restricted universe multiverse
EOF
schroot -c precise -u root apt-get update
schroot -c precise -u root apt-get upgrade
Then you can install qtstalker as usual (they have deb-packages) and with some dependencies
mkdir -p ~/Downloads/qtstalker
cd ~/Downloads/qtstalker
wget http://www.zwets.com/debs/unstable/libqtstalker0-dev_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libqtstalker0_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/libta-lib0_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-doc_0.36-2_all.deb
wget http://www.zwets.com/debs/unstable/ta-lib0-dev_0.4.0-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-quote-plugins_0.36-2_i386.deb
wget http://www.zwets.com/debs/unstable/qtstalker-plugin-mysql_0.36.0-1_i386.deb
# dependencies
wget http://repo.percona.com/apt/pool/main/p/percona-sql-dfsg-5.0/libmysqlclient15off_5.0.92-b23.87.lenny_i386.deb
wget https://mirrors.mediatemple.net/debian-archive/debian/pool/main/d/db4.6/libdb4.6_4.6.21-16_i386.deb
go to chroot with
schroot -c precise -u root
and install deb-packages here with
apt-get install mysql-common -y
dpkg -i --force-all *.deb
apt-get install -f -y
dpkg -i --force-all *.deb
exit from schroot with
exit
Then try to launch qtstalker
from terminal
schroot -c precise env DISPLAY=:0.0 qtstalker
If it works you may want to create desktop shortcut for it as follows:
cat <<EOF > ~/Desktop/qtstalker.desktop
[Desktop Entry]
Type=Application
Version=1.0
Encoding=UTF-8
Name=Qtstalker
GenericName=Stock Charting
Exec=schroot -c precise env LC_ALL=en_US.UTF-8 DISPLAY=:0.0 qtstalker
Terminal=false
Type=Application
Icon=/srv/chroot/precise/usr/share/pixmaps/qtstalker.xpm
Categories=Graphics;Finance;Office;Qt;
X-Debian-Standards-Version=3.6.0
EOF
chmod +x ~/Desktop/qtstalker.desktop
And then launch QtStalker from desktop.
answered Feb 2 at 11:08
N0rbert
16.7k33479
16.7k33479
1
You sir, are a genius. That was very detailed and precise and it worked perfectly. Thanks for the help.
â Lumbeezl
Feb 5 at 23:56
add a comment |Â
1
You sir, are a genius. That was very detailed and precise and it worked perfectly. Thanks for the help.
â Lumbeezl
Feb 5 at 23:56
1
1
You sir, are a genius. That was very detailed and precise and it worked perfectly. Thanks for the help.
â Lumbeezl
Feb 5 at 23:56
You sir, are a genius. That was very detailed and precise and it worked perfectly. Thanks for the help.
â Lumbeezl
Feb 5 at 23:56
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1002250%2fhow-do-i-install-qtstalker-on-ubuntu-17-10%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
What errors did you get? (and on which step/command)? , please be specific ideally with commands & errors (edit your question and add there). I opened the site it looked easy enough to follow, so detail would be helpful (beyond you fail...)
â guiverc
Feb 2 at 4:57