[2008] Send Linux Console Commands To A Remote Linux Server?

Jan 23, 2009

Is there a way for my program to send Linux Console Commands to a remote Linux server?

View 4 Replies


ADVERTISEMENT

How To Pass Commands To Linux CLI

Oct 18, 2011

I am trying to invoke a Linux machine through putty from VB.NET and to perform some operations on it.

I had invoked the Linux machine using following code:

Dim strCommand As String
Dim ret As Integer
ret = Shell("putty.exe Linux_machine_id", AppWinStyle.NormalFocus)

[Code]....

But once the Linux machine is opened its prompting for username and password.Using SendKeys i tried to send the username and password but its not passing to the Linux machine.

why username and password is passing to the Linux machine...

View 1 Replies

Connect Linux Remote System And Run A Command Using .net?

Jun 13, 2011

I want connect my linux remote system using ip address and port through .net. and want run a command to run a file inside the remote system

View 5 Replies

.NET To Monitor A Remote Linux/Unix Filesystem For Changes And Even Write To It?

Oct 19, 2011

Is there anyway in VB.NET to monitor a remote Linux/Unix filesystem for changes and even write to it? Like a cross-platform FileSystemWatcher?

View 1 Replies

.NET Connect To Linux Server?

Jun 22, 2011

I have to develop a small application that will connect to a Linux server (scp on port 22), upload a file, and then execute the file. The first thing that came to mind was to call WinSCP from my app, but the initial connection will always prompt to accept the hostkey. When calling WinSCP from the commandline you can press a key to copy the hostkey to the clipboard, and then you can use it with the -hostkey switch to connect. Any thoughts on how I might do this in VB? It would have to look like this:

Attempt to connect via WinSCP
Copy hostkey to clipboard when prompted
Attempt to connect again using hostkey

I'm just not sure about #2. I would have to send a keystroke for the letter 'C' which causes the hostkey to be copied to the clipboard.

View 2 Replies

Communicate With A Server(linux Shell)?

Jun 12, 2011

is there any exemple that explain how to connect to a shell command in lunix system like connect to ms doss in localhost. but we need to connect with a user and pass. so is there any exemple to do this??

View 3 Replies

Access Online Linux Based SQL Server?

Apr 18, 2011

Im new on this forum here, i have already browsed many topics but i really didnt found a answer on my question.

I want to connect to a web-based linux SQL server. Is there a way to do that? Or do you have to use the Microsoft SQL server?

View 2 Replies

Connect Webapp VB/LINQ To A MySQL Database Server On A Linux?

Jul 7, 2009

I have a programmer who is using VB and LINQ; and I have a MySQL database that is running on a linux server. My programmer tells me that:he cannot connect to the MySQL database via LINQ if he was able to connect then it would require all sorts of rewriting I don't know anything about LINQ but I thought it was an ORM. As such, any DB server that is supported should work just fine? Right? OK, so maybe it's not an ORM... maybe it should generically connect to ODBC and render similar results?

View 1 Replies

DB/Reporting :: Can VB 2005 Front End Running In Win XP Access MySQL Database In Linux Server?

Aug 5, 2008

I am asked to write a front end program in VB 2005 (that will run in client computers which running on Win XP) to access an existing MySQL database running in Linux. It is not my preferred choice, but the user have the database and server working just as he wants it, and do not wish to change, at the same time I do not wish to change programming language. Is that even possible? Can we actually write VB 2005 programs that will run in client computers complete with NET framework 2.0 to access a Linux operating database?

View 4 Replies

Mpd Server Working In Linux Machine - Code Works Fine Until There Are Spaces In Directory Name

Jul 21, 2011

I have mpd server working in Linux machine. Code works fine until there are spaces in directory name.

How can I handle spaces?

CODE:

View 6 Replies

VS 2008 Remote Send Commands?

Dec 10, 2009

I have an application which I would like to access from another computer.So I thought of making a client which my application(server) would send commands to and then the client runs the command.

View 6 Replies

An IDE As Good As Visual Studio 2008 For Linux?

Apr 13, 2009

I just want to ask is there an IDE as good as Visual Studio 2008 for Linux? MonoDevelop IDE is not good, I need a free Visual Studio for Linux?

View 3 Replies

VS 2008 Extending VB Program To Linux And UNIX?

Jan 13, 2012

I have a program built on VB.NET and C# . It calls Win32 API and another APIs we made and others (WodSSH and DevExpress).Now we plan to extend our tool to run on Linux and UNIX GUI for UNIX end-users. We have doubts whether to try to import the program somehow (I heard about Mono and Wine) or build it from scratch in Java.

View 6 Replies

Automate Ssh To Linux Box?

Sep 24, 2011

I have automate ssh to Linux box using vbs script (to log in and execute commands)

but i need to make a tool which edit the vbs values and execute it

Brief vbs script set WshShell = WScript.CreateObject("WScript.Shell") WshShell.Run "plink.exe -v -ssh ubnt@192.168.1.20 -pw ubnt -m UNIX_commands.txt" WScript.Sleep 2000 WshShell.AppActivate "192.168.1.20 - PuTTY" WshShell.SendKeys "conf term{ENTER}" as you can see it is first run plink.exe (ssh client) with specific User name & password and load specific commands to execute on Linux box from UNIX_commands.txt which located in same directory

[Code]...

View 1 Replies

VB Connecting To DB2 On Linux?

Jun 7, 2010

I can get Visual Studio 2010 Professional to connect to a DB2 UDB database but I don't see any tables. I can hand code the sql and get data returned but I want to be able to drag and drop and use the power of the Studio. I've tried OLE and ODBC connections but I'm still missing something in the set up.

View 4 Replies

VB GUI Designer For Linux?

Sep 6, 2009

I have MonoDevelop working, and so far it's been really good. The only thing that seems to be missing is the GUI designer.

View 2 Replies

Porting VB Apps To OS X/Linux?

Dec 29, 2009

I've been wondering about this for a while, but is there actually any free way to port VB.net apps to OS X and Linux? I've searched the web for this and couldn't find anything much.

View 5 Replies

Run .net Windows Application In Linux?

Jun 11, 2011

can We run VB.Net windows Application (2.0 Framework) in Linux.

View 2 Replies

C# System.PlatformID.Unix Vs. Linux?

Aug 8, 2010

I need to make some system calls in my C# applications.Unfortunately, this behaves differently on Linux than on UNIX.Now I used to switch the Operating system at runtime like this

If Environment.OSVersion.Platform = System.PlatformID.Unix Then
' Linux/Unix '
ElseIf Environment.OSVersion.Platform = System.PlatformID.MacOSX Then

[code].....

View 1 Replies

How To Deploy .net Windows Application In Linux

May 26, 2010

i developed a windows application in vb.net 2005 and i used ms-access as my database. i need to deploy my application in redhat linux operating system.

View 4 Replies

Make An Application That Works On Other OS's (Mac OS X - Linux)?

Oct 27, 2009

Can I make an application that works on other OS's (e.g. Mac OS X, Linux)?

View 3 Replies

Porting .net Application From Windows To Linux?

Mar 21, 2011

I developed an application using VB .NET on a Windows OS. If I want to enable this application for a client who uses Linux , how do I do so? Do they need to purchase VB .NET? I am totally lost on how this works.

View 5 Replies

Python - VB Developer Wants To Write Linux App?

Apr 17, 2012

I am trying to choose a language, IDE and other tools in order to develop a photo gallery application for a Linux platform. Specifically the Raspberry Pi My background is almost exclusively using Visual basic since the early 90's and most recently VB.NET in VS2008

View 1 Replies

Using Copy A File From Windows XP To Linux?

May 4, 2011

I have some simple vb.net code that I use to copy a file between 2 servers.

IO.File.Copy(fromFileName, toFileName, True) ' Overwrites existing files

That works fine when both machines are Windows XP.

What would I need to do differently if 1 of the machines happens to be a LINUX box?

View 1 Replies

VS 2005 Run Windows .net Application To Linux

Jul 31, 2009

I developed a application using vb.net 2005 and sql server 2008 for windows but i want to run this application on one of the client which is linux. means : windows server 2003 on which database is install. Five client machine is Windows Xp on which application is running ok they have two machine on which linux is loaded. Now I want to run the same application on linux machine also Guide how to do this..

View 3 Replies

Make Linux Compatible Software With VB 2010?

Feb 5, 2012

anyone know how to make linux compatible software with Visual Basic 2010? is it possible? and how could you do this?

View 2 Replies

Work On Operating Systems Such As Linux Apple?

May 18, 2011

i was wondering how far back in the windows operating systems visual basic builds would run. like the exe you build at the end will it work on old windows 95 systems and would it work on other operating systems such as linux apple ect..

View 2 Replies

Connect To Oracle (Linux) Without Installation Of Client Or TOAD?

Dec 14, 2011

How to connect to oracle (Linux) without installation of Oracle Client or TOAD .....?

View 2 Replies

Make An Application That Search The Files Like Grep In Linux?

Jan 31, 2011

I would like to make an application that search the files like grep in linux.

View 1 Replies

VS 2010 Cross Platform Application (windows & Linux)

Dec 22, 2010

am devoloping a simple program in vb.net but i wanna do it a cross platform almost (windows & linux) or if there is a vb.net to C++ code converter

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved