Enable screen mode (putty) [closed] - ssh

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I'm using Putty to control my SSH server, but it's working only if my computer is working and putty is also working. how should i run my server, that it will work even if putty is closed and windows is shutted down also? My friend told me to run server in 'screen' mode but I don't know what exactly it is, so I want you to explain me.

Screen is a tool for linux to run programs in a 'screen' inside of the system. It is just what you need.
You can install it like this: sudo apt-get install screen
You can create a screen with screen
By using screen -list, you can see all active/started screens.
To reattach to an unused screen, just use screen (-d) -r [screenID] > use -d only if screen is still attatched
To deattatch from a screen press Ctrl+a (release after pressing) and after that d
A screen runs as long as you don't kill it.

Related

How to copy files from local clipboard to terminal/server clipboard? [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 days ago.
Improve this question
so I am trying to copy file from local to application running on terminal using Remote Desktop Connection, but when i debug the clipboard it is showing empty clipboard (i.e terminal clipboard). How can i redirect the clipboard of terminal to local ?
PS: My terminal has rights of copy paste (I can copy files from local desktop to terminal desktop)
I tried using FreeRDP, RDPCore and WinScp.NET but didnt find a solution.
Using this code

Putty - Automatically closes on authentication [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I'm on a Windows 7 machine. I am using the Putty.exe executable for connecting to my remote machine. I enter the right credentials, and click open. The console pops up with the following and closes with no errors or warnings.
How do I make it work?
Check Putty setting: Connection > SSH > Remote command.
Try to tweak or simply remove the remote command and see if it helps solving the issue.
What you are describing is trying to log into the shell with a user that is an "ftp only" user (not authorized shell access).
Go to Control Panel -> Users -> Manage Users, select the "Edit" link
adjacent to the user you are having trouble with, and make sure that
the radio button for "shell" is selected. Submit the form, and wait
for it to take effect (usually a matter of a few minutes).
Once the change has taken effect, you should be able to telnet (though, please do not use telnet, as it is insecure) or ssh into the shell without problem (assuming the user/pass is correct).

The application PIANO [closed]

This post relates to a rapidly changing event.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
When logging into iTunes Connect, after creating a new user, to test it, I get this message:
You do not have access to the application PIANO. Contact us.
What does this mean?
I got the message in Chrome for Mac after upgrading to OSX Yosemite. It did work fine when I logged into itunesconnect in Safari. When I opened developer tools on Chrome, I see a 403 forbidden returning from the server on that resources, so it was a legit permissions issue. I logged out of itunesconnect, then logged back in and it worked fine.

wget - download all image links from a text file (on server) and download to folder on server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I have a txt file on the server with hundreds of image links. All links are images.
I want to ssh and use wget to download all the links in the txt file into a folder on the server.
I have googled my brains out with no luck
wget has the -i switch. This way, you can let it read the URLs which it should download from a file:
ssh user#hostname 'wget -i imagelinks.txt'
This works if your file contains one URL per line.

Mediawiki page is not appearing properly [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am facing an unique issue (possibly) on my Local Mediawiki. It's been installed on Windows XP (XAMPP server, Mediawiki 1.19.1). I have installed this as a - private wiki and added few stable extensions (like Cite, TitleKey etc.).
The problem is this wiki shows properly in my pc (localhost server) using the default vector skin but other cant view it properly. The page style/format is not appearing at all. I have tried to use monobook skin but that didnt help. Neither I am using short URL (as mentioned in the attached link) nor I have done much changes in LocalSettings.php. I am attaching a snap for more clarity. Any help would be much appreciated.
Stackoverflow answers
Image Snapshot
It worked after I changed the $wgServer in LocalSettings.php from localhost to machine Static IP. Possibly the domain name was misconfigured [as suggested by #Tgr]