Hi,
I want to see how I move .mp3 on a MacBook to Raspberry Pi 5 connected by
File:connect.raspberrypi.com/devices
![]()
Bill
Hi,
I want to see how I move .mp3 on a MacBook to Raspberry Pi 5 connected by
File:connect.raspberrypi.com/devices
![]()
Bill
You can follow these docs
Hey there, @Bill293536,
I canât say Iâve done it on a Macbook, but it looks like the scp command is used across Unix systems. From your command line:
scp /path/to/local/file username@hostname:/path/to/remote/file
Thereâs a couple more commands in this thread that could come in handy as well, such as transferring between remote machines.
And of course, if all else fails, you can always just put it on a USB, connect it to the Pi, and move it from the mounted drive via via some good mkdir, mv, and cp commands.
Thank you.
I canât quite work out how to get:
username
hostname
password
port
Sorry!
![]()
Bill
Hey there, Bill,
Let me clear that up because I guarantee youâll know most of these under a different name:
Hope that helps, Bill,
Secure, Contain, Protect.
Jane,
![]()
For hostname, just put the IP Address of your Pi - Where do I find this?
Bill
Hey there, Bill,
Ok, I presume that youâre already able to access your pi.
You should find it by using the below command in Terminal:
ifconfig
A couple of options will come up depending on what networking method youâre using. If you Pi is on a wireless network, you want the wlan0. If your Pi is wired, youâll want eth0. Itâs ok if the numbers at the end are different.
Your IP Address will probably start with 192.168. . Make sure you donât use the one that ends in 1 as thatâs your routerâs address.
Jane,
I am so sorry. I canât get the FileZilla to work.
![]()
Host: pi
Username: pi
Password: #####
Port:
========
Connection attempt failed with âECONNREFUSED - Connection refused by serverâ
Bill
Hey there, @Bill293536,
Sorry, are you using the scp command I recommended to you previously or are you using FileZilla?
FileZilla works quite differently to the scp command as it needs the ftp ports to be activated and for there to already be a server on the device that youâre connecting to. Have you sent up a FileZilla server on your Raspberry Pi? And enabled a port to have access to.
Itâs why I recommend using the scp command as it only requires ssh access on the Pi.
P.S. Please do not put your passwords on the forum, that is an extremely bad idea.
billnoble@Bills-MacBook-Air ~ % scp /users/billnoble/desktop/hello.mp3 xxxxxxxx@pi:/pi/desktop/hello.mp3
zsh: event not found: @pi
Hey there, @Bill293536, try replacing the name @pi with the IP address of your Pi.
Jane,
![]()
scp /users/billnoble/desktop/hello.mp3 xxxxxxxxxx%@pi:/pi/desktop/hello.mp3
pi is correct.
Do I enter the password as âxxxxxxxxxxx%â or something similar?