Ftp 명령으로 폴더째 가져올때 문제

[img:13mnt2x2]http://www.ubuntu.or.kr/download/file.php?mode=view&id=8941&sid=4169e7d54fa5539325c232e32ebfacbc[/img:13mnt2x2]

폴더 구조가 위와 같을때 ftp로 접속해서 하위 폴더까지 통째로 가져오고 싶은데 자꾸 에러가 발생합니다.
파일 받는쪽과 주는쪽 모두 root로 읽고 쓰기 권한으로 문제가 없습니다.

[quote:13mnt2x2]ftp> mget -R …/test
local: 1.text remote: 1.text
200 PORT command successful. Consider using PASV.
150 Opening BINARY mode data connection for 1.text (238 bytes).
226 Transfer complete.
238 bytes received in 0 secs (0.23 Kbytes/sec)
local: test1 remote: test1
200 PORT command successful. Consider using PASV.
550 Failed to open file.
local: test2 remote: test2
200 PORT command successful. Consider using PASV.
550 Failed to open file.
local: test3 remote: test3
200 PORT command successful. Consider using PASV.
550 Failed to open file.
Warning: embedded … in …/test/1.text (changing to !!)
local: !!/test/1.text remote: !!/test/1.text
local: !!/test/1.text: No such file or directory
Warning: embedded … in …/test/test1 (changing to !!)
local: !!/test/test1 remote: !!/test/test1
local: !!/test/test1: No such file or directory
Warning: embedded … in …/test/test2 (changing to !!)
local: !!/test/test2 remote: !!/test/test2
local: !!/test/test2: No such file or directory
Warning: embedded … in …/test/test3 (changing to !!)
local: !!/test/test3 remote: !!/test/test3
local: !!/test/test3: No such file or directory
[/quote:13mnt2x2]

참조가 될만한 문서나 링크 좀 부탁 드리겠습니다.
미리 감사드립니다.

[code:zp70c8op]wget -r ftp://user:pass@server.com/[/code:zp70c8op]

한 번 해보세요. ftp 받는 클라이언트에 따라서 잘 안될수도 있어보이네요.

wget 명령으로 폴더째로 가져오기가 되긴하네요.
일단 급한데로 이걸로 해결해야 겠네요.

감사합니다.