VSCode remote ssh: Can't install extensions on remote server - visual-studio-code

I am trying to install an extension (as an example cmake tools) on my remote server (ubuntu Arm 64). I have enabled remote.downloadExtensionsLocally feature). When I try to install the extensions, it seems downloaded locally but can't be installed on the target server.
My Host: Windows 10
My Server: Ubuntu 64 ARM running on a rasp4
Here are my user settings (I have enabled a proxy. no diff with/without proxy):
and here are my remote settings:
and this is my windows trace logs after clicking on install button (As can be seen the extension has downloaded successfully):
and my remote server log:

Please check if your Linux kernel/version is compatible with the doc. I guess that the requirements on your server are not met. Please check them:

Related

Visual Studio Code: Remote-SSH connect to Windows Server 2019

I've set up my VSCode Insider to connect th a Windows 2019 Server via the Remote-SSH extension. Is it correct, that I need a WSL installed so that it can set up the VSCode-Server and then it is running within the WSL distro when I'm connected?
I thought it would run on Windows instead.
The stable VS Code 1.40 release does not support for Windows ssh hosts: https://code.visualstudio.com/docs/remote/ssh#_remote-ssh-limitations
This feature is still experimental and only enabled in VS Code insiders builds when you set "remote.SSH.remoteIsWindows": true (Make sure to use the nightly ssh extension too) See this issue for details
You do not need to run WSL. You need to install a ssh client on your local machine (the machine that you will run VS Code), and install a ssh server on your remote machine. That's all you need. Your local VS Code uses the ssh client to connect to that ssh server on the remote machine. Details of how to do this can be found here, including opening firewall ports in the case of Windows.

Netbeans FTP unable to upload

I am new to NetBeans & PHP Scripting, so please forgive me..
Issue: Unable to upload the php files via NetBeans IDE into remote server Ubuntu (FTP port: 21).
SSH Port 22 is working fine,even with NetBeans
Error Log:
My Operating Environment
NetBeans 7.4 Patch 3 is installed in Windows 10.
Remote server is a virtual machine (Ubuntu 16.4)
Check List Done
FTP Clients are working fine(WinSCP Manual....which I am trying to avoid)
NetBeans Terminal I can edit the files (noticed the port is different 22)
Remote folder is owned by the FTP User
Played with NetBeans Run Configuration Parameters [Passive Mode, Pure FTP...etc]
Any Help is greatly appreciated and Thanks is advance.
Ravi
Solution Steps:
Edit /etc/vsftpd.conf
uncomment #write_enable=YES --> write_enable=YES
Restart vsftpd (sudo service vsftpd restart)
Closed NetBeans IDE and opened it again

How to install a plugin in redmine 1.4.4 via SSH on redmine VM?

I have got access to redmine VM via SSH and have plugin files on my local machine. Now I need to install it in redmine.
Can anyone explain the steps to do it? I am using a windows 7 machine as SSH client.
You can use SFTP client such as WinSCP (Windows client that I uses) or find any other.
SFTP is SSH File Transfer Protocol, i.e. you will have access to VM's file system via SSH connection, and Redmine plugins installation will be just files copying :)
Also, SFTP clients can launch simple commands as touch (touch tmp/restart.txt command needed to restart Ruby on Rails applications)
Put the plugin directory in the vendor/plugins sub directory of your Redmine installation. Check the plugin installation instructions for any additional steps that might be necessary.
Redmine 1.4.4 is several years old, you should first make sure with a local test that the plugin actually works with that version. And you should really upgrade to a recent version of Redmine (current stable is 3.2) as there have been quite a few security issues in Rails and Redmine since 1.4.4 was released.

Build and debug a project on a remote server via SSH with Eclipse

Unfortunately, I do not find a solution for my problem in this similiar question.
I have a server with special hardware and a special (GNU-compatible) toolchain. I can only access this server via SSH.
Now I try to set up a development system with Eclipse. Is it possible to set-up a configuration to be able to build and debug via SSH as if the program would run on my local computer? And if yes, could you tell me a little bit about it? ;-)
Provided your server is a Linux machine running a X server, you may want to look around SSH -X.
Install Eclipse on your server
Install an X11 environment on your client (e.g. for Windows: XMing)
Connect to SSH with the -X option (e.g. for Windows, there is a checkbox on Putty)
Launch Eclipse from the ssh connection.

Can't sftp to remote server via SSH using RSE in eclipse while on VPN(Cisco AnyConnect)

Everything is fine while I'm using Windows XP but after upgrading to windows 7, I can no longer access remote systems (vms and linux servers) using RSE in eclipse while on VPN(Cisco AnyConnect). I'm getting pop-up message RSEG1066 -- Failed to connect sshd on :22. detail button says "java.net.SocketException: Permission denied: connect"
I can access those systems via SSH in putty from the same Windows environment. Any eclipse users here experiencing the same problem?
Looks like the module used by RSE to connect to the remote server is not yet compatible with java 7. Reverting back to older version (java 6 in my case) solves the issue.