How to run Cisco packet tracer via command line
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I downloaded the Cisco Packet tracer .bin file from
http://www.mediafire.com/?r95gqy7n331ht8t
then typed the following command,
sudo sh PacketTracer533_i386_installer-deb.bin
that command installed the Cisco Packet tracer for me, but I am not getting any way to run it.
Please help.
command-line cisco
bumped to the homepage by Community♦ yesterday
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 |
I downloaded the Cisco Packet tracer .bin file from
http://www.mediafire.com/?r95gqy7n331ht8t
then typed the following command,
sudo sh PacketTracer533_i386_installer-deb.bin
that command installed the Cisco Packet tracer for me, but I am not getting any way to run it.
Please help.
command-line cisco
bumped to the homepage by Community♦ yesterday
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 |
I downloaded the Cisco Packet tracer .bin file from
http://www.mediafire.com/?r95gqy7n331ht8t
then typed the following command,
sudo sh PacketTracer533_i386_installer-deb.bin
that command installed the Cisco Packet tracer for me, but I am not getting any way to run it.
Please help.
command-line cisco
I downloaded the Cisco Packet tracer .bin file from
http://www.mediafire.com/?r95gqy7n331ht8t
then typed the following command,
sudo sh PacketTracer533_i386_installer-deb.bin
that command installed the Cisco Packet tracer for me, but I am not getting any way to run it.
Please help.
command-line cisco
command-line cisco
asked Apr 29 '15 at 1:49
DebDeb
1173513
1173513
bumped to the homepage by Community♦ yesterday
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♦ yesterday
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 |
3 Answers
3
active
oldest
votes
The command to run Cisco Packet Tracer is packettracer
On running above command I get : "Command not found."
– Deb
Apr 29 '15 at 6:16
@Deb Sounds like it's not in your PATH. In that case you would need to go to the directory that contains the packettracer program, or follow the answer of New USer to run it from anywhere
– cremefraiche
Apr 29 '15 at 7:56
add a comment |
The installer extract files to the path:
/usr/local/PacketTracer*/
The executable is:
/usr/local/PacketTracer*/bin/PacketTracer*
now you can make a soft link so you can run command directly in your terminal:
sudo ln -s /usr/local/PacketTracer*/bin/PacketTracer* /usr/local/bin/
Hi @Maythux. In my situation, default installation, the packet is in /opt/pt not in /usr. I will write that in my next answer, copy and paste from your solution. Then I will delete it if you edit your responce with that correction (and write something as comment on my answer)
– feligiotti
May 30 '15 at 16:09
add a comment |
You have to find where the installation program is located, enter in that directory then do:
./packettracer
in my situation is:
/opt/pt/./packettracer
As @Maythux say, to let you execute via bash directly, you can do a link in /usr/local/bin/
The script executable is:
/opt/pt/packettracer
now you can make a soft link so you can run command directly in your
terminal:
sudo ln -s /opt/pt/packettracer /usr/local/bin/
or, simple, copy that file-script in your Desktop.
NB make it executable if isn't!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f615635%2fhow-to-run-cisco-packet-tracer-via-command-line%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The command to run Cisco Packet Tracer is packettracer
On running above command I get : "Command not found."
– Deb
Apr 29 '15 at 6:16
@Deb Sounds like it's not in your PATH. In that case you would need to go to the directory that contains the packettracer program, or follow the answer of New USer to run it from anywhere
– cremefraiche
Apr 29 '15 at 7:56
add a comment |
The command to run Cisco Packet Tracer is packettracer
On running above command I get : "Command not found."
– Deb
Apr 29 '15 at 6:16
@Deb Sounds like it's not in your PATH. In that case you would need to go to the directory that contains the packettracer program, or follow the answer of New USer to run it from anywhere
– cremefraiche
Apr 29 '15 at 7:56
add a comment |
The command to run Cisco Packet Tracer is packettracer
The command to run Cisco Packet Tracer is packettracer
answered Apr 29 '15 at 2:21
cremefraichecremefraiche
292110
292110
On running above command I get : "Command not found."
– Deb
Apr 29 '15 at 6:16
@Deb Sounds like it's not in your PATH. In that case you would need to go to the directory that contains the packettracer program, or follow the answer of New USer to run it from anywhere
– cremefraiche
Apr 29 '15 at 7:56
add a comment |
On running above command I get : "Command not found."
– Deb
Apr 29 '15 at 6:16
@Deb Sounds like it's not in your PATH. In that case you would need to go to the directory that contains the packettracer program, or follow the answer of New USer to run it from anywhere
– cremefraiche
Apr 29 '15 at 7:56
On running above command I get : "Command not found."
– Deb
Apr 29 '15 at 6:16
On running above command I get : "Command not found."
– Deb
Apr 29 '15 at 6:16
@Deb Sounds like it's not in your PATH. In that case you would need to go to the directory that contains the packettracer program, or follow the answer of New USer to run it from anywhere
– cremefraiche
Apr 29 '15 at 7:56
@Deb Sounds like it's not in your PATH. In that case you would need to go to the directory that contains the packettracer program, or follow the answer of New USer to run it from anywhere
– cremefraiche
Apr 29 '15 at 7:56
add a comment |
The installer extract files to the path:
/usr/local/PacketTracer*/
The executable is:
/usr/local/PacketTracer*/bin/PacketTracer*
now you can make a soft link so you can run command directly in your terminal:
sudo ln -s /usr/local/PacketTracer*/bin/PacketTracer* /usr/local/bin/
Hi @Maythux. In my situation, default installation, the packet is in /opt/pt not in /usr. I will write that in my next answer, copy and paste from your solution. Then I will delete it if you edit your responce with that correction (and write something as comment on my answer)
– feligiotti
May 30 '15 at 16:09
add a comment |
The installer extract files to the path:
/usr/local/PacketTracer*/
The executable is:
/usr/local/PacketTracer*/bin/PacketTracer*
now you can make a soft link so you can run command directly in your terminal:
sudo ln -s /usr/local/PacketTracer*/bin/PacketTracer* /usr/local/bin/
Hi @Maythux. In my situation, default installation, the packet is in /opt/pt not in /usr. I will write that in my next answer, copy and paste from your solution. Then I will delete it if you edit your responce with that correction (and write something as comment on my answer)
– feligiotti
May 30 '15 at 16:09
add a comment |
The installer extract files to the path:
/usr/local/PacketTracer*/
The executable is:
/usr/local/PacketTracer*/bin/PacketTracer*
now you can make a soft link so you can run command directly in your terminal:
sudo ln -s /usr/local/PacketTracer*/bin/PacketTracer* /usr/local/bin/
The installer extract files to the path:
/usr/local/PacketTracer*/
The executable is:
/usr/local/PacketTracer*/bin/PacketTracer*
now you can make a soft link so you can run command directly in your terminal:
sudo ln -s /usr/local/PacketTracer*/bin/PacketTracer* /usr/local/bin/
answered Apr 29 '15 at 7:31
MaythuxMaythux
52.2k34175220
52.2k34175220
Hi @Maythux. In my situation, default installation, the packet is in /opt/pt not in /usr. I will write that in my next answer, copy and paste from your solution. Then I will delete it if you edit your responce with that correction (and write something as comment on my answer)
– feligiotti
May 30 '15 at 16:09
add a comment |
Hi @Maythux. In my situation, default installation, the packet is in /opt/pt not in /usr. I will write that in my next answer, copy and paste from your solution. Then I will delete it if you edit your responce with that correction (and write something as comment on my answer)
– feligiotti
May 30 '15 at 16:09
Hi @Maythux. In my situation, default installation, the packet is in /opt/pt not in /usr. I will write that in my next answer, copy and paste from your solution. Then I will delete it if you edit your responce with that correction (and write something as comment on my answer)
– feligiotti
May 30 '15 at 16:09
Hi @Maythux. In my situation, default installation, the packet is in /opt/pt not in /usr. I will write that in my next answer, copy and paste from your solution. Then I will delete it if you edit your responce with that correction (and write something as comment on my answer)
– feligiotti
May 30 '15 at 16:09
add a comment |
You have to find where the installation program is located, enter in that directory then do:
./packettracer
in my situation is:
/opt/pt/./packettracer
As @Maythux say, to let you execute via bash directly, you can do a link in /usr/local/bin/
The script executable is:
/opt/pt/packettracer
now you can make a soft link so you can run command directly in your
terminal:
sudo ln -s /opt/pt/packettracer /usr/local/bin/
or, simple, copy that file-script in your Desktop.
NB make it executable if isn't!
add a comment |
You have to find where the installation program is located, enter in that directory then do:
./packettracer
in my situation is:
/opt/pt/./packettracer
As @Maythux say, to let you execute via bash directly, you can do a link in /usr/local/bin/
The script executable is:
/opt/pt/packettracer
now you can make a soft link so you can run command directly in your
terminal:
sudo ln -s /opt/pt/packettracer /usr/local/bin/
or, simple, copy that file-script in your Desktop.
NB make it executable if isn't!
add a comment |
You have to find where the installation program is located, enter in that directory then do:
./packettracer
in my situation is:
/opt/pt/./packettracer
As @Maythux say, to let you execute via bash directly, you can do a link in /usr/local/bin/
The script executable is:
/opt/pt/packettracer
now you can make a soft link so you can run command directly in your
terminal:
sudo ln -s /opt/pt/packettracer /usr/local/bin/
or, simple, copy that file-script in your Desktop.
NB make it executable if isn't!
You have to find where the installation program is located, enter in that directory then do:
./packettracer
in my situation is:
/opt/pt/./packettracer
As @Maythux say, to let you execute via bash directly, you can do a link in /usr/local/bin/
The script executable is:
/opt/pt/packettracer
now you can make a soft link so you can run command directly in your
terminal:
sudo ln -s /opt/pt/packettracer /usr/local/bin/
or, simple, copy that file-script in your Desktop.
NB make it executable if isn't!
answered May 30 '15 at 16:38
feligiottifeligiotti
4591314
4591314
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f615635%2fhow-to-run-cisco-packet-tracer-via-command-line%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