Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Copying files from Pulsemedia having issues - Page 2
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Copying files from Pulsemedia having issues

2

Comments

  • yoursunnyyoursunny Member, IPv6 Advocate

    @weir1 said:

    @yoursunny said:
    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    I am getting this error after running second command on remote server

    This is not a command, but an URL for HTTP remote setup.
    Read rclone documentation for how to setup an HTTP remote: https://rclone.org/http/

    Thanked by 1weir1
  • ralfralf Member
    edited August 2022

    (deleted as @yoursunny is being helpful and I'm just taking the piss)

    Thanked by 2bulbasaur Erisa
  • @yoursunny said:

    @weir1 said:

    @yoursunny said:
    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    I am getting this error after running second command on remote server

    This is not a command, but an URL for HTTP remote setup.
    Read rclone documentation for how to setup an HTTP remote: https://rclone.org/http/

    I am now getting this error

  • yoursunnyyoursunny Member, IPv6 Advocate

    @weir1 said:

    @yoursunny said:

    @weir1 said:

    @yoursunny said:
    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    I am getting this error after running second command on remote server

    This is not a command, but an URL for HTTP remote setup.
    Read rclone documentation for how to setup an HTTP remote: https://rclone.org/http/

    I am now getting this error

    Please post all commands and error messages in textual format, not as pictures.

    Thanked by 1weir1
  • @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

  • @yoursunny said:

    @weir1 said:

    @yoursunny said:

    @weir1 said:

    @yoursunny said:
    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    I am getting this error after running second command on remote server

    This is not a command, but an URL for HTTP remote setup.
    Read rclone documentation for how to setup an HTTP remote: https://rclone.org/http/

    I am now getting this error

    Please post all commands and error messages in textual format, not as pictures.

    root@vps2492219:~# rclone lsd rem1
    2022/08/28 18:05:15 ERROR : : error listing: directory not found
    2022/08/28 18:05:15 Failed to lsd with 2 errors: last error was: directory not found
    root@vps2492219:~#

  • @lala_th said:

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

    yep I am also stuck here

  • imyunoimyuno Member
    edited August 2022

    @weir1 said:

    @lala_th said:

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

    yep I am also stuck here

    --http-url
    
    URL of HTTP host to connect to.
    
    E.g. "https://example.com", or "https://user:[email protected]" to use a username and password.
    

    Read the docs: https://rclone.org/http/

    EDIT: or if you mean on the serve side to put a login: https://rclone.org/commands/rclone_serve_http/#authentication

    Thanked by 1weir1
  • @imyuno said:

    @weir1 said:

    @lala_th said:

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

    yep I am also stuck here

    > --http-url
    > 
    > URL of HTTP host to connect to.
    > 
    > E.g. "https://example.com", or "https://user:[email protected]" to use a username and password.
    > 

    Read the docs: https://rclone.org/http/

    EDIT: or if you mean on the serve side to put a login: https://rclone.org/commands/rclone_serve_http/#authentication

    I tried both way but no lck

    now borrowed friend windows VPS & manually transferred files via WinSCP
    data is big & time is less

  • @yoursunny said:

    @weir1 said:

    @yoursunny said:
    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    I am getting this error after running second command on remote server

    This is not a command, but an URL for HTTP remote setup.
    Read rclone documentation for how to setup an HTTP remote: https://rclone.org/http/

    Wait, RTFM was an option to tell him? Why didn't we all think of that? I have full confidence he'll do just that.

    Thanked by 1PulsedMedia
  • @weir1 said:

    @imyuno said:

    @weir1 said:

    @lala_th said:

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

    yep I am also stuck here

    > > --http-url
    > > 
    > > URL of HTTP host to connect to.
    > > 
    > > E.g. "https://example.com", or "https://user:[email protected]" to use a username and password.
    > > 

    Read the docs: https://rclone.org/http/

    EDIT: or if you mean on the serve side to put a login: https://rclone.org/commands/rclone_serve_http/#authentication

    I tried both way but no lck

    now borrowed friend windows VPS & manually transferred files via WinSCP
    data is big & time is less

    Don't you have BTSync/Resiliio sync available?

    Thanked by 1weir1
  • yoursunnyyoursunny Member, IPv6 Advocate

    @lala_th said:

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

    You do not need to specify username and password.
    The rclone serve http command starts an HTTP server with no authentication needed.
    The client side would connect to this HTTP server, so that it doesn't need credentials.

    The reason of not using PulsedMedia built-in nginx or lighttpd instances is that they have server-side speed limits, while rclone serve http doesn't have such limits.

    @weir1 said:

    root@vps2492219:~# rclone lsd rem1
    2022/08/28 18:05:15 ERROR : : error listing: directory not found
    2022/08/28 18:05:15 Failed to lsd with 2 errors: last error was: directory not found
    

    Look at my sample commands carefully.
    Don't drop any punctuation marks.

    Thanked by 2weir1 itoshikimonset
  • @TimboJones said:

    @yoursunny said:

    @weir1 said:

    @yoursunny said:
    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    I am getting this error after running second command on remote server

    This is not a command, but an URL for HTTP remote setup.
    Read rclone documentation for how to setup an HTTP remote: https://rclone.org/http/

    Wait, RTFM was an option to tell him? Why didn't we all think of that? I have full confidence he'll do just that.

    I will learn now

  • @TimboJones said:

    @weir1 said:

    @imyuno said:

    @weir1 said:

    @lala_th said:

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

    yep I am also stuck here

    > > > --http-url
    > > > 
    > > > URL of HTTP host to connect to.
    > > > 
    > > > E.g. "https://example.com", or "https://user:[email protected]" to use a username and password.
    > > > 

    Read the docs: https://rclone.org/http/

    EDIT: or if you mean on the serve side to put a login: https://rclone.org/commands/rclone_serve_http/#authentication

    I tried both way but no lck

    now borrowed friend windows VPS & manually transferred files via WinSCP
    data is big & time is less

    Don't you have BTSync/Resiliio sync available?

    i have never heard of them before...will have look at it now..So that I dont need to face this again ever in my life

  • @yoursunny said:

    @lala_th said:

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    How to specify username and password authentication in this case?

    You do not need to specify username and password.
    The rclone serve http command starts an HTTP server with no authentication needed.
    The client side would connect to this HTTP server, so that it doesn't need credentials.

    The reason of not using PulsedMedia built-in nginx or lighttpd instances is that they have server-side speed limits, while rclone serve http doesn't have such limits.

    @weir1 said:

    root@vps2492219:~# rclone lsd rem1
    2022/08/28 18:05:15 ERROR : : error listing: directory not found
    2022/08/28 18:05:15 Failed to lsd with 2 errors: last error was: directory not found
    

    Look at my sample commands carefully.
    Don't drop any punctuation marks.

    Yep I will give another shot & also be careful with punctaution

  • looks like he cut the cord...i able to download upto folder h...
    lost the data but lesson learnt

  • netomxnetomx Moderator, Veteran

    It seems it was really your fault on not knowing how to move your data.

    Also, I know PM is being somewhat aggressive on tickets, I've experienced myself.

    PM is a lowend provider, so don't expect 2 hour replies and some managed service.

  • weir1weir1 Member
    edited August 2022

    @netomx said:
    It seems it was really your fault on not knowing how to move your data.

    Also, I know PM is being somewhat aggressive on tickets, I've experienced myself.

    PM is a lowend provider, so don't expect 2 hour replies and some managed service.

    I have moved data from seedbox to seedbox over the years
    I have been using seedbox for a very long time

    but for a strange reason...due to some server limit of PM, I am unable to use rclone or rsync

    & why they refund without asking is beyond my mind but I am glad I am out...I don't want to be with a provider who treats customers this shitty way

  • netomxnetomx Moderator, Veteran

    @weir1 said: but for a strange reason...due to some server limit of PM, I am unable to use rclone or rsync

    As I saw on your replies with sunny, you had no clue of how to use rclone. Sorry sir

  • If I wanted to copy files, I will write a 6 line GO/Rust HTTP server, read the gz of the files, and write them to the connection.

    No need to use tools like a newbie.

    Thanked by 2weir1 PulsedMedia
  • @netomx said:

    @weir1 said: but for a strange reason...due to some server limit of PM, I am unable to use rclone or rsync

    As I saw on your replies with sunny, you had no clue of how to use rclone. Sorry sir

    Yes sir...I agree following the instructions of @yoursunny is Lil difficult for me...even I PM'ed him all details uncensored
    in the past, I followed basic Rclone's command I was good to go...I was busy with my work so I agree I am a complete noob person operating Rclone...If I was pro...I don't even opted for open this thread or even choose or trust PulsedMedia in the first place

  • @AudibleCunt said: 6 line GO/Rust HTTP server

    I have zero knowledge about this but I will learn now

  • @weir1 said:
    I have zero knowledge about this but I will learn now

    This is in Go.

    1. Write the code below as main.go
    2. compile it with: go build
    3. run the ./binary

    Now tar your files: tar -zcvf files.tar.gz yourdirectorywithfiles

    curl from any client to download your files: curl http://1.2.3.4/ > files.tar.gz

    package main
    import 
    (
    "net/http"
    "io/ioutil"
    "os"    
    )
    func main() {
    http.HandleFunc("/", handler)
    http.ListenAndServe(":80",nil)  
    }
    func handler(w http.ResponseWriter, r *http.Request) {
    file, _ := os.Open("files.tar.gz")
    fx, _ := ioutil.ReadAll(file)
    w.Header().Set("Content-Type", "application/octet-stream")
    w.Write(fx)
    }
    
  • @AudibleCunt said:

    @weir1 said:
    I have zero knowledge about this but I will learn now

    This is in Go.

    1. Write the code below as main.go
    2. compile it with: go build
    3. run the ./binary

    Now tar your files: tar -zcvf files.tar.gz yourdirectorywithfiles

    curl from any client to download your files: curl http://1.2.3.4/ > files.tar.gz

    package main
    import 
    (
    "net/http"
    "io/ioutil"
    "os"  
    )
    func main() {
    http.HandleFunc("/", handler)
    http.ListenAndServe(":80",nil)    
    }
    func handler(w http.ResponseWriter, r *http.Request) {
    file, _ := os.Open("files.tar.gz")
    fx, _ := ioutil.ReadAll(file)
    w.Header().Set("Content-Type", "application/octet-stream")
    w.Write(fx)
    }
    

    It amazes me that you think he can follow that.

    Is a go compiler included by default?

    Would he have the space to tarball the data? If it's porn and stuff, it won't compress any better.

    Does the main.go compile to "binary", because I don't see him realizing to change that to the actual file name. Remember, he didn't read any rclone documentation or realize he has authentication issue.

    Lastly, I got the impression an existing http server was running on port 80. Besides the conflict, does the user even have root permissions to run on a port < 1024?

    The server supports ftp and sftp. He should also go to the Discord channel to get hand held by people who have done what he wants successfully.

    Thanked by 2netomx dahartigan
  • netomxnetomx Moderator, Veteran

    @yoursunny said: rclone serve http

    Use --addr to specify which IP address and port the server should listen on, eg --addr 1.2. 3.4:8000 or --addr :8080 to listen to all IPs. By default it only listens on localhost. You can use port :0 to let the OS choose an available port.

  • yoursunnyyoursunny Member, IPv6 Advocate

    @netomx said:

    @yoursunny said: rclone serve http

    Use --addr to specify which IP address and port the server should listen on, eg --addr 1.2. 3.4:8000 or --addr :8080 to listen to all IPs. By default it only listens on localhost. You can use port :0 to let the OS choose an available port.

    In my full sample, I do include --addr flag.
    https://lowendtalk.com/discussion/comment/3473652/#Comment_3473652

    Thanked by 1netomx
  • @netomx said:

    @yoursunny said: rclone serve http

    Use --addr to specify which IP address and port the server should listen on, eg --addr 1.2. 3.4:8000 or --addr :8080 to listen to all IPs. By default it only listens on localhost. You can use port :0 to let the OS choose an available port.

    He knows. His example in this thread used --addr: 88888.

    Thanked by 1netomx
  • netomxnetomx Moderator, Veteran

    LOL I have just tested it, it just works:

    rclone serve http --addr :8080 .

    Sorry @weir1 but PM is not for you

  • netomxnetomx Moderator, Veteran

    @yoursunny said:
    Here's the way I do it.

    Within my PulsedMedia account, run:

    rclone serve http ./data --addr :88888
    

    On the client, setup HTTP remote with URL:

    http://0-000example.pulsedmedia.com:88888
    

    To list remote directories and copy a directory, run:

    rclone lsd pulsed:
    rclone -P --bwlimit 10M --checkers 2 --transfers 2 copy 'pulsed:directory' .
    

    In above commands,

    • substitute 88888 with a random port number between 1024 and 47999.
    • substitute 0-000example with the server hostname.

    omg you were right.

  • ailiceailice Member
    edited September 2022

    Do in weird-way
    Send it via nc and show progress using pv
    Target Location run nc -vll :: 69 | zstdcat | pv | tar -xv
    Source Location run find . ! -path '<your awesome folder>' | xargs tar -cv | pv | zstd | nc <your awesome IPv6> 69

Sign In or Register to comment.