LLS (LazerLightShow) Mac OS
Question or issue on macOS:
Laptop Light for Video Conferencing VIJIM Computer Video Conference Lighting for Remote Working, Mac Desk Zoom Call Led Light for Video Recording, Self Broadcasting, Live Streaming. 3.5 out of 5 stars 145. 99 $35.99 $35.99. $3.00 coupon applied at checkout Save $3.00 with coupon.
I’m new to using bash commands and having some trouble. I’m ssh’ing into a linux box which contains some of my work files. I have a local file on my mac which I need to copy onto the server.
Here are the steps I’ve gone through so far:
1) ssh [email protected]
2) Entered password
3) pwd
4) working directory: home/usrname
I’m stuck after this. I have a local folder in documents in my mac. I want to copy it to my working directory on the server I”m ssh’ed into.
- OS Mac OS X v10.7, Mac OS X v10.8, Mac OS X v10.9 CPU Intel processor Memory At least 2 GB Free space on hard drive At least 5 MB TIPS. Depending on the application software, touch operation may not be possible or differ from mouse operation (for example, if the application processes mouse and other operations independently).
- Chims DJ Laser Light Show Projector Red Green Blue Laser with LED 96 Patterns RGRB Music Sound Activated Lighting System Projector for Christmas Party Holiday Festival Gift Family Party Disco Xmas. 4.5 out of 5 stars 289. 98 $99.00 $99.00. Get it as soon as Wed, May 5.
Appreciate your help. Thanks
How to solve this problem?
Solution no. 1:
When you ssh to a remote machine, then it’s as if you are sitting in front of that other machine and execute commands in it. While you are in that state, you cannot copy file to (or from) it. Instead you have to use a different tool, scp
, which also belongs in the ssh
family and in fact calls ssh
behind the scenes. This is how you copy a local directory to a remote machine:
I used the -r
mode (which stands for recursive) to copy the directory recursively. See also the manual of scp for more details
Solution no. 2:
You will want to use sftp
instead of ssh
for this. Try the following:
sftp [email protected]
- Enter password
cd <directory where you want to transfer the file>
put <name of file you want to transfer>
You can also add ‘l’ before some commands to indicate that you want to do that locally. i.e. ls
will display files on the remote server, and lls
will display files on the local machine.
EDIT :
You will want to make sure that you either
a. navigate to the folder that contains the file you want to transfer prior to starting the sftp process.
b. use lcd
and lls
once you are in the sftp session to navigate to the local folder that contains the file you want to transfer.
Lls (lazerlightshow) Mac Os Update
As mentioned in the comments, using the full path to the file you want to transfer doesn’t work.
Solution no. 3:
From your Linux command prompt: scp -C -r [email protected]:/path/to/remote/directory/ target/directory