<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>lowendspirit — LowEndSpirit</title>
        <link>https://lowendspirit.com/index.php?p=/</link>
        <pubDate>Thu, 04 Jun 2026 22:45:56 +0000</pubDate>
        <language>en</language>
            <description>lowendspirit — LowEndSpirit</description>
    <atom:link href="https://lowendspirit.com/index.php?p=/discussions/tagged/lowendspirit/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Alpine Linux 3.23 - 23mb ram | 71mb disk - guide</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/10647/alpine-linux-3-23-23mb-ram-71mb-disk-guide</link>
        <pubDate>Thu, 12 Mar 2026 18:35:01 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>AnthonySmith</dc:creator>
        <guid isPermaLink="false">10647@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><strong>Minimising Alpine 3.23 on a KVM VPS ran on TierHive</strong></p>

<p>This guide documents how to strip a freshly deployed Alpine 3.23 (should be fine on 3.22 also) VPS down to the minimum RAM and disk footprint without breaking it.</p>

<p>For those reading it running it outside of TierHive, please note this targets KVM-based VPS instances with a virtio-blk disk (<code>/dev/vda</code>), a single network interface, and a static IP assigned at deployment. If your disk is virtio-scsi (<code>/dev/sda</code>) there is one step that differs, noted inline.</p>

<hr />

<h2>Before</h2>

<p>Fresh deploy, cloud-init has run, nothing changed yet, cant run apk, not enough free ram.</p>

<pre><code>              total        used        free      shared  buff/cache   available
Mem:             91          38          25           2          28          47
Swap:             0           0           0
</code></pre>

<pre><code>Filesystem      Size      Used Available Use% Mounted on
/dev/vda       953.0M    164.4M    741.7M  18% /
</code></pre>

<hr />

<h2>Stage 1: Kernel Module Blacklist and Initramfs</h2>

<p>The Alpine virt kernel loads modules that have no purpose on a headless KVM VPS: USB controllers, graphics drivers, cloud-specific network drivers for AWS and GCP, I2C buses, input devices, and more. Blacklisting them stops them loading on boot.</p>

<p>Some modules, however, are listed in the kernel <code>modules=</code> boot parameter and load before the blacklist is read. They also need removing from the initramfs features list. Do all three together so only one <code>mkinitfs</code> run is needed.</p>

<p>Create the blacklist:</p>

<pre><code>cat &gt; /etc/modprobe.d/blacklist-unnecessary.conf &lt;&lt; 'EOF'
# Graphics (headless server)
blacklist drm
blacklist drm_kms_helper
blacklist simpledrm
blacklist virtio_gpu
blacklist fb

# KVM (not nesting VMs)
blacklist kvm
blacklist kvm_amd
blacklist kvm_intel

# Legacy devices
blacklist floppy
blacklist cdrom
blacklist sr_mod
blacklist isofs

# HID/input (headless)
blacklist hid
blacklist usbhid
blacklist hid_generic
blacklist psmouse
blacklist mousedev

# Wrong cloud drivers (not GCP/AWS)
blacklist gve
blacklist ena

# Force block DRM (blacklist alone does not work, ACPI triggers it)
install drm /bin/true
install drm_kms_helper /bin/true
install simpledrm /bin/true
install fb /bin/true

# USB (not needed on VPS)
blacklist usbcore
blacklist xhci_hcd
blacklist xhci_pci
blacklist usb_common

# I2C (not needed)
blacklist i2c_core
blacklist i2c_smbus
blacklist i2c_piix4

# Input (headless)
blacklist evdev
blacklist button

# Misc not needed
blacklist loop
blacklist ata_generic
blacklist i6300esb
blacklist qemu_fw_cfg

# Memory ballooning
blacklist virtio_balloon

# Hard block loop device (blacklist entry alone is not always sufficient)
install loop /bin/true
EOF
</code></pre>

<p>Strip the initramfs down to what a KVM virtio-blk instance actually needs. The default includes USB, CDROM, NVMe, RAID, SCSI, and cloud-specific drivers that will never be used:</p>

<pre><code>sed -i 's/^features=.*/features="base ext4 virtio"/' /etc/mkinitfs/mkinitfs.conf
</code></pre>

<blockquote><div>
  <p>If your disk is virtio-scsi (<code>/dev/sda</code>) keep <code>scsi</code> in the features list: <code>features="base ext4 scsi virtio"</code></p>
</div></blockquote>

<p>Fix the bootloader. The <code>modules=</code> parameter loads drivers early, before the blacklist runs. Remove <code>usb-storage</code>, <code>ena</code>, and <code>gve</code> from it. Also add the tuning parameters now so they are in place for the reboot at the end of this guide.</p>

<p>For <code>/boot/extlinux.conf</code>:</p>

<pre><code>sed -i 's/,usb-storage,ext4,ena,gve/,ext4 ipv6.disable=1 audit=0 nowatchdog/' /boot/extlinux.conf
</code></pre>

<p>For <code>/etc/update-extlinux.conf</code> (persists the change across kernel updates):</p>

<pre><code>sed -i 's/,usb-storage,ext4,ena,gve/,ext4/' /etc/update-extlinux.conf
sed -i 's/default_kernel_opts="/default_kernel_opts="ipv6.disable=1 audit=0 nowatchdog /' /etc/update-extlinux.conf
</code></pre>

<p>The parameters added:</p>

<ul>
<li><code>ipv6.disable=1</code> disables IPv6 at kernel level, removing the associated threads and memory allocations. Skip this if you use IPv6.</li>
<li><code>audit=0</code> disables the Linux audit subsystem. It serves no purpose on a VPS, runs a kernel thread, and pre-allocates slab memory.</li>
<li><code>nowatchdog</code> disables the softlockup and hardlockup detectors.</li>
</ul>

<p>Rebuild the initramfs:</p>

<pre><code>mkinitfs
</code></pre>

<hr />

<h2>Stage 2: Replace OpenSSH with Dropbear</h2>

<p>Dropbear is a minimal SSH server designed for low-resource systems. It is significantly smaller than OpenSSH and links against far fewer libraries. On a NAT VPS with a single exposed port, the switch must be done atomically: stop sshd and start dropbear in one command or you will lose access.</p>

<pre><code>apk add dropbear
rc-service sshd stop &amp;&amp; rc-service dropbear start
rc-update del sshd default
rc-update add dropbear default
apk del openssh openssh-client-common openssh-client-default openssh-keygen openssh-server openssh-server-common openssh-server-common-openrc openssh-server-pam openssh-sftp-server
</code></pre>

<p>Your session might drop. Reconnect on the same port as before.</p>

<hr />

<h2>Stage 3: Remove Cloud-Init and Python</h2>

<p>Cloud-init runs once at first boot to configure the instance from the provider metadata. After that it does nothing. It pulls in Python 3 and a large set of dependencies. Since it has already run and the instance is configured, all of it can be removed, if you want to keep python, remove the '|py3-|python3|pyc' part in the command.</p>

<pre><code>apk del $(grep "^P:" /lib/apk/db/installed | sed 's/^P://' | grep -E "^(cloud-init|cloud-utils|py3-|python3|pyc)")
</code></pre>

<hr />

<h2>Stage 4: Package Cleanup</h2>

<p>Remove packages that serve no purpose on a running VPS. This covers NTP replacement, redundant shell and user management tools, hardware management utilities for hardware that does not exist, and network drivers for other cloud platforms.</p>

<p><strong>Replace chrony with busybox ntpd.</strong> Chrony is a full-featured NTP implementation. Busybox includes a lightweight ntpd applet that requires no additional package:</p>

<pre><code>rc-service chronyd stop
rc-update del chronyd default
rc-update add ntpd default
apk del chrony chrony-openrc
</code></pre>

<blockquote><div>
  <p><strong>NTP is optional on KVM.</strong> The guest clock is disciplined by the hypervisor via <code>kvm-clock</code>. On TierHive and similar platforms where the end user has no control over VM suspension or migration, the hypervisor keeps the clock accurate and ntpd adds no value. To skip NTP entirely, do not add the ntpd service.</p>
</div></blockquote>

<p>Remove packages with no runtime use:</p>

<pre><code>apk del bash sudo doas nvme-cli syslinux mtools numactl curl e2fsprogs-extra partx qemu-guest-agent qemu-guest-agent-openrc
</code></pre>

<blockquote><div>
  <p><code>qemu-guest-agent</code> enables live snapshots and guest introspection from the hypervisor. If your hosting platform uses QEMU guest operations, keep it.</p>
</div></blockquote>

<p>Remove orphaned libraries left behind by the packages above. Some will be retained by apk because the kernel package depends on them, which is expected:</p>

<pre><code>apk del readline gdbm mpdecimal sqlite-libs yaml p11-kit libtasn1 gnutls nettle gmp libidn2 libunistring libexpat libedit libffi shadow tzdata libseccomp libncursesw libpanelw ncurses-terminfo-base
</code></pre>

<p>Remove dhcpcd. Once a VPS has a static IP assigned at deployment, the DHCP client is not needed:</p>

<pre><code>apk del dhcpcd dhcpcd-openrc
</code></pre>

<p>Clear the package cache:</p>

<pre><code>rm -rf /var/cache/apk/*
</code></pre>

<hr />

<h2>Stage 5: Service Cleanup</h2>

<p>Disable services that have nothing to do on a KVM VPS:</p>

<pre><code>rc-update del acpid boot
rc-update del hwclock boot
rc-update del swap boot
</code></pre>

<ul>
<li><code>acpid</code> handles ACPI events such as power button presses. The hypervisor manages power state on a VPS, not the guest.</li>
<li><code>hwclock</code> syncs the hardware clock at boot and shutdown. On KVM the RTC is virtualised and managed by the hypervisor.</li>
<li><code>swap</code> checks for and activates swap devices. There is no swap.</li>
</ul>

<hr />

<h2>Stage 6: System Tuning</h2>

<p><strong>Fix IPv6 sysctl errors</strong></p>

<p>With <code>ipv6.disable=1</code> set, the kernel no longer has IPv6 sysctl keys. The default Alpine sysctl file tries to set them anyway and produces errors at boot. Comment them out:</p>

<pre><code>sed -i '/net\.ipv6/s/^/# /' /usr/lib/sysctl.d/00-alpine.conf
</code></pre>

<p><strong>Prevent debugfs and tracefs from mounting</strong></p>

<p>These kernel debug filesystems expose internal state and are not needed on a production VPS. Note that the memory for the tracing framework is allocated at kernel initialisation regardless; this only stops the filesystems from being accessible:</p>

<pre><code>sed -i 's/mount -n -t debugfs/: #mount -n -t debugfs/' /etc/init.d/sysfs
sed -i 's/mount -n -t tracefs/: #mount -n -t tracefs/' /etc/init.d/sysfs
</code></pre>

<p><strong>Sysctl tuning</strong></p>

<p>The default network socket buffers are sized for servers under heavy load, not minimal VPS instances. Reduce them along with a few other settings:</p>

<pre><code>cat &gt; /etc/sysctl.d/10-minvps.conf &lt;&lt; 'EOF'
# Reduce network socket buffers
net.core.rmem_default = 32768
net.core.wmem_default = 32768
net.core.rmem_max = 131072
net.core.wmem_max = 131072
net.core.netdev_max_backlog = 64
net.core.somaxconn = 128

# Reclaim inode and dentry caches more aggressively under memory pressure
vm.vfs_cache_pressure = 500

# Reduce PID table overhead
kernel.pid_max = 4096

# Dirty page writeback thresholds
vm.dirty_background_ratio = 5
vm.dirty_ratio = 10

# Disable watchdog
kernel.watchdog = 0
EOF
</code></pre>

<p><strong>Switch syslogd to in-memory circular buffer</strong></p>

<p>By default syslogd writes to <code>/var/log/messages</code> on disk. Switching to a circular buffer stores logs in memory instead. They remain accessible via <code>logread</code>. This removes the ongoing disk writes and the associated page cache overhead:</p>

<pre><code>sed -i 's/SYSLOGD_OPTS="-t"/SYSLOGD_OPTS="-t -C64"/' /etc/conf.d/syslog
</code></pre>

<p><strong>Reduce block device read-ahead</strong></p>

<p>The kernel defaults to 8MB of read-ahead on the block device. On virtual storage this is wasted memory. 128KB is more than sufficient:</p>

<pre><code>echo 128 &gt; /sys/block/vda/queue/read_ahead_kb

cat &gt; /etc/local.d/readahead.start &lt;&lt; 'EOF'
#!/bin/sh
echo 128 &gt; /sys/block/vda/queue/read_ahead_kb
EOF

chmod +x /etc/local.d/readahead.start
rc-update add local default
</code></pre>

<hr />

<h2>Reboot</h2>

<pre><code>reboot
</code></pre>

<hr />

<h2>After</h2>

<pre><code>              total        used        free      shared  buff/cache   available
Mem:             91          23          51           0          17          63
Swap:             0           0           0
</code></pre>

<pre><code>Filesystem      Size      Used Available Use% Mounted on
/dev/vda       953.0M     71.9M    834.1M   8% /
</code></pre>

<p>RAM down from 38MB to 23MB. Disk down from 164.4MB to 71.9MB.</p>

<hr />

<h2>What Is Still Running</h2>

<p>The only userspace processes after boot are <code>syslogd</code> (circular buffer mode), <code>dropbear</code>, and two getty processes: one on <code>ttyS0</code> for serial console access and one on <code>tty1</code> for the browser-based console panel.</p>

<p>The loaded kernel modules are exactly what the system requires: the virtio stack (virtio-blk, virtio-net, virtio-rng), the ext4 filesystem stack (ext4, jbd2, mbcache, crc16), hardware AES acceleration (aesni-intel, ghash-clmulni-intel, gf128mul), rng-core, net-failover, failover, and af-packet for raw socket support.</p>

<p>Notes for tinkerers:</p>

<p>Two kernel threads will appear in <code>ps aux</code> that look surprising: <code>[scsi_eh_0]</code> and <code>[scsi_eh_1]</code>. These are SCSI error handler threads compiled into the virt kernel. They are dormant and cannot be removed without a custom kernel.</p>

<p>Similarly, <code>[watchdogd]</code> persists despite <code>nowatchdog</code> in the cmdline. There is no <code>/dev/watchdog</code> device present and no watchdog module loaded. The thread does nothing.</p>

<hr />

<p>I have done this on the VPS that runs <a href="https://backtogeek.com" rel="nofollow">https://backtogeek.com</a> if you want to have a look as a performance indication, the whole thing runs on the 128mb, 1gb disk, low priority tier (the $0.10 /month $0.000135 /hour one) its a nothing site, just playing with rust to see how compact i can get a bespoke thingy running with tls support, it uses about 25mb in total to run that site, i will finish it one day and release it (open source) as a hackernews clone/micro blog platform</p>

<p>Anyway... hopefully that injects some low-end spirit into you!</p>

<p>More to come, its not meant to be a tierhive promotion, but it's what I have to work on, and it does not get much more low end than tierhive, this should work on pretty much any kvm host, if any hosts want to provide a VPS for me to test future crap on, I am happy to use your links instead!</p>

<p>version on the tierhive blog: <a href="https://tierhive.com/blog/tierhive-howto/how-to-run-alpine-with-just-23mb-ram" rel="nofollow">https://tierhive.com/blog/tierhive-howto/how-to-run-alpine-with-just-23mb-ram</a></p>

<p>Coming soon, similar guide for Debian 13</p>
]]>
        </description>
    </item>
    <item>
        <title>[BETA] LowEnd Shortener  – A passion project for the community</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/10720/beta-lowend-shortener-a-passion-project-for-the-community</link>
        <pubDate>Thu, 02 Apr 2026 02:16:04 +0000</pubDate>
        <category>Help</category>
        <dc:creator>AGXL</dc:creator>
        <guid isPermaLink="false">10720@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi everyone,</p>

<p>I’m Andy, and today I’m finally doing something I’ve been overthinking for a very long time.</p>

<p>The idea for a dedicated, privacy-focused link management tool for our specific niche has been living in my head for several years. I’ve always felt that as a community of sysadmins, hosters, and tech enthusiasts, we deserve a utility that isn't owned by "Big Tech," doesn't sell click data, and understands the "LowEnd" aesthetic.</p>

<h2>A while ago, I finally sat down and built it: <strong><a rel="nofollow" href="https://lowend.vip/">LowEnd Shortener</a></strong>.</h2>

<p><a rel="nofollow" href="https://lowend.vip"><img src="https://i.postimg.cc/bJQFq8Pv/Low-End-Banner.png" alt="LowEnd Shortener Banner" /></a></p>

<p>You might wonder why it took so long to see the light of day. I wanted to do this the right way, so I reached out to the management of LowEndTalk months ago to coordinate a release. Unfortunately, I hit a massive wall.</p>

<p>Despite "LowEnd" being a generic industry term used by all of us for over a decade, WNY IT Services, Inc. (LET owners) claimed that using the name "LowEnd" and domains like <code>lowend.vip</code>, <code>low.ad</code> or <code>lowendspir.it</code> was a trademark violation. I was told that the service would not be allowed on their platform.</p>

<p>I spent weeks in back-and-forth negotiations, even offering to hand over the entire project for free just to ensure it could exist for the community. But communication eventually went silent. This impasse drained my motivation and delayed the launch by months. It felt like a "corporate takeover" of a term that belongs to all of us.</p>

<p>After speaking with Mason (LES Admin), who was incredibly supportive and shared a much more community-oriented perspective, I decided to stop waiting for a "green light" from the corporate side.</p>

<p>I’ve realized that the spirit of this community doesn’t live in a trademark office – it lives right here on LowEndSpirit.</p>

<p>The system is currently in <strong>Beta</strong>. It is built on secure infrastructure, uses <strong>deSEC.io</strong> for DNS integrity, and is designed to be a bridge between our platforms.</p>

<ul>
<li><strong>Branded Domains:</strong> Use <code>low.lc</code>, <code>lowendspir.it</code>, <code>lowend.vip</code>, <code>low.ad</code>, and more.</li>
<li><strong>Provider Features:</strong> Verified hosters can request vanity subdomains (e.g., <code>yourbrand.lowend.vip</code>) for professional-looking links.</li>
</ul>

<p>I’ll be honest: I am still worried. I fear that releasing this tool under the "LowEnd" name might lead to the "ban hammer" being dropped on me. I’ve had my share of trademark disputes in the past, and they are exhausting.</p>

<p>Furthermore, I want to apologize in advance if my response time is sometimes slow. Due to health reasons, I occasionally have to step away from the screen, and it might take me a bit longer to reply to requests or support tickets. I hope you can forgive me for that.</p>

<p>But I truly believe this tool is useful. I’ve decided that the community’s need for a clean, free utility is more important than my fear of corporate retaliation.</p>

<p>I am releasing this as a beta because I need your feedback. Most importantly, I hope for some support from the LES family. If you believe that a community tool should be independent and free, I’d love for you to try it out.</p>

<p>You can find it here: <strong><a rel="nofollow" href="https://lowend.vip">https://lowend.vip</a></strong></p>

<p><em>Note: I have retired the <code>lowendta.lk</code> domain out of respect for their specific brand, but I am keeping the project name as "LowEnd Shortener" because that is what it is.</em></p>

<p>Thanks for reading my "Ted Talk." I’m looking forward to your thoughts!</p>

<p>Best regards,<br />
Andy</p>
]]>
        </description>
    </item>
    <item>
        <title>WANTED: Moderator Extraordinaire</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/9239/wanted-moderator-extraordinaire</link>
        <pubDate>Thu, 13 Mar 2025 18:57:24 +0000</pubDate>
        <category>Must See Deals</category>
        <dc:creator>mikho</dc:creator>
        <guid isPermaLink="false">9239@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Are you a legendary multitasker with the patience of a saint? Can you dedicate 12 hours a day to keeping the LES community running smoothly while gracefully handling the occasional storm of chaos? Then we need <strong>YOU</strong>!</p>

<p>Responsibilities:<br />
    •    Handle support tickets like a pro.<br />
    •    Conduct background checks on provider applications to keep our standards high.<br />
    •    Approve new members and diligently check for duplicate applications—no clones allowed!<br />
    •    Manage member DMs and process flags without breaking a sweat.<br />
    •    Continuously think of creative ways to add value to the LES experience.<br />
    •    Maintain the provider list and keep AuroraZero well-fed and happy.<br />
    •    Adapt to other random tasks that pop up from time to time—because surprises are part of the gig.</p>

<p>Qualifications:<br />
    •    Unbreakable spirit and a thick skin—you’ll need it.<br />
    •    Dedication to the cause despite the lack of pay.<br />
    •    Ability to take criticism with a smile and keep moving forward.<br />
    •    A sense of humor is a plus—it’ll help keep you sane.</p>

<p>If you’re ready to embrace the chaos and make LES an even better place, shoot us a message. Your new (volunteer) destiny awaits! 😎</p>
]]>
        </description>
    </item>
    <item>
        <title>Inception Hosting LES/NAT OpenVZ products - End Of Life. END OF AN ERA</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/6989/inception-hosting-les-nat-openvz-products-end-of-life-end-of-an-era</link>
        <pubDate>Mon, 11 Dec 2023 10:23:08 +0000</pubDate>
        <category>Industry News</category>
        <dc:creator>Rahul</dc:creator>
        <guid isPermaLink="false">6989@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello, 47 Minutes ago I received this heart breaking email.</p>

<blockquote><div>
  <p>Hello,</p>
  
  <p>I hope you are well.</p>
  
  <p>From the subject line alone the content of the email is probably already clear.</p>
  
  <p>With a heavy heart, it has been decided to bring this service to an end, it started as a project run by Inception Hosting around 10 years ago however with the lack of development upstream for OpenVZ specific to the hosting industry and declining interest in favor of KVM this is now to management heavy to justify continuing with.</p>
  
  <p>It is also understood that OpenVZ 8 as a project has been essentially dropped in favor of focusing on OpenVZ 9 with no solid release date and OpenVZ 7 is likely going to end of life within 6 months in line with CentOS 7 we think it is right to call time on this project and refocus efforts on our KVM product line.</p>
  
  <p>We will be setting all NAT/LES OpenVZ products to expire and prevent them from renewing, we will honor any existing terms and if you have less than 30 days on your service we will extend that by another 30 days at no extra cost to allow you time to migrate any data.</p>
  
  <p>Those of you who have a service in Phoenix will already be set to expire as discussed in a separate email following the raid failure earlier in the year.</p>
  
  <p>We have also recently revised the prices on our KVM plans so perhaps one of those would be fitting for you if you are looking for an alternative, the main website prices have not been updated yet (Work in progress) but we did post a link on the LowEndSpirit forum: <a href="https://lowendspirit.com/discussion/6960/inception-hosting-new-plans-new-prices-uk-nl-de-usa" rel="nofollow">https://lowendspirit.com/discussion/6960/inception-hosting-new-plans-new-prices-uk-nl-de-usa</a> if you are interested.</p>
  
  <p>If you have any questions or concerns please do let us know via a support ticket, direct email responses will not be seen.</p>
  
  <p>Thank you for your years of support.</p>
  
  <p>Anthony.<br />
  Inception Hosting Limited.</p>
</div></blockquote>

<p>Thanks to <a href="https://lowendspirit.com/index.php?p=/profile/InceptionHosting" rel="nofollow">@InceptionHosting</a> ( Anthony ) for keeping the party going this long.</p>

<p>I still have fond memories of hosting game servers on these small vm's. What about you folks,what was your use case ?</p>

<p>If I had to guess, then VPN ?</p>
]]>
        </description>
    </item>
    <item>
        <title>Dark LES Theme (Current Too Bright On TV)</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/3395/dark-les-theme-current-too-bright-on-tv</link>
        <pubDate>Wed, 29 Sep 2021 21:23:55 +0000</pubDate>
        <category>General</category>
        <dc:creator>bibble</dc:creator>
        <guid isPermaLink="false">3395@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>The white background on this forum is blinding on a fullscreen browser window on a large TV/screen. Be nice if there was a least an option to choose. Been checking the site less and less as it's too intense <img src="https://lowendspirit.com/plugins/emojiextender/emoji/twitter/lol.png" title=":lol:" alt=":lol:" height="18" /></p>

<p>Don't view this link without sunglasses: <a href="https://0x0.st/-YRD.png" rel="nofollow">https://0x0.st/-YRD.png</a></p>

<p>*Didn't realise "fullscreen" isn't a word.</p>
]]>
        </description>
    </item>
    <item>
        <title>The-Online.com Shared Hosting Review | cPanel Hosting and VPS Hosting</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/3263/the-online-com-shared-hosting-review-cpanel-hosting-and-vps-hosting</link>
        <pubDate>Sat, 21 Aug 2021 07:34:48 +0000</pubDate>
        <category>Reviews</category>
        <dc:creator>nickelodeon</dc:creator>
        <guid isPermaLink="false">3263@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><strong>About Shared-Hosting:</strong><br />
I have been a client with <strong><a rel="nofollow" href="https://the-online.com/" title="The-Online.com">The-Online.com</a></strong> for 4 years now. The first order of mine which I ordered 4 years ago is still something I’m using to this day, it is a cPanel hosting service which has been running reliably (it hosts my main ecommerce business). Their shared hosting includes free backups with JetBackup. That’s a useful feature I had to use several times when I found myself accidentally deleting files! Also its lightning fast speed compared to my older web-host like godaddy, bluehost and namecheap-hosting. Ah! you get free domain name if you purchase hosting plan for annual terms. I had used their hosting deal where they offered 3rd year free-hosting if user purchases 2 years of hosting! I don't know if this hosting-offer is still going on or ended. But in all their service, uptime, reliability is top-notch and premium.</p>

<p><strong>About VPS-Hosting:</strong><br />
I moved over two droplets from DigitalOcean over to The-Online.com VPS, both instances riding on 4 GB of RAM, one in U.S and the other in their Netherlands (Europe) location. Uptime and reliability has been very solid. Performance is better than DigitalOcean, not to mention the better cost savings for my wallet plus there 24/7 free support even for self-managed VPS. You can also order managed-vps with cPanel and dedicated support.</p>

<p>Fantastic deals for yearly pricing via Black-Friday. This company responses to tickets in less than 15 mins. Extremely helpful. No down time and excellent service provided all around. They don't care how much you spend with them, every customer is as important as the rest.</p>

<p>Overall a small yet, good and affordable hosting provider in U.S, Europe and Asia. you can give it a try.</p>
]]>
        </description>
    </item>
    <item>
        <title>OpenVPN Connected but no internet</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/2618/openvpn-connected-but-no-internet</link>
        <pubDate>Fri, 05 Mar 2021 18:58:59 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>abskillz</dc:creator>
        <guid isPermaLink="false">2618@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p>I have recently bough VPS from <a href="https://lowendspirit.com/index.php?p=/profile/Abdullah" rel="nofollow">@Abdullah</a> (webhorizon.in)</p>

<p>Earlier I was using dedicated VPS for openvpn. Now I am switched to NAT VPS. The problem is when I am connecting to OpenVPN through mobile or desktop app. It is connecting to VPN but no internet is working. I am not expert in VPS so need help!</p>

<p>Please let me know if any screenshot or log to be shown here.</p>
]]>
        </description>
    </item>
    <item>
        <title>LES from Inception in Dallas: packet loss to/from Europe</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/2024/les-from-inception-in-dallas-packet-loss-to-from-europe</link>
        <pubDate>Thu, 05 Nov 2020 15:52:20 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>ataribasementcluster</dc:creator>
        <guid isPermaLink="false">2024@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I use two VPS on the Dallas node from Inception for proxying. For a few months now I've been experiencing 2-10% packet loss on both, in general, in bouts, and at the connection initiation:</p>

<pre><code>root@mylocalmachine:~# ping -f [we still don't post IPs, right?].98 
PING 56(84) bytes of data.
................^C   
--- ping statistics ---
214 packets transmitted, 198 received, 7,47664% packet loss, time 3361ms
rtt min/avg/max/mdev = 242.600/278.443/320.271/17.202 ms, pipe 21, ipg/ewma 15.780/252.115 ms
</code></pre>

<p>it's similar to/from other euro machines in various directions, here's to OVH for example over IPv6, no difference really</p>

<pre><code>root@LESVPS:~# ping -f my.machine.in.ovh
PING 56 data bytes
......................................................................^C 
--- ping statistics ---
521 packets transmitted, 451 received, 13% packet loss, time 8398ms
rtt min/avg/max/mdev = 157.012/160.179/197.734/4.014 ms, pipe 14, ipg/ewma 16.150/159.652 ms
</code></pre>

<p>once the connection is over the pond, it's perfect</p>

<pre><code>root@LESVPS:~# ping -f 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
.^C 
--- 8.8.8.8 ping statistics ---
752 packets transmitted, 751 received, 0% packet loss, time 10536ms
rtt min/avg/max/mdev = 13.024/14.164/40.957/2.508 ms, pipe 4, ipg/ewma 14.029/16.485 ms
</code></pre>

<p>What's going on? Other LES nodes from Inception are fine but, obviously, the US proxy is most useful for getting around GDPR/cookie/geoIP nonsense.</p>
]]>
        </description>
    </item>
    <item>
        <title>LowEndSpirit got some traction: numbers and figures</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/1541/lowendspirit-got-some-traction-numbers-and-figures</link>
        <pubDate>Sun, 02 Aug 2020 08:13:39 +0000</pubDate>
        <category>General</category>
        <dc:creator>alwyzon</dc:creator>
        <guid isPermaLink="false">1541@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>When I first stumbled over LowEndSpirit through some signature below a comment on LET, I was curious whether there is actually some activity on this new platform or whether its just a nice idea which isn't well accepted by the community. Yeah, there were some posts on the front page, but I prefer hard figures over gut feelings. So I did my homework and wanted to share the (surprising) results with you folks. I hope this is as interesting to you as it was to me and that you don't mind me sharing the result.</p>

<p>Here it is:<br />
<img src="http://talk.lowendspirit.com/uploads/editor/tt/4kqiv0t4k9tc.png" alt="" title="" /></p>

<p>There are still less new discussions on LowEndSpirit than on its older brother, but the difference is much smaller than I thought. Seems like we got quite some discussions going on here too, great job <a href="https://lowendspirit.com/index.php?p=/profile/AnthonySmith" rel="nofollow">@AnthonySmith</a>! Definitely worth keeping an eye on LowEndSpirit.</p>

<p><em>EDIT: Just replaced the figure with one counting discussions as logged in user (see discussion below). The original chart that just counted disucssions visible to non-logged in users can still be found <a rel="nofollow" href="https://i.imgur.com/UjKPTgn.png" title="here">here</a>.</em></p>
]]>
        </description>
    </item>
    <item>
        <title>Inception Hosting - CYBER MONDAY THREAD - FREE!</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/231/inception-hosting-cyber-monday-thread-free</link>
        <pubDate>Mon, 02 Dec 2019 12:57:50 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>InceptionHosting</dc:creator>
        <guid isPermaLink="false">231@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>That's right this thread costs you NOTHING to read, read it for FREE!</p>

<p>I believe people like dancing girls on sales threads so here you go:</p>

<p><img src="https://media.giphy.com/media/yWVotoBE3Jpn2/giphy.gif" alt="" title="" /></p>

<p>tl;dr: NAT deal is back, storage 50% off now also for quarterly or semi-annual payments, new general vz7 bundle in 3 locations, 50% off VZ7 SSD in the UK.</p>

<hr />

<p>Now for the deals:</p>

<p><strong>256MB x 3 NAT BUNDLE</strong></p>

<ul>
<li>BLACK FRIDAY - 50 available</li>
<li>UK, NL, USA</li>
<li>3 x 256MB NAT</li>
<li>OpenVZ 7</li>
<li>VPS</li>
<li>ALL 3 for <strong>€6.99 / year</strong></li>
</ul>

<p>BUNDLE ORDER: <a href="https://clients.inceptionhosting.com/cart.php?a=add&amp;bid=17" rel="nofollow">https://clients.inceptionhosting.com/cart.php?a=add&amp;bid=17</a></p>

<hr />

<p><strong>UK STORAGE</strong></p>

<ul>
<li>COUPON CODE: BF2019-STOARGE</li>
<li>50% OFF on</li>
<li><em>Quarterly, semi-annual, annual payments!</em></li>
<li>for all plans with</li>
<li>2GB, 4GB, 6GB &amp; 8GB RAM</li>
<li>From 400GB to 1600GB Disk</li>
<li>RAID 5</li>
</ul>

<p>VIEW PLANS: <a href="https://clients.inceptionhosting.com/cart.php?gid=31" rel="nofollow">https://clients.inceptionhosting.com/cart.php?gid=31</a></p>

<hr />

<p><strong>USA STORAGE</strong></p>

<ul>
<li>COUPON CODE: BF2019-STOARGE</li>
<li>50% OFF on</li>
<li><em>Quarterly, semi-annual, annual payments!</em></li>
<li>for all plans with</li>
<li>2GB, 4GB, 6GB &amp; 8GB RAM</li>
<li>From 400GB to 1600GB Disk</li>
<li>RAID 5</li>
</ul>

<p>VIEW PLANS: <a href="https://clients.inceptionhosting.com/cart.php?gid=30" rel="nofollow">https://clients.inceptionhosting.com/cart.php?gid=30</a></p>

<hr />

<p><strong>OpenVZ 7 Bundle</strong></p>

<p><em>3 x 1GB RAM OpenVZ servers for €30 p/year</em></p>

<ul>
<li>UK - London | 1GB RAM | 25GB Disk | 1 x IPv4 + /64 IPv6 | 600 GB BW</li>
<li>NL - Rotterdam | 1GB RAM | 25GB Disk | 1 x IPv4 + /64 IPv6 | 600 GB BW</li>
<li>USA - Phoenix AZ | 1GB RAM | 20GB Disk | 1 x IPv4 | 500 GB BW</li>
</ul>

<p>LIMITED to 10 in total, 1 per person.</p>

<p>Order Link: <a href="https://clients.inceptionhosting.com/cart.php?a=add&amp;bid=18" rel="nofollow">https://clients.inceptionhosting.com/cart.php?a=add&amp;bid=18</a><br />
<strong>Special terms:</strong> if you cancel any location the others go to regular pricing.</p>

<hr />

<p><strong>CREDIT OFFER</strong></p>

<p>25% credit on all credit top ups of €50 or more and 20% credit on all credit top-ups of less than €50 for existing customers only, <em>minimum qualifying top up €20</em></p>

<p>Process:</p>

<ol>
<li>login to the billing area.</li>
<li>On the top menu, click 'Billing' and 'Add funds'</li>
<li>Enter €50 or more and click 'Add Funds'</li>
<li>Open A ticket with the invoice number once paid to get your extra 25%</li>
</ol>

<p>Special Terms: credit + bonus can only be used against new invoices generated after the 16th December.</p>

<p><img src="https://media2.giphy.com/media/sBIXYJCFqoHDy/giphy.gif?cid=790b7611019e4e507a35658d2018c53c9291e7c21930c04f&amp;rid=giphy.gif" alt="" title="" /></p>

<hr />

<p><strong>UK OpenVZ 7 PURE SSD Plans</strong></p>

<ul>
<li>Coupon Code: CMVZ7-2019</li>
<li>50% off on all semi-annual or Annual terms.</li>
<li>Applies to 1GB+ plans only</li>
<li>From 1 - 4GB Ram</li>
<li>From 10 - 25GB Disk</li>
<li>1 x IPv4</li>
<li>1 x /64 IPv6</li>
<li>DDOS Proetcted</li>
<li>Free Direct Admin licence available on request.</li>
</ul>

<p>Order Link: <a href="https://clients.inceptionhosting.com/cart.php?gid=28" rel="nofollow">https://clients.inceptionhosting.com/cart.php?gid=28</a></p>

<hr />

<p>To answer the regular questions, click spoiler if you don't plan on reading the terms:</p>

<div>  <p>These are all limited time deals, please do not ask me to replicate them after this BF/CM season, despite typing this I know it will not matter much but if you are 'that guy' know that you are only 1 of 100 people asking so it is not a 1 time exception.</p>
  
  <p>They will not be refunded, credited or otherwise if you did not think first before you bought.</p>
  
  <p>Subscriptions are not available because people forget and double pay then want a refund.</p>
  
  <p>I know no one reads the terms but agrees anyway so here is a quick overview of the important stuff.</p>
  
  <p>CPU Abuse: 60+% of a core over 24 hours or 100% of a core for 1+ hour<br />
  Disk is a shared resource not dedicated to you, if your IOPS R+W requests p/s disrupts other customers or impacts their fair expectations of service you will be shut down as a rule please keep IOPS below 300p/s avg on regular services or 1000 p/s on SSD over 24 hours or 1500 p/s avg for 1 hour on regular services and 6000 avg over an hour on SSD services.</p>
  
  <p>Tor = instant termination, no warnings, no "but i just" not interested, tor = gone</p>
  
  <p>Torrents = same as tor, even over VPN/Proxy etc.</p>
  
  <p>No crypto mining, wallets etc.</p>
  
  <p>This all sounds harsh but you would not believe the things people do, terms are only imposed when they need to be, generally as long as your not bothering anyone there is no problem.</p>
  
  <p>Shutdowns of services are automated only when you exceed 300% of the AUP i.e. exceed CPU/IOPS limits for 300% of the allotted limit (when you don't monitor your own server)</p>
  
  <p>Hope that covers everything, nothing above that is not already made clear prior to payment.</p></div>
]]>
        </description>
    </item>
   </channel>
</rss>
