Good morning
Quick question about proxmox lxc.
I am trying to create a 1gb ramdisk ( dd ) in an ubuntu lxc container, all works fine, however when I do a mkfs.ext4
he add 17MB of files in :/ is after mounting it if i do an ls in the folder i get his (see img)
can someone tell me why these are files? is how not to have them please
Quick question about proxmox lxc.
I am trying to create a 1gb ramdisk ( dd ) in an ubuntu lxc container, all works fine, however when I do a mkfs.ext4
he add 17MB of files in :/ is after mounting it if i do an ls in the folder i get his (see img)
can someone tell me why these are files? is how not to have them please
Bash:
mkdir /disks
dd if=/dev/zero of=/disks/vdisk1 bs=1M count=1000
mkfs.ext4 /disks/vdisk1
mount -t cgroup2 -o loop /disks/vdisk1 /data/home/test