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
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
Rabisu - Hosting Solutions
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.

Kimsufi/Soyoustart/OVH Rise New Price

1125126128130131662

Comments

  • Adam1Adam1 Member
    edited November 2024

    @Adam1 said: 32GB > 64GB upgrade,
    1Gbit down

    sadly no CPU/SSD upgrades

    But the RAM upgrade is best for me in this case, great!

    1gbit up would have been nice. oh well.

    I should add, that the KS server it is replacing, has 1gbit up on ipv6, whereas this KS-LE-C only has 300 up. So a small downgrade for that. Kinda sad about that tbh.

    edit: and if anyone is wondering, the port speed is limited, I was hoping for 2x300mbit (ipv4+ipv6)

  • I prefer the LE server deals over the BF deals as the price increases back to standard price after the initial commitment (afaik). LE pricing stays as it is.

    I'm hoping for no setup and cheap SYS-LE in London. That will be replacing 3 older KS servers

  • CokeMineCokeMine Member
    edited November 2024

    I just paid for the BHS KS-LE-A bill ordered on the 5th and the server was up within a minute. Haven't test networks but the CPU and RAM upgraded.
    E3-1245 V2 with 32GB RAM

  • @CokeMine said:
    I just paid for the BHS KS-A bill ordered on the 5th and the server was up within a minute. Haven't test networks but the CPU and RAM upgraded.
    E3-1245 V2 with 32GB RAM

    That would be a KS-LE-A

  • CokeMineCokeMine Member
    edited November 2024

    @fredo1664 said:

    @CokeMine said:
    I just paid for the BHS KS-A bill ordered on the 5th and the server was up within a minute. Haven't test networks but the CPU and RAM upgraded.
    E3-1245 V2 with 32GB RAM

    That would be a KS-LE-A

    Y, edited. I was reminded of my cancelled KS-A order

    Thanked by 1fredo1664
  • @Catrat said:

    @adns said:

    It is not an exactly reply, however I tried these solutions with success.

    Boot into the rescue system and make sure that no RAID arrays
    cat /proc/mdstat
    If present, stop
    mdadm --stop /dev/md126
    (Replace 126 with array number and repeat if neccessary)

    Wipe disks
    wipefs -a /dev/sda
    And on other disks, replace sda with nvme if nvme present.

    If you want to install Debian, you can do a debootstrap chroot install with manual partition preparation, debootstrap and installing kernel, grub (based on boot method) and others.

    If you want to use graphical installer, you can do it too.
    Install Qemu
    apt install qemu-system-x86
    This need to run a VM with installer on the disks.

    Download the CentOS installer with wget.

    Run the installer
    # qemu-system-x86_64 \ -enable-kvm \ -nodefaults \ -cdrom <path-to-iso> \ -hda /dev/sda \ -hdb /dev/sdb \ -m 4G \ -net nic -net user \ -vga std \ -vnc localhost:0 \ -usbdevice tablet \ -k en-us

    It allows the unprotected VNC only from localhost (dangerous to allow it from internet), so create an SSH tunnel. On Win10 and 11 OpenSSH built-in, so in CMD:
    ssh -L 5900:localhost:5900 root@server

    Connect to localhost:5900 with a VNC client and do the installation.
    Set DHCP on your primary interface to network-manager and if everything goes well, when you reboot after Qemu install, your server will boot with CentOS or Fedora or other and you can access them. If no, you can go back to rescue and check the logs, or open a serial console and login from browser or SSH to determine the cause the problem.
    I tested this method with BIOS boot method on a KS-LE-1 2022 edition. IF your server requires UEFI I think that you need an EFI-compliant emulation in Qemu.

    PS: I install all of my OVH servers with Debootstrap, both on UEFI and legacy because I do not prefer cloud-init method on a bare-metal server and I use encrypted disks with remote unlock that not possible from OVH templates.

    With this method, do you boot from the local drives or with pxe ?
    The KS from the flash sales have an UEFI PXE boot, and when changing this with efibootmgr, it's always reset to the default OVH config.

    At setup time OVH's rescue system and after that normal local drives.

    @Adam1 said:
    I prefer the LE server deals over the BF deals as the price increases back to standard price after the initial commitment (afaik). LE pricing stays as it is.

    I'm hoping for no setup and cheap SYS-LE in London. That will be replacing 3 older KS servers

    There will be LE editions too on BF sales, prices not changing with contract so you can sign monthly contract for these, no automatic price increase.

  • allthemtingsallthemtings Member, Megathread Squad

    @adns said:

    @Catrat said:

    @adns said:

    It is not an exactly reply, however I tried these solutions with success.

    Boot into the rescue system and make sure that no RAID arrays
    cat /proc/mdstat
    If present, stop
    mdadm --stop /dev/md126
    (Replace 126 with array number and repeat if neccessary)

    Wipe disks
    wipefs -a /dev/sda
    And on other disks, replace sda with nvme if nvme present.

    If you want to install Debian, you can do a debootstrap chroot install with manual partition preparation, debootstrap and installing kernel, grub (based on boot method) and others.

    If you want to use graphical installer, you can do it too.
    Install Qemu
    apt install qemu-system-x86
    This need to run a VM with installer on the disks.

    Download the CentOS installer with wget.

    Run the installer
    # qemu-system-x86_64 \ -enable-kvm \ -nodefaults \ -cdrom <path-to-iso> \ -hda /dev/sda \ -hdb /dev/sdb \ -m 4G \ -net nic -net user \ -vga std \ -vnc localhost:0 \ -usbdevice tablet \ -k en-us

    It allows the unprotected VNC only from localhost (dangerous to allow it from internet), so create an SSH tunnel. On Win10 and 11 OpenSSH built-in, so in CMD:
    ssh -L 5900:localhost:5900 root@server

    Connect to localhost:5900 with a VNC client and do the installation.
    Set DHCP on your primary interface to network-manager and if everything goes well, when you reboot after Qemu install, your server will boot with CentOS or Fedora or other and you can access them. If no, you can go back to rescue and check the logs, or open a serial console and login from browser or SSH to determine the cause the problem.
    I tested this method with BIOS boot method on a KS-LE-1 2022 edition. IF your server requires UEFI I think that you need an EFI-compliant emulation in Qemu.

    PS: I install all of my OVH servers with Debootstrap, both on UEFI and legacy because I do not prefer cloud-init method on a bare-metal server and I use encrypted disks with remote unlock that not possible from OVH templates.

    With this method, do you boot from the local drives or with pxe ?
    The KS from the flash sales have an UEFI PXE boot, and when changing this with efibootmgr, it's always reset to the default OVH config.

    At setup time OVH's rescue system and after that normal local drives.

    @Adam1 said:
    I prefer the LE server deals over the BF deals as the price increases back to standard price after the initial commitment (afaik). LE pricing stays as it is.

    I'm hoping for no setup and cheap SYS-LE in London. That will be replacing 3 older KS servers

    There will be LE editions too on BF sales, prices not changing with contract so you can sign monthly contract for these, no automatic price increase.

    With the DD3 ram on the LE-1 I’m expecting some crazy low prices but usually OVH blackfriday is disappointing

  • emghemgh Member, Megathread Squad

    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

  • allthemtingsallthemtings Member, Megathread Squad

    @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Hopefully a deal on the epyc game servers or advance line

    regards

    Thanked by 1emgh
  • ehabehab Member
    edited November 2024

    @allthemtings said:

    @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Hopefully a deal on the epyc game servers or advance line

    regards

    both of u 2 still wanna
    kiss
    ma
    suFFFFFiy

    @allthemtings u have too much MONey

    Thanked by 1emgh
  • allthemtingsallthemtings Member, Megathread Squad

    @ehab said:

    @allthemtings said:

    @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Hopefully a deal on the epyc game servers or advance line

    regards

    both of u 2 still wanna
    kiss
    ma
    suFFFFFiy

    @allthemtings u have too much MONey

  • @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Most of the offers (especialy the popular ones) went out of stock and was no restock on CyberMonday... So in real the extra 10% was unusable on low-end line, I tried SYS-LE-1 but i do not have any success.

    This year's BF will be strong in my opinion, the DDR3 KS-LEs will have friendly prices and with 1000/300 network will be good deals.

    But I never think that they beat lottery winner LE-Bs in GRA. :D

  • @Neoon said:

    In 2h it wil be 1pm in France.. I guess no more LE-B's :(

  • NeoonNeoon Community Contributor, Veteran

    @SwordfishBE said:

    @Neoon said:

    In 2h it wil be 1pm in France.. I guess no more LE-B's :(

  • allthemtingsallthemtings Member, Megathread Squad

    @SwordfishBE said:

    @Neoon said:

    In 2h it wil be 1pm in France.. I guess no more LE-B's :(

  • allthemtingsallthemtings Member, Megathread Squad

    @Neoon said:

    @SwordfishBE said:

    @Neoon said:

    In 2h it wil be 1pm in France.. I guess no more LE-B's :(

    I’m pretty sure you’ve got one locked in there though, to keep you waiting 2 weeks only to cancel would be evil at this point

  • NeoonNeoon Community Contributor, Veteran
    edited November 2024

    @Neoon said:

    @SwordfishBE said:

    @Neoon said:

    In 2h it wil be 1pm in France.. I guess no more LE-B's :(

    ^

    If anyone from OVH reads this and I know you do.
    Please keep my order alive.

  • emghemgh Member, Megathread Squad

    @adns said:

    @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Most of the offers (especialy the popular ones) went out of stock and was no restock on CyberMonday... So in real the extra 10% was unusable on low-end line, I tried SYS-LE-1 but i do not have any success.

    This year's BF will be strong in my opinion, the DDR3 KS-LEs will have friendly prices and with 1000/300 network will be good deals.

    But I never think that they beat lottery winner LE-Bs in GRA. :D

    I got a Ryzen game server with the extra 10 or 15 %

  • allthemtingsallthemtings Member, Megathread Squad

    @emgh said:

    @adns said:

    @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Most of the offers (especialy the popular ones) went out of stock and was no restock on CyberMonday... So in real the extra 10% was unusable on low-end line, I tried SYS-LE-1 but i do not have any success.

    This year's BF will be strong in my opinion, the DDR3 KS-LEs will have friendly prices and with 1000/300 network will be good deals.

    But I never think that they beat lottery winner LE-Bs in GRA. :D

    I got a Ryzen game server with the extra 10 or 15 %

    The only comparison with the ryzen servers vs hetzner is the ddos protection, even with like 30-40% off Rise/Game hetzner is still better performance/cost imo

    Thanked by 1emgh
  • emghemgh Member, Megathread Squad

    @allthemtings said:

    @emgh said:

    @adns said:

    @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Most of the offers (especialy the popular ones) went out of stock and was no restock on CyberMonday... So in real the extra 10% was unusable on low-end line, I tried SYS-LE-1 but i do not have any success.

    This year's BF will be strong in my opinion, the DDR3 KS-LEs will have friendly prices and with 1000/300 network will be good deals.

    But I never think that they beat lottery winner LE-Bs in GRA. :D

    I got a Ryzen game server with the extra 10 or 15 %

    The only comparison with the ryzen servers vs hetzner is the ddos protection, even with like 30-40% off Rise/Game hetzner is still better performance/cost imo

    Yeah, honestly the game-line is extremely overpriced

    Entry-level starting at €149.99 now (monthly) whereas Hetzner’s entry-level high core clock servers start at €39

    Thanked by 2allthemtings satorik
  • @ehab said:

    @allthemtings said:

    @emgh said:
    Just a quick note: Last BF, they did a half-decent discount, that they later made actually decent on cyber monday where some servers got an additional discount

    Hopefully a deal on the epyc game servers or advance line

    regards

    both of u 2 still wanna
    kiss
    ma
    suFFFFFiy

    @allthemtings u have too much MONey

    k im suffering

    Thanked by 2emgh t0m
  • Looking for KS-LE-B (HDD) (SSD). If you don't need it much, please transfer it to me.
    Thank you for your help.

  • @ascicode said:
    k im suffering

    do not suffer! what do you want?
    A --- not happening unless you call the CEO
    B,C -- maybe they come back

    so, be happy, and save your idle money for Bfify day.

    Thanked by 1emgh
  • @ehab said:
    B,C -- maybe they come back

    They have half an hour to come back, that would be quite the Swan Song!

  • @fredo1664 said:

    @ehab said:
    B,C -- maybe they come back

    They have half an hour to come back, that would be quite the Swan Song!

    then just

  • Barely managed to get a LE-B from a fellow LET member. LE-E got cancelled :/. Hopes are high for black friday

  • allthemtingsallthemtings Member, Megathread Squad

    @Mik3y326 said:
    Barely managed to get a LE-B from a fellow LET member. LE-E got cancelled :/. Hopes are high for black friday

    Sorry in advance

    Thanked by 1emgh
  • ps20090ps20090 Member
    edited November 2024

    Thanked by 1Freek
  • Flash Sales were supposed to finish 35 minutes ago but apparently they are still live :smile:

  • allthemtingsallthemtings Member, Megathread Squad

    @Angular48 said:
    Flash Sales were supposed to finish 35 minutes ago but apparently they are still live :smile:

    Once they are finished with a 3 hour lunch break they will be back to remove it

    Thanked by 2JamesOakley emgh
Sign In or Register to comment.