Deleting Rockwell PanelView Files Remotely - remote-debugging

Can anyone please help me with deleting Rockwell PanelView Files (.mer) Remotely. I can upload and download files remotely using HMI Transfer Utility. But now I want delete the old files in there remotely. Is there a way I can do it?
TIA

Not to my knowledge ... unless ... you are running a newer Panelview Plus 7 that has VNC server installed (and configured). Also the Panelview CE versions allow remote VNC connectivity.
Here is a link that details the VNC setup:
https://theautomationblog.com/enable-and-use-vnc-on-the-panelview-plus-7/

Related

VirtualBox Shared Folder Not Accessible Inside Guest

I have been following this guide: https://www.virtualbox.org/manual/ch04.html#sf_mount_auto
I am running ubuntu 16 with a Windows 2016 VM guest, the VM name is "WindowsServer2016". I need to create a shared folder that is in my home: /home/heatdeath/For_Virtual (is the name of the folder in Ubuntu that I want to share)
In virtualbox I have added the folder to the shared folder, and enabled auto-mount. Yet when I go into the Windows VM, and look under networks, there is no shared folder.
So instead of auto-mounting, I try manually by using
net use x: \\vboxsvr\For_Virtual
And I get the error:
System error 53 had occured
The network path was not found
I also tried vboxsrv.
Kinda at my wits end with this, done alot of research and nothing new turns up. Any help appreciated
Indeed difficult & frustrating to solve, if you don't know.
My Linux distro didn't include VBoxAdditions.iso
I finally found it at http://download.virtualbox.org/virtualbox/
under the version of virtualbox installed.
First, make sure that you belong to the vboxsf and vboxusers groups, and usb if you want to use usb access. (It might be a bit different on your distro)
Just download the iso to a convenient location
(I use the same folder for all the msw sources),
and select it via the cd/dvd option in virtualbox.
Then start the guest session, and in the menu at the bottom of the guest window, make sure that the iso is selected, and start it from the guest file manager.
When finished installing, select reboot.
After, all the defined shared folders appear automatically as virtual optical disks just after the virtual hard disk and the virtual optical installation disk.
BTW, I tried to get help on the virtualbox forum, just getting a rude response.
I finally found the answer with an internet search.

WAMP server directories within web directory(www) are not accessible

The problem I am facing is that I just upgraded to Win 7 64-bit and installed Wamp server with VC++ and it works fine.
But I can't access subdirectories in the web directory (C:\wamp\www), I can access the files although.
Please guide me through.
It is now strongly advised that you create Virtual Hosts for all your project, even those that you store in the \wamp\www\project1 folder structure.
WampServer now assumes that you have done this, and that is why you get this issue.
Here is a previous answer Project Links do not work on Wamp Server

How do I install MinGW on a computer with no internet connection?

I'm learning C/C++, for the learning purpose I will be using netbeans-7.4 installed on my window-8 system.
How do I install MinGW without internet connection ?
On the MinGW HOWTO Install the MinGW (GCC) Compiler Suite page, they offer some Manual Installation instructions. These work without an Internet connection if you can get the installation files to your machine by some other means.
You will need a computer with an Internet connection to download the files for MinGW. But as long as you can put those files on, say, a USB thumb drive or other media, you should be OK. Download the files you'll need for your Windows 8 machine on an Internet-connected machine, and then transfer them to your Windows 8 box. This is what us old-timers sometimes jokingly called "sneakernet."
You will also need a tool like 7-Zip or similar (as noted on the page linked above), to unpack the archives you download. So, if you don't have that tool, you will also have to download that installer from an Internet connected machine and transfer it to your machine by thumb drive sneakernet as well.

Installing open source web-based software?

new to working with Web Servers and despite my tedious Googling, I think I am missing some of the most general (obvious?) questions regarding how to install an open source web-based program.
I have a dedicated server running CentOS 6, 32GB of RAM, etc........ I used a SSH Client to install the prerequisites of PandoraFMS. Everything installed finE.
Now what, just upload all the open-source files onto the web server?? That's the part I am not understanding about the general process of installing an open source program using build files, do I just UPLOAD it all to my server, or am I missing something???
You use Yum from the command line. Here is a link to the documentation http://www.centos.org/docs/5/html/yum/sn-managing-packages.html. If you really want a linux box that is easy to use I recommend Ubuntu. Good Luck

Remote builds with IntelliJ

I am having the following problem:
a) I have a UNIX build environment set up on a remote server I can ssh into
b) I have IntelliJ on Windows
What I would like to do is to edit the files through a remote connection
(similar to the functionality that exists for Emacs) and issue shell commands
such as 'make' and running simple 'test-scripts' which exist on the server..
Are the functions to do this integrated into IntelliJ or will I need a plug-in?
There is a SSH plugin for Intellij IDEA. It is available in https://plugins.jetbrains.com/idea/plugin/1203-ssh
For anyone still looking for a way to edit files remotely while running Intellij locally, version 2016.3 Ultimate Edition has a Remote Server Configuration option. It allows to access files remotely using either FTP, SFTP or FTPS.
More details on how to configure the remote servers can be found in Intellij's Help Pages.