Create a Proxmox VM for the drives to be mounted to and take note of its ID.
Use fdisk -l
to list all connected drives:
You'll see something like this:
Disk /dev/sda: 7.28 TiB, 8001563222016 bytes, 15628053168 sectors
Disk model:
│ Error: Plugin did not respond | |
│ | |
│ The plugin encountered an error, and failed to respond to the plugin6.(*GRPCProvider).ReadDataSource call. The plugin logs may contain more details. | |
╵ | |
╷ | |
│ Error: Plugin did not respond | |
│ | |
│ The plugin encountered an error, and failed to respond to the plugin6.(*GRPCProvider).ReadDataSource call. The plugin logs may contain more details. | |
╵ | |
╷ |
filetype plugin indent on | |
syntax on | |
set nu | |
set nowrap | |
set relativenumber | |
"Language-specific customizations: | |
"For *.hbs: |
opacity-rule = [ | |
"90:class_g = 'URxvt'", | |
"90:class_g = 'st-256color'", | |
"90:class_g = 'Alacritty'", | |
"90:class_g = 'Gnome-terminal'", | |
"90:class_g = 'gnome-terminal-server'" | |
]; | |
frame-opacity = 0.00; |
#!/bin/sh | |
userresources=$HOME/.Xresources | |
usermodmap=$HOME/.Xmodmap | |
sysresources=/etc/X11/xinit/.Xresources | |
sysmodmap=/etc/X11/xinit/.Xmodmap | |
# merge in defaults and keymaps | |
if [ -f $sysresources ]; then |
[generic] | |
[archiso] | |
readonly = true | |
exportname = /srv/archlinux-release_date-x86_64.iso |
{ | |
"intents": [ | |
{ | |
"intent": "Locator", | |
"slots": [ | |
{ | |
"name": "relationship", | |
"type": "relationship" | |
}, | |
{ |
var express = require('express'); | |
var app = express(); | |
var io = require('socket.io').listen(8081); | |
app.use(express.static('public')); | |
var server = app.listen(3000, function () { | |
var port = server.address().port; | |
console.log('Example app listening at', port); |