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
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.

Debian install via ISO for Virtualizor

ArirangArirang Member
edited October 2025 in General

Hi.

If you install Debian via ISO in Virtualizor, it's irritating.
I do some steps after ISO install. There may be better ways.


Logging through VNC.

Grub Update
open file /etc/default/grub
find this line GRUB_CMDLINE_LINUX="" and change to

GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0" 

and apply changes.

update-grub

I usually prefer vim, but without installing vim, using default vi is difficult to use. so I use nano.


Remove Swap
open /etc/fstab
You can see the device CD-ROM used for installing.
Remove that line. If you don't, There is an error "gave up waiting for suspend resume device debian" taking long time when booting up


Network Configuration

If your gateway configuration is like below, change it. ipv6 as well.
post-up, ip doesn't work well. I don't know why.

auto eth0
iface eth0 inet static
    address 1.1.1.101
    netmask 255.255.255.0
        post-up route add 1.1.1.1 dev eth0 
       post-up route add default gw 1.1.1.1 dev eth0 

to

auto eth0
iface eth0 inet static
    address 1.1.1.101
    netmask 255.255.255.0
    gateway 1.1.1.1

Some provider changes your network configuration if you reboot from Virtualizor panel.
As far as I know, there is no way clients is able to disable.

So change file attribute so that Virtualizor cannot modify them.

sudo chattr +i /etc/network/interfaces

If you need to change it later, remove that

sudo chattr -i /etc/network/interfaces

Final Step : reboot

Sign In or Register to comment.