惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Y
Y Combinator Blog
博客园 - 聂微东
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
小众软件
小众软件
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
B
Blog
H
Help Net Security
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客
月光博客
月光博客
博客园 - 司徒正美

LowEndSpirit

Hardware for sale | Arista switches, Dell hardware buy all gets a good deal. C-Servers Announces Becoming Platform-Independent NYC Ryzen 9000 2GB RAM @ $3.50/mo | 1TB Storage VPS @ $3.50/mo | 4GB Ryzen @ $6.00/mo | Unmetered BW Does anyone know affordable VPS Hosting in Asia? LES - Progress Update - 19th July 2026 LES - Progress Update - 19th June 2026 KVM VPS in LA, New Jersey & Frankfurt | 10 Gbps | Free Upgrade Included Has anyone used mailporter.io ? above.com - experiences? Dedicated Servers from $39/mo| Instant Setup | ForumPay Now Available 🚀 PanstarCloud 618 Launch Offer|Recurring Coupons, One-click App Deployment & VM Marketplace drServer.net ||| SSD KVM VPS starting at $7/mo recurring drServer.net ||| cPanel Shared Hosting | CloudLinux | SSD | MariaDB | JetBackup... drServer.net ||| Affordable US SSD Dedicated Servers | Speedy Provisioning | Unmetered AI Tools That Have Saved You The Most Time HostDare VPS Sale - Limited Time Offer! Our New Discount coupons ! Dedicated Server Request KVM VPS from €1.84/mo — NVMe SSD · IPv4+IPv6 · DDoS Protection · Instant Setup | mycheap.host 2GB VPS 5$ & 4GB RAM VPS 10$ Recurring 50% Discount - Unlimited BW (HMLTD) Hetzner prices going up (Again) VPS backup size comparison -- Alpine binary only base vs *BSD-current with sources, self-compiled Oracle free tier changing, be careful? (Confirmed) Oracle free tier changing. LES - New Feature - "LES Ignore User" NYC Ryzen 9000 2GB RAM @ $3.50/mo | 1TB Storage VPS @ $3.50/mo | 4GB Ryzen @ $6.00/mo | Unmetered BW Tier.net Dedicated Servers from $59.95 | 64GB RAM, SSDs, 10GigE - Plus Custom Builds Developers - How much Bandwidth is reasonable Little bit of an update on LES Little bit of an update on LES - day 2 - 12th June 2026 Cheap $12 per year VPS
How to (Ab)Use your KS-LE-B for LLM Models
Neoon · 2026-01-23 · via LowEndSpirit

So, you got one of these KS-LE-B and want to run some LLM models?
Smol short guide.

Grab the dependencies we need.
apt-get install pciutils build-essential cmake curl libcurl4-openssl-dev git ccache python3-pip python3.13-venv -y

Add a new user which will run the LLM models.
adduser llm

Logon
su llm

Grab llama.cpp

cd
git clone https://github.com/ggml-org/llama.cpp.git

Grab huggingface CLI

curl -LsSf https://hf.co/cli/install.sh | bash
export PATH="/home/llm/.local/bin:$PATH"

I have made a smol script to initial build / update llama.cpp: https://pastebin.com/raw/gKYBcXqc

wget -O update.sh https://pastebin.com/raw/gKYBcXq
chmod +x update.sh
bash update.sh

Lets download our first model.
hf download unsloth/GLM-4.7-Flash-GGUF --include "*Q4_K_M*" --local-dir models/

Either you can run llama.cpp on the CLI.
llama.cpp/llama-cli --jinja --model models/GLM-4.7-Flash-Q4_K_M.gguf

or use the Webinterface.
llama.cpp/llama-server --jinja --host 127.0.0.1 --port 8888 --models-dir models/

Including a model autoloader, which you can select in the webinterface.
Add a nginx reverse proxy and you set.