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.

BF 25 deals in EU/US/APAC

11719212223

Comments

  • You need to mount it, format it, attach to the operating system. I think this might help you as bash script to do so:

    !/usr/bin/env bash

    set -euo pipefail

    DISK="/dev/vdb"
    PART="${DISK}1"
    MOUNTPOINT="/mnt/data"
    TARGET_USER=""
    GROUP=""

    echo "[1] verify disk exists"
    lsblk "$DISK"

    echo "[2] create GPT label"
    parted -s "$DISK" mklabel gpt

    echo "[3] create single full-size partition"
    parted -s "$DISK" mkpart primary ext4 0% 100%

    echo "[4] notify kernel"
    partprobe "$DISK"
    sleep 2

    echo "[5] create filesystem"
    mkfs.ext4 -F "$PART"

    echo "[6] create mountpoint"
    mkdir -p "$MOUNTPOINT"

    echo "[7] mount partition"
    mount "$PART" "$MOUNTPOINT"

    echo "[8] persist in fstab"
    UUID=$(blkid -s UUID -o value "$PART")
    grep -q "$UUID" /etc/fstab || echo "UUID=$UUID $MOUNTPOINT ext4 defaults,nofail 0 2" >> /etc/fstab

    echo "[9] create group if missing"
    getent group "$GROUP" >/dev/null || groupadd "$GROUP"

    echo "[10] add user to group"
    usermod -aG "$GROUP" "$TARGET_USER"

    echo "[11] set permissions"
    chown root:"$GROUP" "$MOUNTPOINT"
    chmod 2775 "$MOUNTPOINT"

    echo "[12] verify"
    ls -ld "$MOUNTPOINT"
    df -h "$MOUNTPOINT"
    id "$TARGET_USER"

    echo "Now re-login for perms to be visible"

    Thanked by 1Deepak_leb
  • ralfralf Member

    With large disks, personally I prefer to use LVM. For debian:

    apt-get update
    apt-get install lvm2
    pvcreate /dev/vdb
    vgcreate vg0 /dev/vdb
    lvcreate -L1T -nborg vg0
    mke2fs -t ext4 -m 0.01 /dev/vg0/borg
    blkid /dev/vg0/borg
    vi /etc/fstab
    systemctl daemon-reload
    mount -a
    chown borg:borg /home/borg
    

    Obviously change the size and name in the lvcreate line as appropriate, and in the fstab use the UUID from the blkid output.

    Thanked by 1Deepak_leb
  • OhJohnOhJohn Member
    edited February 13

    As anyone here is waiting for HH's birthday offers in April, just a short question:

    Does HH support paypal subscriptions or billing agreements? I've just seen onetime payments via pp in the dashboard?

    @hosthatch am I just stupid in not finding that option?

  • ralfralf Member

    @OhJohn said:
    As anyone here is waiting for HH's birthday offers in April, just a short question:

    Does HH support paypal subscriptions or billing agreements? I've just seen onetime payments via pp in the dashboard?

    The special offers are always annual or biennial/triennial deals. Annual will significantly reduce their payment processing fees (just once instead of 12 times) and the multi-year upfront payments will obviously allow them to reduce the gap between buying the server upfront and getting paid by clients using it, again making it cheaper for them.

    I believe their regular products are all available monthly, quarterly or semiannually as well as the longer periods, but obviously the regular prices are more expensive than their deals. I've never used them because I love the deal prices and in general I can wait before buying the next thing, but the regular prices do seem pretty competitive especially in APAC.

    Thanked by 1OhJohn
  • OhJohnOhJohn Member
    edited February 13

    @ralf I actually do have yearly, biennial and monthly products - that's just the billing cycle.

    I am talking about the technical use of paypal at HostHatch - esp. about enabling auto-payment via paypal billing agreement (which means HH could just automatically deduct the invoice amount from pp) or subscription (ok, this one would only work for monthly probably, so paypal billing agreement would be the best option).

  • ralfralf Member

    @OhJohn said:
    @ralf I actually do have yearly, biennial and monthly products - that's just the billing cycle.

    I am talking about the technical use of paypal at HostHatch - esp. about enabling auto-payment via paypal billing agreement (which means HH could just automatically deduct the invoice amount from pp) or subscription (ok, this one would only work for monthly probably, so paypal billing agreement would be the best option).

    Ooooh. Sorry, I guess my brain saw subscription and assumed you wanted something monthly. Yeah, totally didn't answer your question!

    Thanked by 1OhJohn
  • Hi,i missed bf.
    The next sales will be when?
    I wanna buy jp server

  • raviravi Member

    @yuanzi505 said:
    Hi,i missed bf.
    The next sales will be when?
    I wanna buy jp server

    maybe in April.. Birthday Celebration Sale!!

    Thanked by 2ravenof7 yuanzi505
  • @RedSox said:
    Hi there. I got a hybryd VPS from HH.

    root@vps:~# df -h
    Filesystem      Size  Used Avail Use% Mounted on
    tmpfs           197M  1.1M  196M   1% /run
    /dev/vda1        19G  1.5G   17G   8% /
    tmpfs           984M     0  984M   0% /dev/shm
    tmpfs           5.0M     0  5.0M   0% /run/lock
    /dev/vda16      881M   61M  758M   8% /boot
    /dev/vda15      105M  6.1M   99M   6% /boot/efi
    tmpfs           197M   12K  197M   1% /run/user/0
    
    root@vps:~# fdisk -l
    Disk /dev/vda: 20 GiB, 21474836480 bytes, 41943040 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: gpt
    Disk identifier: C4C3A580-6862-4FC3-B79D-8FC0E680CA32
    
    Device       Start      End  Sectors  Size Type
    /dev/vda1  2099200 41944006 39843807   19G Linux filesystem
    /dev/vda14    2048    10239     8192    4M BIOS boot
    /dev/vda15   10240   227327   217088  106M EFI System
    /dev/vda16  227328  2097152  1869825  913M Linux extended boot
    
    Partition table entries are not in disk order.
    
    Disk /dev/vdb: 1.82 TiB, 2000012919360 bytes, 3906273280 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 by
    

    How to make that /dev/vdb with 1.82 TiB available? I mean I got plex on the server and when I want to migrate my movie collection to VPS but I can't cause it says I have only 19G disk.

    Thanks for help in advance.

    Copy paste this post in gemini and it will tell you step by step.

    Thanked by 1Deepak_leb
  • ariq01ariq01 Member

    Hi guys @hosthatch , are there any connectivity issues in SG DC recently?
    https://status.hosthatch.com/794785584

  • Looks like, my server's connectivity dropped a few times.

  • up2uup2u Member

    When will Celebrating 15 years kick off?

  • thirdthird Member

    is Celebrating 15 years coming?

  • When will Celebrating 15 years kick off?

  • ralfralf Member

    IIRC their actual anniversary date is tomorrow, but in previous years they've made their announcement up to a week afterwards. Hopefully they'll wait until next week as I'm busy this weekend! :D

  • ww4850ww4850 Member

    When will Celebrating 15 years kick off?

  • seenuseenu Member

    i have their bi-annual storage offer from 2024 bf sales.
    i am wondering do they allow renewals (which is promised already) or not, with the rising hardware costs.

    if they don't honor renewas at current price, i wish they inform that upfront (no hard feelings) so i can transfer data to somewhere else.

  • hkbbdxhkbbdx Member

    When will Celebrating 15 years kick off?

  • when the time comes

  • ralfralf Member

    @seenu said:
    i have their bi-annual storage offer from 2024 bf sales.
    i am wondering do they allow renewals (which is promised already) or not, with the rising hardware costs.

    if they don't honor renewas at current price, i wish they inform that upfront (no hard feelings) so i can transfer data to somewhere else.

    They generate invoices 2 weeks in advance of renewal, so you would probably have enough notice to grab a different BF deal in that case.

    All of my servers to date have renewed at their initial price, even though the prices increase slightly in the sales every year. Personally, I doubt they'd charge more for hardware they already own, but I guess it's always possible. My most recent renewal was in January if that helps.

    Thanked by 1seenu
  • hosthatchhosthatch Patron Provider, Top Host, Veteran

    We do not charge anything extra on renewals, recurring prices remain the same.

    Thanks for the interest in the anniversary sales. Currently dealing with a lot so they won't be happening tomorrow, which is the actual 15th anniversary, but we'll try and do them close to next Monday (the 20th of April).

  • Waiting for good Korean deals

  • yoursunnyyoursunny Member, IPv6 Advocate

    @hosthatch said:
    Thanks for the interest in the anniversary sales. Currently dealing with a lot so they won't be happening tomorrow, which is the actual 15th anniversary, but we'll try and do them close to next Monday (the 20th of April).

    We don’t need new servers, but happy anniversary!

    Thanked by 2skorous stxsh
  • semanseman Member

    sg storage vps please

  • Compute in Korea, Vienna and Chicago please! :wink:

    Thanked by 1NetPIMP
  • RurikoRuriko Member

    I pray for some good JP deals

  • limworklimwork Member
    edited April 11

    Happy Birthday Hosthatch! Please keep anniversary deals pricing the same as BF25 deals. :)

  • xkxxkx Member

    @Ruriko said:
    I pray for some good JP deals

    I pray for some good JP STORAGE deals :smiley:

  • SG storage vps pls.

  • Happy 15th anniversary HostHatch!

This discussion has been closed.