Howdy, Stranger!

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


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
Godlike VPS
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Shells Virtual Desktop
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.

AMD GENOA starting at (4c/16gb/200gb) @4,95€ VPS Deal at ph24 [...]

1141517192039

Comments

  • ProHosting24ProHosting24 Member, Patron Provider

    @Ariesjon said:

    @harris1111 said:

    @ProHosting24 said:

    @harris1111 said:

    @Ariesjon said:
    Are there any offers, like double the bandwidth, the performance is amazing, I love it

    I think this price is an amazing offer bro :) if he offer too much, that can lead to overselling

    That’s nothing to be feared of with us, we have some long term customers that pay a good fair for their stuff and rely on us for their prod workload.

    Those customers would be furious to find out their service being impacted by low end offerings 😄

    We actually like to do those kind of things for scaling our infrastructure and increasing purchasing power, as well as rather testing new generation hosts on LET users

    Yes I know, I only tell him that you already did amazing offer, no need to offer more like double bandwidth or something like that. Such activities may bring oversold nodes

    It's a pity that their XL price is not affordable compared to M, if it were 10 euros I would buy it without hesitation, don't understand why the pricing is so weird

    We already announced to reevaluate our plans for black friday :)

  • @ProHosting24 said:

    @Ariesjon said:

    @harris1111 said:

    @ProHosting24 said:

    @harris1111 said:

    @Ariesjon said:
    Are there any offers, like double the bandwidth, the performance is amazing, I love it

    I think this price is an amazing offer bro :) if he offer too much, that can lead to overselling

    That’s nothing to be feared of with us, we have some long term customers that pay a good fair for their stuff and rely on us for their prod workload.

    Those customers would be furious to find out their service being impacted by low end offerings 😄

    We actually like to do those kind of things for scaling our infrastructure and increasing purchasing power, as well as rather testing new generation hosts on LET users

    Yes I know, I only tell him that you already did amazing offer, no need to offer more like double bandwidth or something like that. Such activities may bring oversold nodes

    It's a pity that their XL price is not affordable compared to M, if it were 10 euros I would buy it without hesitation, don't understand why the pricing is so weird

    We already announced to reevaluate our plans for black friday :)

    I'm looking forward to it, I believe this is a crazy plan

    Thanked by 1ProHosting24
  • All benchmarks are synthetic, so here's a different one: running a LLM locally to see how many tokens/s it produces:

    ollama run mistral-nemo "Write a short poem about how a lowendbox server is a better way to spend money than hookers and blow" --verbose
    
    In silicon valleys, under neon glow,
    Lies LowEndBox, where wisdom grows.
    Not in powders nor in flesh you'll find,
    The true wealth of life, or peace of mind.
    
    A server hums, steady, strong, and wise,
    Its power's might, before your eyes.
    For pennies spent, it gives back more,
    Than fleeting thrills that leave you poor.
    
    Hookers and blow, they take their toll,
    On soul, on flesh, till you're hollow.
    Yet, a server stands, reliable, true,
    A friend to you, through day and hue.
    
    Code flows like rivers through its core,
    Solving problems, evermore.
    It teaches, it grows, it never judges,
    While other vices only mudges.
    
    So spend your coin on steel and thought,
    Not fleeting joys that soon are fraught.
    In LowEndBox's realm, you'll find,
    A better way to unwind.
    
    total duration:       1m33.959548775s
    load duration:        22.684458502s
    prompt eval count:    26 token(s)
    prompt eval duration: 2.882349s
    prompt eval rate:     9.02 tokens/s
    eval count:           193 token(s)
    eval duration:        1m8.390834s
    eval rate:            2.82 tokens/s
    

    Llama3.1 8B is a tad faster though:

    ollama run llama3.1 "How can I delete a filesystem on a linux VPS the fastest?" --verbose
    
    Deleting a filesystem on a Linux VPS should be done with care to avoid any potential data loss or system instability. That being said, if you're certain
    that you want to delete it, here are several methods of deleting a filesystem quickly:
    
    1. **Using `wipefs`**:
       - **Speed**: Fast.
       - **Command**:
         bash
         wipefs -a /dev/yourdevice
    
         Replace `/dev/yourdevice` with the path to your device file (e.g., `/dev/sda1`, `/dev/mapper/vg-lv`, etc.). The `-a` flag tells `wipefs` to delete
    all filesystem signatures.
    
    2. **Using `mkfs` and specifying a small size**:
       - **Speed**: Very fast.
       - **Command**:
         bash
         mkfs.ext4 -O uninit_bg -L "your_label" -m 0 /dev/yourdevice -F -t 1k
    
         Here, we're creating an empty filesystem on `/dev/yourdevice` and forcing the creation (`-F`). Note that you should be sure about what you're
    doing. Specify a very small size (like `1k`) to quickly overwrite any data.
    
    3. **Using `dd` with random fill**:
       - **Speed**: Very fast.
       - **Command**:
         bash
         dd if=/dev/urandom of=/dev/yourdevice bs=4M status=progress count=1000
    
         Be cautious here because this will overwrite any data on `/dev/yourdevice`. The command fills the first 4MB*1000=4GB with random bytes, effectively
    quickly deleting any content.
    
    **Important:** Before deleting a filesystem, ensure that it's not currently in use (no processes are accessing its files) and make sure you have backups
    if needed. It's also good practice to note the device path or name for future reference, especially if you're managing multiple devices.
    
    Remember, **these methods will overwrite any data** on the specified device. Make sure this is what you want to do before proceeding.
    
    total duration:       2m18.475001696s
    load duration:        17.815829ms
    prompt eval count:    24 token(s)
    prompt eval duration: 288.724ms
    prompt eval rate:     83.12 tokens/s
    eval count:           445 token(s)
    eval duration:        2m18.125821s
    eval rate:            3.22 tokens/s
    
    Thanked by 3loay sh97 Protocol903
  • (this is on the Genoa M)

  • Any plans to accept crypto payments in the future?

  • ProHosting24ProHosting24 Member, Patron Provider

    @rattlecattle said:
    Any plans to accept crypto payments in the future?

    Yes, we are going to add that into our new backend. :)
    Looks we are also going to release a public beta soon

    Thanked by 2rattlecattle ebietsy
  • hcjhcj Member

    @ProHosting24 said:

    @rattlecattle said:
    Any plans to accept crypto payments in the future?

    Yes, we are going to add that into our new backend. :)

    Have you thought this through? It’s none of my business, but especially as a German entrepreneur, this also has tax implications (profits from the sale of cryptocurrencies, valuation of these currencies, etc.). You should also consider which customer segments you are targeting with cryptocurrencies (and whether they are really your target group).

    Thanked by 1em_c
  • @hcj said:

    @ProHosting24 said:

    @rattlecattle said:
    Any plans to accept crypto payments in the future?

    Yes, we are going to add that into our new backend. :)

    Have you thought this through? It’s none of my business, but especially as a German entrepreneur, this also has tax implications (profits from the sale of cryptocurrencies, valuation of these currencies, etc.). You should also consider which customer segments you are targeting with cryptocurrencies (and whether they are really your target group).

    He doesn't need to hold crypto. Use cryptomus to accept / process payments and get paid in EUR into his bank account. As for the target audience, what are you trying to imply?

    Thanked by 1techdragon
  • Yo! I can recommend @ProHosting24. I have grabbed VPS from previous Black Friday deal and uptime is 100%. What's more VPS is blazing fast, means not oversold. Highly recommended!

    Thanked by 1ProHosting24
  • MumblyMumbly Member
    edited October 2024

    @K4Y5 said: As for the target audience, what are you trying to imply?

    A larger share of problematic, shady clientele - what else? :)

    (I don't have a horse in this race and I'm not implying that everyone who use crypto is criminal or doesn't have legitimate reason to pay with crypto, just responding to your question.)

  • @Mumbly said:

    @K4Y5 said: As for the target audience, what are you trying to imply?

    A larger share of problematic, shady clientele - what else? :)

    (I don't have a horse in this race and I'm not implying that everyone who use crypto is criminal, just responding to your question.)

    On the contrary, provided basic screening measures are adhered to (No VPN/Proxy IPs to place orders, check against massive divergence between address on file with IP geolocation data & basic FraudRecord checks), crypto users are more likely to behave as they cannot easily get refunds and / or partake in charge-backs.

    //$0.02

  • ProHosting24ProHosting24 Member, Patron Provider

    We just ended the offer again. We have sold somewhere around 700 VMs through LET alone .> @hcj said:

    @ProHosting24 said:

    @rattlecattle said:
    Any plans to accept crypto payments in the future?

    Yes, we are going to add that into our new backend. :)

    Have you thought this through? It’s none of my business, but especially as a German entrepreneur, this also has tax implications (profits from the sale of cryptocurrencies, valuation of these currencies, etc.). You should also consider which customer segments you are targeting with cryptocurrencies (and whether they are really your target group).

    Yes, we already have processed legit transactions 4 years ago with solana iirc.
    There are cases (the one you already mentioned), where it makes more sense to spend the crypto asset then cashing them out eg. (realised capital gains to be exact)

    We have planned on just keeping crypto payments in their respective wallets and to not cash out despite creating the invoices and paying taxes.

    We don't think that we are going to make >10% of transaction volume via crypto, which at least would be easy to let lie around.

    And regarding the customers, we planned to enforce more strict KYC anyway because we suspended already a bunch of accounts and >100 VPS from ths deal. Would be nice to be sure about never accepting those folks as customers again.

  • ProHosting24ProHosting24 Member, Patron Provider

    Oh the first sentence was still a draft from which upon we decided to rather take some more standby 7443p nodes online :)

  • Are there plans to offer support for custom iso's?

  • ProHosting24ProHosting24 Member, Patron Provider

    @Multi said:
    Are there plans to offer support for custom iso's?

    Plans? There are over 120 ISOs to choose from

  • @ProHosting24 said:

    @Multi said:
    Are there plans to offer support for custom iso's?

    Plans? There are over 120 ISOs to choose from

    And when I opened a ticket with a link to an ISO I wanted to use, it was quickly made available too.

    Thanked by 1ProHosting24
  • bokuyababokuyaba Member
    edited October 2024

    Such a great price?

    Thanked by 1ProHosting24
  • ProHosting24ProHosting24 Member, Patron Provider

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

  • @ProHosting24 said:

    @Multi said:
    Are there plans to offer support for custom iso's?

    Plans? There are over 120 ISOs to choose from

    It was just a question. As you said there are plenty of ISO's available. Some of us are just paranoid or prefer their own in some usecases.

  • @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    Yikes.

  • hcjhcj Member

    @Multi said:
    Some of us are just paranoid or prefer their own in some usecases.

    +1

  • MumblyMumbly Member
    edited October 2024

    @ProHosting24 said: Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    And still not a single "ProHosting24 suspended me without reason" complaint thread?
    Outrageous!

  • ProHosting24ProHosting24 Member, Patron Provider

    @Mumbly said:

    @ProHosting24 said: Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    And still not a single "ProHosting24 suspended me without reason" complaint thread?
    Outrageous!

    Well we just shut down accounts and refund remaining credit, those users probably move on then to fuck up other providers.

    I could imagine such posts arising as soon as we begin to retain credit.

    Big thanks to this community, you cant imagine how good it feels to have other people look at this form of abuse in the same way.

  • @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    Hello, I have read your TOS, which states: "It is prohibited to store or distribute illegal or copyrighted content on the products provided."

    I would like to ask if this is strictly prohibited as it is written, meaning that if you find such content, you will take action immediately, or if you only take action when a copyright holder files a complaint?

    I have a Japanese gravure idol photo website that I intend to migrate over. Would this be accepted or rejected?

  • @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    unfortunately, this has not yet had a noticeably positive effect on the gb6 score of my vps. :)

  • @ProHosting24 said:

    @maverick said:

    @emgh said:
    @ProHosting24 Starbucks? You deserve real coffee my guy

    Alrighty, a beer it should be:

    @hyperblast said:

    @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    unfortunately, this has not yet had a noticeably positive effect on the gb6 score of my vps. :)

    @hyperblast , don't worry too much about the scores. Are you slow in your transactions? Are you having problems?

    This way you look like someone who always wants Prada, Channel, Gucci but buys from the bargain market :)

    Thanked by 1ProHosting24
  • MultiMulti Member
    edited October 2024

    @hyperblast said:

    @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    unfortunately, this has not yet had a noticeably positive effect on the gb6 score of my vps. :)

    I can't complain given the affordable price tag of the service. Depending on the time of the day I get like 2-15% steal while running a geekbench but overall the results are kinda stable (± 5%) since I got the server.

    Thanked by 1ProHosting24
  • ProHosting24ProHosting24 Member, Patron Provider

    @hyperblast said:

    @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    unfortunately, this has not yet had a noticeably positive effect on the gb6 score of my vps. :)

    This is a whole another discussion which was answered by other users multiple times already.

    We never advertised these speeds in our post nor in any yabs we posted, so we also never guaranteed these exact scores for our new hypervisor generation.

    But to repeat the answer multiple users presented to you already: scores that you achieved when the hypervisor had <5% load aren’t going to be achieved even when the hypervisor has a load <50%.

    This has been explained in more detail with reference to @advinservers and his deeper insights into this topic regarding new genoa CPUs.

    Therefore i don‘t quite understand your needs, we can offer a dedicated genoa node just for you alone with one 4 core and 16gb memory vm on it for your benchmark. With booked management by us you will even have the posibilty to use our CEPH cluster. But i am sure that you are not interested in that, therefore please explain to me what i can do for you.

    Also we have only been able to suspend users that pull 100%, there are still +50 vms that we need to suspend which participate in this kind of abuse by limiting the load they cause with their blockchain and mining apps to constant 90, 80, 70% and so on.

  • K4Y5K4Y5 Member
    edited October 2024

    @Multi said:

    @hyperblast said:

    @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    unfortunately, this has not yet had a noticeably positive effect on the gb6 score of my vps. :)

    I can't complain given the affordable price tag of the service. Depending on the time of the day I get like 2-15% steal while running a geekbench but overall the results are kinda stable (± 5%) since I got the server.

    CPU Steal has been under 0.32% for me over the past month.

    Thanked by 1ProHosting24
  • ProHosting24ProHosting24 Member, Patron Provider

    @bokuyaba said:

    @ProHosting24 said:

    @bokuyaba said:
    Such a great price?

    Not easy to maintain that actually.

    Seems like we got in need of automatically suspending accounts permanently.

    Some users are hosting all kinds of quilibrium gaga crypto web3 and storage blockchain nodes.

    So far we suspended over 100 VMs 🥲

    Hello, I have read your TOS, which states: "It is prohibited to store or distribute illegal or copyrighted content on the products provided."

    I would like to ask if this is strictly prohibited as it is written, meaning that if you find such content, you will take action immediately, or if you only take action when a copyright holder files a complaint?

    I have a Japanese gravure idol photo website that I intend to migrate over. Would this be accepted or rejected?

    On request by legal copyright holders or their represantetives you have the chance to remove that content. If you decide to rather infrige one entities rights then we are going to suspend your account.

    Thanked by 1bokuyaba
Sign In or Register to comment.