Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Posts by Iizuki‭

59 posts
50%
+0 −0
Q&A How to add a new drive to a BTRFS filesystem?

BTRFS is capable of spanning over multiple drives. How to add one more to an existing filesystem?

1 answer  ·  posted 8mo ago by Iizuki‭  ·  last activity 8mo ago by Iizuki‭

Question btrfs
50%
+0 −0
Q&A How to add a new drive to a BTRFS filesystem?

Add a new drive with the device command: # btrfs device add /dev/new-device /path/to/the/filesystem/youre/adding/to Then you probably want to balance the filesystem so that some data will actua...

posted 8mo ago by Iizuki‭

Answer
50%
+0 −0
Q&A How to get remote container image digest with skopeo?

How to get the (index) digest of a remote container image with skopeo? So this would be your normal container image in a container registry. E.g. in docker.io

1 answer  ·  posted 8mo ago by Iizuki‭  ·  last activity 8mo ago by Iizuki‭

Question container skopeo
50%
+0 −0
Q&A How to get remote container image digest with skopeo?

With the inspect subcommand, and you probably want to set a format to filter out all the other clutter: $ skopeo inspect --format='{{ .Digest }}' docker://docker.io/snipe/snipe-it:v6.3.4 sha256:...

posted 8mo ago by Iizuki‭  ·  edited 8mo ago by Iizuki‭

Answer
50%
+0 −0
Q&A Pacman list files installed by a package

How to show a list of files belonging to a package with pacman?

1 answer  ·  posted 8mo ago by Iizuki‭  ·  last activity 8mo ago by Iizuki‭

Question arch-linux pacman
50%
+0 −0
Q&A Moving the filesystem root to a different partition and booting from it

Disclaimer: I'm not a Mint (or Ubuntu) user. Using your distro's live image: Do your partition stuff Mount the new root to the live system at /mnt[1] Mount your other partitions to the new ro...

posted 7mo ago by Iizuki‭

Answer
50%
+0 −0
Q&A Systemd service status if ExecStop or ExecStopPost fails?

Will the overall unit status be failed if either ExecStop or ExecStopPost fail? I would expect it to be so, but the documentation isn't very explicit about it.

1 answer  ·  posted 7mo ago by Iizuki‭  ·  last activity 7mo ago by Iizuki‭

Question systemd
50%
+0 −0
Q&A Systemd service status if ExecStop or ExecStopPost fails?

Yes, the unit will enter the failed state if either one of those failed. You verify this with a test unit like this: [Unit] Description=ExecStop failure test [Service] ExecStart=echo I might...

posted 7mo ago by Iizuki‭

Answer
50%
+2 −2
Q&A Calculate the SHA1 checksum of a file

How to calculate the SHA1 digest of a file in a shell?

2 answers  ·  posted 7mo ago by Iizuki‭  ·  last activity 6mo ago by Iizuki‭

Question checksum sha1