Accessing files outsude VMWare - oracle

I am running Oracle Enterprise Linux on VMWare. I now want to install Oracle which is is located on my C drive in Windows. Is there a way to copy this file to a folder in my virtual machine?

If its just once off, easiest way is to install winscp onto your windows host, setup a bridged or host only network on the vmware server and using winscp to copy the files in.
I think you can install vmware tools which would allow for shared folders, but last time I tried I ran into some issues and gave up.

Related

pycharm on host machine, file ONLY on guest/remote machine

Is it possible to use pycharm installed on the host machine, to use remote interpreter and files on a vagrant guest machine, without having a copy of them on the host machine?
It is possible but you have to pay the licencse to do it. yYou'll need to use Pycharm Professional Edition
See pycharm info

Copy a file from remote Windows machine to Linux machine without Cygwin

I am looking for a possibility to copy a file from Windows to a Linux machine, and my Windows machine will not have Cygwin installed .
The command I am trying is
linux #> scp windows-machine:e:\file.txt
Since you say "my windows machine will not have cygwin installed", I'm assuming you cannot install arbitrary software on the Windows side but that you have control of the Linux machine. Under those assumptions, you can use the Windows FTP client to transfer files to the Linux machine. (Of course, you will have to enable the FTP daemon on the Linux machine, most likely via inetd or systemctl.)

opening file from virtual machine on Windows host machine

I am using Windows 10 on my local machine with vagrant and docker installed for my virtual machine (VirtualBox). When I start docker/vagrant and my virtual machine is running and log in to the development machine, I get this:
root#dev:~#
I have this directory
root#dev:~/boom/properties#
My problem is how to access these folders from my windows host machine and edit the files that are in there.
Look at setting up a sync folder between Windows and Linux.
https://www.vagrantup.com/docs/synced-folders/smb.html

How to work on a windows IDE while my Git repository is on Linux (using VMPlayer)

I want to develop on 2 systems - using Linux (ubuntu) for server/git repo while having my IDE (RubyMine) in Win7. What is the best approach to configure my environment so the files will be shared between the systems, and also that my Win RubyMine will work correctly with git?
You need git on Windows installed for starters. Then you can setup a shared directory that both Linux and Windows can use. In there you put your repo so that it can be accessed from both sides. Or you use dropbox and access it from both systems. Why don't you use Rubymine in Linux? Is it Win/Mac only?
VirtualBox for hosting and share the folder through the guest add ins. You don't want to switch to the vm while working. Terminal into the vm from windows.

Accessing machine through wifi

I have one computer running ubuntu operating system. It is having a wifi router connected to it. I have other laptop which runs windows 7 operating system.
Is there a way to access the ubuntu machine from windows machine through wifi and vice versa ?
You can use TeamViewer in both windows and linux. It will give you full control of the remote machine but I'm not sure if you can do file transfering...
For file transferring, connecting from windows to linux I would use winSCP, which access files through ssh, so you would have to install an run sshd on your linux box. If you haven't sshd in your ubuntu box, install it by doing $ sudo apt-get install ssh. You can start ssh daemon in ubuntu 11.10 with the command $ sudo service ssh start. From linux (Ubuntu 11.10) to windows (w7), I have successfully got into w7 machines in my local network by exploring the Network section in the left bar of the nautilus explorer. Sometimes, for some folders it would ask me for credentials to log into the remote machine, and file transferring was as simple as doing copy and paste (Ctrl+c, Ctrl+v)
hope to be helpful! good luck!
VNC is good for remote work on both Windows and Linux. You'll need to install VNC on Windows but I believe it comes by default with Ubuntu. You need to configure one to be the server and then you can use a client from the other machine to connect to it and remotely control the server machine.
Here are some resources for VNC in Ubuntu: https://help.ubuntu.com/community/VNC
And I use TightVNC when I'm working on Windows (server and client included in the install).
Install XRDP on Ubuntu.
on windows then run msrtc -v
if over the internet , I say use
https://www.dwservice.net/en/download.html
free and lot better than teamviwer.

Resources