Posts

Showing posts with the label Linux commands

Working with Linux command line

Hi, I am Malathi Boggavarapu working at Volvo Group and i live in Gothenburg, Sweden. I have been working on Java since several years and had vast experience and knowledge across various technologies. This post explain different commands used in Linux environment. I use Cygwin to interact with Linux server remotly and access and process different files over there. Let's get started. ssh [remote_server_ip_address] - Connect to the remote server. scp -r  xxx.pl  user@127.0.0.0:/tmp - Connects to the remote server with specified IP address with user and copy the file xxx.pl to the folder tmp on remote server. scp -vp user@127.0.0.0:/var/logs/audit\* /cygdrive/c/logs/auditlogs - Connects to the remote linux server with specified IP address as user and copy all the files from the folder /var/logs/audit to the destination windows folder c/logs/auditlogs . As i was working with Cygwin to connect to remote linux server, the destination folder should be prece