= 1024) {
$event.preventDefault();
const i = slugs.indexOf($wire.preview);
const next = $event.key === 'ArrowDown' ? Math.min(i + 1, slugs.length - 1) : Math.max(i - 1, 0);
if (next !== i && slugs[next]) $wire.openPreview(slugs[next]);
}
">
Installation Guides
11
Knowledge Base
308 copy-ready commands with fill-in variables, plus step-by-step installation guides.
/
Categories
12 results
= 1024) { $event.preventDefault(); $wire.openPreview('linux-ls-detail') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-ls-detail') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
List Files with Details
ls -lah {{path}}
#ls
#files
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-mkdir-parents') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-mkdir-parents') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Create Nested Directories
mkdir -p {{path}}
#mkdir
#directory
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-cp-recursive') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-cp-recursive') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Copy Directory Recursively
cp -r {{source}} {{destination}}
#cp
#copy
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-mv-rename') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-mv-rename') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Move or Rename File/Directory
mv {{source}} {{destination}}
#mv
#move
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-rm-recursive') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-rm-recursive') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Remove Directory and Contents
rm -rf {{path}}
#rm
#delete
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-find-by-name') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-find-by-name') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Find Files by Name Pattern
find {{directory}} -name "{{pattern}}" -type f
#find
#search
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-find-by-mtime') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-find-by-mtime') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Find Recently Modified Files
find {{directory}} -mtime -{{days}} -type f
#find
#modified
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-symlink-create') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-symlink-create') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Create Symbolic Link
ln -s {{target}} {{link_name}}
#ln
#symlink
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-du-sort') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-du-sort') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Disk Usage Sorted by Size
du -h --max-depth={{depth}} {{path}} | sort -rh | head -{{lines}}
#du
#disk
5 views
2 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-wc-count') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-wc-count') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Count Lines, Words, Bytes in File
wc -l {{file}}
#wc
#count
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-chmod-exec') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-chmod-exec') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Make Script Executable
chmod +x {{file}}
#chmod
#execute
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('linux-chown-recursive') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('linux-chown-recursive') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
File Operations
Change Ownership Recursively
chown -R {{user}}:{{group}} {{path}}
#chown
#ownership
3 views
0 copies