Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.208
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
usr /
share /
rear /
restore /
SUSE_LINUX /
Delete
Unzip
Name
Size
Permission
Date
Action
910_create_missing_directories.sh
1.38
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# # In some cases SUSE has /media plus /media/cdrom and /media/floppy. # On SLE11 the filesystem RPM contains them. # On SLE12 they are dropped from the filesystem RPM because nowadays /run/media is used. # There is the SUSE-internal issue https://bugzilla.suse.com/show_bug.cgi?id=890198 # and the "SUSE Linux Enterprise Server 12 Release Notes" mention it # see https://www.suse.com/releasenotes/x86_64/SUSE-SLES/12/ that reads: # "/run/media/<user_name> is now used as top directory for removable # media mount points. It replaces /media , which is not longer available." # Therefore for SLE12 "rear recover" must no longer create them. # The following test for SLE12 products is intentionally sloppy # because I <jsmeix@suse.de> have no better idea how to test for various # possible SLE12-based products like "SUSE Linux Enterprise Server 12" # "SUSE Linux Enterprise Desktop 12" "SUSE Linux Enterprise Server 12 SP1" # "SUSE Linux Enterprise Desktop 12 SP1" "SUSE Linux Enterprise <whatever> <whichever>". # Therefore it is triggered by the absence of /etc/os-release because # I assume that the switch from /media to /run/media matches reasonably well # with the switch from /etc/SuSE-release to /etc/os-release so that # this test is also (hopefully) somewhat future-proof (e.g. for SLE13): pushd $TARGET_FS_ROOT >/dev/null test -f etc/os-release || mkdir -p media/cdrom media/floppy popd >/dev/null