How to start sshd on Puppy Linux?Slacko vs Precise vs Lucid Puppy LinuxConnecting to wireless USB adapter - Puppy Linux WaryHow to dump SSHD process and search for stringsUEFI and Puppy LinuxUnable to SSH into Puppy Linux, even though SSHD is runningPuppy Linux internet connection is so slowCan't start sshd service on windows linux subsystemCan I do programming on Linux puppy?Setup Puppy to save to HDDWhat is the command line in Puppy Linux that is equivalent to apt-get commands?
Has there ever been an airliner design involving reducing generator load by installing solar panels?
Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?
How could indestructible materials be used in power generation?
Emailing HOD to enhance faculty application
Is "remove commented out code" correct English?
UK: Is there precedent for the governments e-petition site changing the direction of a government decision?
Can one be a co-translator of a book, if he does not know the language that the book is translated into?
SSH "lag" in LAN on some machines, mixed distros
Why can't we play rap on piano?
Should I tell management that I intend to leave due to bad software development practices?
Did converts (ger tzedek) in ancient Israel own land?
I Accidentally Deleted a Stock Terminal Theme
Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?
Alternative to sending password over mail?
Do I have a twin with permutated remainders?
What's the point of deactivating Num Lock on login screens?
Brothers & sisters
How can I make my BBEG immortal short of making them a Lich or Vampire?
Forgetting the musical notes while performing in concert
Is it legal for company to use my work email to pretend I still work there?
Famous Pre Reformation Christian Pastors (Non Catholic and Non Orthodox)
How to say in German "enjoying home comforts"
How to draw the figure with four pentagons?
What killed these X2 caps?
How to start sshd on Puppy Linux?
Slacko vs Precise vs Lucid Puppy LinuxConnecting to wireless USB adapter - Puppy Linux WaryHow to dump SSHD process and search for stringsUEFI and Puppy LinuxUnable to SSH into Puppy Linux, even though SSHD is runningPuppy Linux internet connection is so slowCan't start sshd service on windows linux subsystemCan I do programming on Linux puppy?Setup Puppy to save to HDDWhat is the command line in Puppy Linux that is equivalent to apt-get commands?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have installed sshd on puppy linux. Can someone tell me how to start sshd on it?
sshd puppy-linux
bumped to the homepage by Community♦ 2 days 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 |
I have installed sshd on puppy linux. Can someone tell me how to start sshd on it?
sshd puppy-linux
bumped to the homepage by Community♦ 2 days 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 |
I have installed sshd on puppy linux. Can someone tell me how to start sshd on it?
sshd puppy-linux
I have installed sshd on puppy linux. Can someone tell me how to start sshd on it?
sshd puppy-linux
sshd puppy-linux
asked Oct 19 '14 at 12:24
NoorNoor
3241717
3241717
bumped to the homepage by Community♦ 2 days 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♦ 2 days 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
You typically can start services on Puppy using /etc/init.d scripts.
$ sudo /etc/init.d/sshd start
If you find that it's already running, like so:
$ netstat -anplt | grep :22
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
Then you know that the daemon is running and listening on port 22. If that's the case then your issue is likely related to this issue dicussed in this thread, titled: Can't ssh to puppy machine- connection refused. .
Here there's a firewall enabled with Puppy, that either needs to have a rule added, that allows SSH access in, or needs to be disabled. For this you'll need to use iptables to manipulate the firewall. For example:
$ sudo iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f162975%2fhow-to-start-sshd-on-puppy-linux%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
You typically can start services on Puppy using /etc/init.d scripts.
$ sudo /etc/init.d/sshd start
If you find that it's already running, like so:
$ netstat -anplt | grep :22
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
Then you know that the daemon is running and listening on port 22. If that's the case then your issue is likely related to this issue dicussed in this thread, titled: Can't ssh to puppy machine- connection refused. .
Here there's a firewall enabled with Puppy, that either needs to have a rule added, that allows SSH access in, or needs to be disabled. For this you'll need to use iptables to manipulate the firewall. For example:
$ sudo iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
add a comment |
You typically can start services on Puppy using /etc/init.d scripts.
$ sudo /etc/init.d/sshd start
If you find that it's already running, like so:
$ netstat -anplt | grep :22
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
Then you know that the daemon is running and listening on port 22. If that's the case then your issue is likely related to this issue dicussed in this thread, titled: Can't ssh to puppy machine- connection refused. .
Here there's a firewall enabled with Puppy, that either needs to have a rule added, that allows SSH access in, or needs to be disabled. For this you'll need to use iptables to manipulate the firewall. For example:
$ sudo iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
add a comment |
You typically can start services on Puppy using /etc/init.d scripts.
$ sudo /etc/init.d/sshd start
If you find that it's already running, like so:
$ netstat -anplt | grep :22
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
Then you know that the daemon is running and listening on port 22. If that's the case then your issue is likely related to this issue dicussed in this thread, titled: Can't ssh to puppy machine- connection refused. .
Here there's a firewall enabled with Puppy, that either needs to have a rule added, that allows SSH access in, or needs to be disabled. For this you'll need to use iptables to manipulate the firewall. For example:
$ sudo iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
You typically can start services on Puppy using /etc/init.d scripts.
$ sudo /etc/init.d/sshd start
If you find that it's already running, like so:
$ netstat -anplt | grep :22
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
Then you know that the daemon is running and listening on port 22. If that's the case then your issue is likely related to this issue dicussed in this thread, titled: Can't ssh to puppy machine- connection refused. .
Here there's a firewall enabled with Puppy, that either needs to have a rule added, that allows SSH access in, or needs to be disabled. For this you'll need to use iptables to manipulate the firewall. For example:
$ sudo iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
edited Oct 19 '14 at 16:01
answered Oct 19 '14 at 15:37
slm♦slm
255k71541687
255k71541687
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f162975%2fhow-to-start-sshd-on-puppy-linux%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