chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:17 +08:00
commit cf8edb9f21
44281 changed files with 1655134 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
---- Changes since 1.130 ----
Mounting of SMB filesystems is now supported on FreeBSD, using the mount_smbfs command and /etc/nsmbrc file.
Filesystems can now be sorted by directory, type or order in fstab and mtab files.
CIFS filesystems can now be mounted on Linux.
---- Changes since 1.150 ----
Added support for NFS version 4 on Linux, thanks to code contributed by Frederic Jolly.
---- Changes since 1.180 ----
Added additional access control options to limit filesystems and associate mounts with users.
---- Changes since 1.200 ----
The priority for swap files and devices can now be edited on Linux.
---- Changes since 1.240 ----
Added some more options for Linux CIFS mounts.
---- Changes since 1.270 ----
When un-mounting a busy filesystem on Linux systems, an option is presented to do a forced (lazy) un-mount instead, which will generally succeed.
---- Changes since 1.300 ----
Added support for HFS and FATX filesystems under Linux.
Partitions specified using the UUID notation in /etc/fstab are now supported, as seen on Ubuntu Linux.
---- Changes since 1.330 ----
Mounted filesystems can now be displayed on Intel macs, without needing the gcc program.
---- Changes since 1.420 ----
SMBFS authentication credentials can be stored in a separate file, thanks to a patch by Rob Shinn.
---- Changes since 1.440 ----
Improved support for filesystems on partitions identified by volume ID when the vol_id command is missing.
Show the used disk space for each filesystem on the main page.
---- Changes since 1.580 ----
Updated the UI for Linux and most other operating systems to use Webmin's new UI functions, for a more consistent look.
---- Changes since 1.620 ----
Added a Module Config option to find the master CIFS server for browsing from a workgroup name.
+57
View File
@@ -0,0 +1,57 @@
require 'mount-lib.pl';
# acl_security_form(&options)
# Output HTML for editing security options for the mount module
sub acl_security_form
{
my ($o) = @_;
print &ui_table_row($text{'acl_fs'},
&ui_opt_textbox("fs", $o->{'fs'}, 40,
$text{'acl_all'}, $text{'acl_list'}), 3);
print &ui_table_row($text{'acl_types'},
&ui_opt_textbox("types", $o->{'types'}, 30,
$text{'acl_all'}, $text{'acl_fslist'}), 3);
print &ui_table_row($text{'acl_create'},
&ui_radio("create", $o->{'create'},
[ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ]));
print &ui_table_row($text{'acl_only'},
&ui_radio("only", $o->{'only'},
[ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ]));
print &ui_table_row($text{'acl_user'},
&ui_radio("user", $o->{'user'},
[ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ]));
print &ui_table_row($text{'acl_hide'},
&ui_radio("hide", $o->{'hide'},
[ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ]));
print &ui_table_row($text{'acl_browse'},
&ui_radio("browse", $o->{'browse'},
[ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ]));
print &ui_table_row($text{'acl_sysinfo'},
&ui_radio("sysinfo", $o->{'sysinfo'},
[ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ]));
}
# acl_security_save(&options)
# Parse the form for security options for the mount module
sub acl_security_save
{
my ($o) = @_;
$o->{'fs'} = $in{'fs_def'} ? undef : $in{'fs'};
$o->{'types'} = $in{'types_def'} ? undef : $in{'types'};
$o->{'only'} = $in{'only'};
$o->{'create'} = $in{'create'};
$o->{'user'} = $in{'user'};
$o->{'hide'} = $in{'hide'};
$o->{'browse'} = $in{'browse'};
$o->{'sysinfo'} = $in{'sysinfo'};
}
+45
View File
@@ -0,0 +1,45 @@
do 'mount-lib.pl';
# backup_config_files()
# Returns files and directories that can be backed up
sub backup_config_files
{
local @rv;
local $f;
foreach $f ("fstab_file", "auto_file", "autofs_file") {
push(@rv, $config{$f}) if ($config{$f});
}
return @rv;
}
# pre_backup(&files)
# Called before the files are actually read
sub pre_backup
{
return undef;
}
# post_backup(&files)
# Called after the files are actually read
sub post_backup
{
return undef;
}
# pre_restore(&files)
# Called before the files are restored from a backup
sub pre_restore
{
return undef;
}
# post_restore(&files)
# Called after the files are restored from a backup
sub post_restore
{
return undef;
}
1;
+21
View File
@@ -0,0 +1,21 @@
do 'mount-lib.pl';
sub cgi_args
{
my ($cgi) = @_;
if ($cgi eq 'edit_mount.cgi') {
# Find root filesystem, or first mount
my @mounts = &list_mounts();
return 'none' if (!@mounts);
my $i = 0;
foreach my $m (@mounts) {
if ($m->[0] eq '/') {
return 'index='.$i;
}
$i++;
}
return 'index=0';
}
return undef;
}
+8
View File
@@ -0,0 +1,8 @@
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/amd.conf
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
auto_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+11
View File
@@ -0,0 +1,11 @@
auto_file=
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
auto_file=/etc/am-utils/amd.conf
autofs_file=/etc/auto.master
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+11
View File
@@ -0,0 +1,11 @@
autofs_file=
nmblookup_path=nmblookup
browse_server=
auto_file=
smbclient_path=smbclient
long_fstypes=1
fstab_file=/etc/fstab
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+8
View File
@@ -0,0 +1,8 @@
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
autofs_file=/etc/autofs/auto.master
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+11
View File
@@ -0,0 +1,11 @@
autofs_file=
nmblookup_path=nmblookup
browse_server=
auto_file=
smbclient_path=smbclient
long_fstypes=1
fstab_file=/etc/fstab
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+11
View File
@@ -0,0 +1,11 @@
browse_server=
auto_file=
autofs_file=
nmblookup_path=
long_fstypes=1
smbclient_path=
fstab_file=/etc/fstab
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
autofs_file=
nmblookup_path=nmblookup
browse_server=
auto_file=
smbclient_path=smbclient
long_fstypes=1
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/amd.conf
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/amd.conf
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+11
View File
@@ -0,0 +1,11 @@
autofs_file=
nmblookup_path=nmblookup
browse_server=
auto_file=
smbclient_path=smbclient
long_fstypes=1
fstab_file=/etc/fstab
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
auto_file=/etc/am.d/conf
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
auto_file=/etc/am.d/conf /etc/am.d/net.conf
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
long_fstypes=1
fstab_file=/etc/fstab
autofs_file=/etc/auto.master
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+11
View File
@@ -0,0 +1,11 @@
autofs_file=
nmblookup_path=nmblookup
browse_server=
auto_file=
smbclient_path=smbclient
long_fstypes=1
fstab_file=/etc/fstab
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
auto_file=/etc/sysconfig/amd
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+11
View File
@@ -0,0 +1,11 @@
browse_server=
auto_file=
autofs_file=/etc/auto_master
nmblookup_path=/usr/local/samba/bin/nmblookup
long_fstypes=1
smbclient_path=/usr/local/samba/bin/smbclient
fstab_file=/etc/fstab
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+8
View File
@@ -0,0 +1,8 @@
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
auto_file=/etc/sysconfig/amd
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/sysconfig/amd
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/amd.conf
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+8
View File
@@ -0,0 +1,8 @@
fstab_file=/etc/fstab
long_fstypes=1
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+13
View File
@@ -0,0 +1,13 @@
find_pid_command=ps auwwwx | grep NAME | grep -v grep | awk '{ print $2 }'
path=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin
ld_env=LD_LIBRARY_PATH
passwd_file=/etc/shadow
passwd_uindex=0
passwd_pindex=1
passwd_cindex=2
passwd_mindex=4
by_view=0
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
autofs_file=/etc/auto_master
fstab_file=/etc/vfstab
long_fstypes=1
smbclient_path=/usr/local/samba/bin/smbclient
nmblookup_path=/usr/local/samba/bin/nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
long_fstypes=1
fstab_file=/etc/fstab
autofs_file=/etc/auto.master
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+8
View File
@@ -0,0 +1,8 @@
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/amd.conf
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/sysconfig/amd
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+10
View File
@@ -0,0 +1,10 @@
auto_file=/etc/sysconfig/amd
autofs_file=/etc/auto.master
long_fstypes=1
fstab_file=/etc/fstab
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+9
View File
@@ -0,0 +1,9 @@
long_fstypes=1
fstab_file=/etc/fstab
autofs_file=/etc/auto.master
smbclient_path=smbclient
nmblookup_path=nmblookup
show_used=1
nfs_check=1
sysinfo=1
sort_mode=2
+15
View File
@@ -0,0 +1,15 @@
line1=Configurable options,11
browse_server=Server to request CIFS browse list from,10,-localhost,*-Workgroup below,Other server
browse_group=CIFS workgroup for browse list,0
long_fstypes=Show long filesystem type names,1,1-Yes,0-No
sort_mode=Sort filesystems by,1,2-Mount point,1-Type,0-Order in files
show_used=Show used disk space in filesystems list,1,1-Yes,0-No
delete_under=Delete directory when un-mounting if under,3,Never delete
sysinfo=Show available disk data on Dashboard,1,1-Yes,0-No
line2=System configuration,11
fstab_file=File listing filesystems mounted at boot time,0
auto_file=NFS automounts file,3
autofs_file=Kernel automounts file,3
smbclient_path=Full path to smbclient,3
nmblookup_path=Full path to nmblookup,3
nfs_check=Check NFS servers before attempting mount,1,1-Yes,0-No
+15
View File
@@ -0,0 +1,15 @@
line1=Opcions configurables,11
browse_server=Demana la llista d'exploració CIFS al servidor,10,-localhost,*-Grup de treball de sota,Un altre servidor
browse_group=Grup de treball CIFS de la llista d'exploració,0
long_fstypes=Utilitza tipus llargs de sistemes de fitxers,1,1-Sí,0-No
sort_mode=Ordena els sistemes de fitxers per,1,2-Punt de Muntatge,1-Tipus,0-Ordre en els fitxers
show_used=Mostra l'espai en disc utilitzat a les llistes de sistemes de fitxers,1,1-Sí,0-No
delete_under=Suprimeix el directori en desmuntar, si queda per sota,3,No el suprimeixis mai
sysinfo=Mostra les dades de disc disponibles al Tauler,1,1-Sí,0-No
line2=Configuració del sistema,11
fstab_file=Fitxer que llista els sistemes de fitxers muntats en engegar el sistema,0
auto_file=Fitxer de muntatges automàtics NFS,3
autofs_file=Fitxer de muntatges automàtics de nucli,3
smbclient_path=Camí complet de smbclient,3
nmblookup_path=Camí complet de nmblookup,3
nfs_check=Comprova els servidors NFS abans d'intentar el muntatge,1,1-Sí,0-No
+12
View File
@@ -0,0 +1,12 @@
line1=Nastavení konfigurace,11
browse_server=Požadovat seznam sdílení od serveru,3,localhost
long_fstypes=Zobrazit dlouhá jména u souborových systémů?,1,1-Ano,0-Ne
sort_mode=Třídit souborové systémy podle,1,2-Bodu připojení,1-Typu,0-Pořadí v souborech
show_used=Zobrazit použité místo na disku v seznamu souborových systémů,1,1-Ano,0-Ne
delete_under=Při odpojování smazat adresář, pokud je podardesářem,3,Nemazat nikdy
line2=Konfigurace systému,11
fstab_file=Soubor se souborovými systémy připojovanými při startu,0
auto_file=Soubor automatického připojování NFS,3
autofs_file=Jádro automaticky připojuje soubor,3
smbclient_path=Úplná cesta k smbclient,3
nmblookup_path=Úplná cesta k nmblookup,3
+15
View File
@@ -0,0 +1,15 @@
line1=Konfigurierbare Optionen,11
browse_server=Server, von dem Browser-Liste geholt werden soll,10,-localhost,*-Arbeitsgruppe unten,Anderer Server
browse_group=CIFS-Arbeitsgruppe für Suchliste,0
long_fstypes=Benutze lange Dateisystem-Typen,1,1-Ja,0-Nein
sort_mode=Sortiere Dateisysteme nach,1,2-Einhängepunkt,1-Art,0-Reihenfolge in Datei
show_used=Zeige benutzten Plattenspeicher in Dateisystemliste,1,1-Ja,0-Nein
delete_under=Lösche Verzeichnis beim aushängen wenn unter,3,Niemals löschen
sysinfo=Verfügbare Datenträgerdaten im Dashboard anzeigen?,1,1-Ja,0-Nein
line2=Systemkonfiguration,11
fstab_file=Datei mit Dateisystemen, die beim Booten eingehangen werden,0
auto_file=NFS-Automounts-Datei,3
autofs_file=Kernel-Automounts-Datei,3
smbclient_path=Vollständiger Pfad zu smbclient,3
nmblookup_path=Vollständiger Pfad zu nmblookup,3
nfs_check=Überprüfe NFS-Server, bevor diese eingehängt werden,1,1-Ja,0-Nein
+7
View File
@@ -0,0 +1,7 @@
browse_server=Servidor del que solicitar la lista,3,Máquina local
long_fstypes=Usar tipos de sistemas de archivo largos,1,1-,0-No
fstab_file=Archivo que contiene la lista de sistemas de archivo montados en el arranque,0
auto_file=Archivo de automontaje de NFS,3
autofs_file=Archivo de automontaje de Kernel,3
smbclient_path=Trayectoria completa a <tt>smbclient</tt>,3
nmblookup_path=Trayectoria completa a <tt>nmblookup</tt>,3
+11
View File
@@ -0,0 +1,11 @@
line1=گزينه‌هاي قابل پيکربندي,11
browse_server=کارساز براي تقاضا کردن فهرست مرور از آن,3,ميزبان محلي
long_fstypes=آيا نامهاي بلند نوع سيستم پرونده نشان داده شوند؟,1,1-بله,0-خير
sort_mode=مرتب‌سازي سيستمهاي پرونده براساس,1,2-نقطه سوار کردن,0-نوع,0-ترتيب در پرونده
delete_under=فهرست راهنما به هنگام پياده کردن حذف شود اگر زير مجموعه‌اي بود از,3,هرگز حذف نشود
line2=پيکربندي سيستم,11
fstab_file=پرونده‌اي که سيستمهاي پرونده سوار شده در زمان راه‌اندازي را فهرست مي‌کند,0
auto_file=پرونده سوارکننده خودکار NFS,3
autofs_file=پرونده سوارکننده خودکار Kernel,3
smbclient_path=مسير کامل smbclient,3
nmblookup_path=مسير کامل nmblookup,3
+7
View File
@@ -0,0 +1,7 @@
browse_server=Serveur de requête de la liste,3,hôte local
long_fstypes=Utiliser les types de système de fichier long,1,1-Oui,0-Non
fstab_file=Fichier listant les systèmes de fichiers montés au démarrage,0
auto_file=Fichier 'automount' NFS,3
autofs_file=Fichier 'automount' du noyau,3
smbclient_path=Chemin d'accès de <tt>smbclient</tt>,3
nmblookup_path=Chemin d'accès de <tt>nmblookup</tt>,3
+11
View File
@@ -0,0 +1,11 @@
line1=設定可能オプション,11
browse_server=ブラウズリストを要求するサーバ,3,ローカルホスト
long_fstypes=ファイルシステムの長い名前を表示するか,1,1-はい,0-いいえ
sort_mode=ファイルシステムのソート,1,2-マウントポイント順,1-タイプ順,0-ファイル順
delete_under=以下のマウントがアンマウントされたときにディレクトリを削除する,3,削除しない
line2=システム設定,11
fstab_file=ブート時にマウントされるファイルシステム一覧ファイル,0
auto_file=NFS 自動マウントファイル,3
autofs_file=カーネル自動マウントファイル,3
smbclient_path=smbclientのフルパス,3
nmblookup_path=nmblookupのフルパス,3
+11
View File
@@ -0,0 +1,11 @@
line1=설정가능한 옵션
browse_server=브라우저 리스트를 요청할 서버
long_fstypes=긴 파일시스템 형식 이름 보기,1,1-예,0-아니오
sort_mode=파일 시스템 정렬,1,2-마운트 포지션,1-형식,0-파일 순서
delete_under=마운트 해제시에 지정한 디렉토리 삭제,3,삭제 안함
line2=시스템 설정
fstab_file=부팅시 마운트할 파일 시스템 파일 리스트,0
auto_file=NFS automount 파일,3
autofs_file=커널 automount 파일,3
smbclient_path=smbclient 풀 경로,3
nmblookup_path=nmblookup 풀 경로,3
+12
View File
@@ -0,0 +1,12 @@
line1=Configureerbare opties,11
browse_server=Server om een zoek lijst van te vragen,3,localhost
long_fstypes=Laat lange filesysteem namen zien,1,1-Ja,0-Nee
sort_mode=Sorteer filesystemen met,1,2-Mount punt,1-Type,0-Volgorde in files
show_used=Laat gebruikte harddisk ruimte zien in filesystemen lijst,1,1-Ja,0-Nee
delete_under=Verwijder onderliggende directory bij unmounten,3,Nooit verwijderen
line2=Systeem configuratie,11
fstab_file=De file lijst van het filesysteem gemount tijdens booten,0
auto_file=NFS automount file,3
autofs_file=Kernel automounts file,3
smbclient_path=Volledig pad naar smbclient,3
nmblookup_path=Volledig pad naar nmblookup,3
+13
View File
@@ -0,0 +1,13 @@
line1=Konfigurerbare innstillinger,11
browse_server=Tjener det skal hentes liste fra,3,localhost
browse_group=CIFS arbeidsgruppe for browse liste,0
long_fstypes=Vis lange filsystem-type navn,1,1-Ja,0-Nei
sort_mode=Sorter filsystemer etter,1,2-Monteringspunkt,1-Type,0-Plassering i filer
show_used=Visk brukt diskplass i liste over filsystemer,1,1-Ja,0-Nei
delete_under=Slett katalog ved demontering dersom under,3,Aldri slett
line2=System konfigurasjon,11
fstab_file=Fil som angir filsystemer som monteres ved oppstart,0
auto_file=NFS automounts fil,3
autofs_file=Kernel automounts fil,3
smbclient_path=Full sti til smbclient,3
nmblookup_path=Full sti til nmblookup,3
+7
View File
@@ -0,0 +1,7 @@
browse_server=Serwer&#44; z&nbsp;którego pobierana jest <tt>browse list</tt>,3,localhost
long_fstypes=Używaj długich nazw typów systemów plików,1,1-Tak,0-Nie
fstab_file=Plik zawirający listę systemów plików montowanych przy starcie,0
auto_file=Plik automatycznych montowań po NFS,3
autofs_file=Plik automatycznych montowań kernela,3
smbclient_path=Pełna ścieżka do programu <tt>smbclient</tt>,3
nmblookup_path=Pełna ścieżka do programu <tt>nmblookup</tt>,3
+12
View File
@@ -0,0 +1,12 @@
line1=Opções configuráveis,11
browse_server=Servidor do qual requisitar lista de navegação,3,localhost
long_fstypes=Exibir nomes de filesystem longos,1,1-Sim,0-Não
sort_mode=Ordenar filesystems por,1,2-Ponto de montagem,1-Tipo,0-Ordem nos arquivos
show_used=Exibir espaço em disco utilizado na lista de filesystems,1,1-Sim,0-Não
delete_under=Remover diretório ao desmontar se abaixo de,3,Nunca remover
line2=Configuração do sistema,11
fstab_file=Arquivo que lista os filesystems montados durante boot,0
auto_file=Arquivo de automontagens NFS,3
autofs_file=Arquivo de automontagens kernel,3
smbclient_path=Endereço completo do smbclient,3
nmblookup_path=Endereço completo para nmblookup,3
+9
View File
@@ -0,0 +1,9 @@
line1=Настраиваемые параметры,11
browse_server=Сервер&#44; с которого запрашивается список для просмотра,3,localhost
long_fstypes=Показывать длинные имена типов файловых систем,1,1-Да,0-Нет
line2=Системные параметры,11
fstab_file=Файл&#44; содержащий список файловых систем&#44; монтируемых при загрузке системы,0
auto_file=Файл автомонтирования NFS,3
autofs_file=Файл автомонтирования ядра,3
smbclient_path=Полный путь к smbclient,3
nmblookup_path=Полный путь к nmblookup,3
+7
View File
@@ -0,0 +1,7 @@
browse_server=Server som tillhandahåller söklista,3,lokal
long_fstypes=Använda långa filsystemtyper,1,1-Ja,0-Nej
fstab_file=Fil med filsystem som monteras vid start,0
auto_file=NFS automonterar fil,3
autofs_file=Kärnan automonterar fil,3
smbclient_path=Fullständig sökväg till <tt>smbclient</tt>,3
nmblookup_path=Fullständig sökväg till <tt>nmblookup</tt>,3
+10
View File
@@ -0,0 +1,10 @@
line1=Yapılandırılabilir seçenekler,11
browse_server=Tarama listesinin istenildiği sunucu,3,localhost
long_fstypes=Uzun dosya sistemi biçimindeki isimleri kullan,1,1-Evet,0-Hayır
sort_mode=Dosya sistemlerini sıralam biçimi,1,2-Mount noktası,1-Tip,0-Dosyadaki sıra
line2=Sistem yapılandırması,11
fstab_file=Açılışta bağlanacak olan dosya sistemlerinin bulunduğu dosya,0
auto_file=NFS otomatik bağlantı dosyası,3
autofs_file=Çekirdek otomatik bağlantı dosyası,3
smbclient_path=smbclient komutunun tam yolu,3
nmblookup_path=nmblookup komutunun tam yolu,3
+9
View File
@@ -0,0 +1,9 @@
line1=Параметри&#44; що настроюються,11
browse_server=Сервер&#44; з який запитується список для перегляду,3,localhost
long_fstypes=Показувати довгі імена типів файлових систем,1,1-да,0-немає
line2=Системні параметри,11
fstab_file=Файл&#44; утримуючий список файлових систем&#44; монтованих при завантаженні системи,0
auto_file=Файл автомонтування NFS,3
autofs_file=Файл автомонтування ядра,3
smbclient_path=Повний шлях до smbclient,3
nmblookup_path=Повний шлях до nmblookup,3
+7
View File
@@ -0,0 +1,7 @@
browse_server=请求浏览列表的服务器来自,3,localhost
long_fstypes=使用长文件系统类型,1,1-是,0-否
fstab_file=在启动时Mount的文件系统列表,0
auto_file=NFS的automounts文件,3
autofs_file=内核的automounts文件,3
smbclient_path=<tt>smbclient</tt>的完整路径,3
nmblookup_path=<tt>nmblookup</tt>的完整路径,3
+7
View File
@@ -0,0 +1,7 @@
browse_server=要求瀏覽列表的伺服器來源為Server to request browse list from,3,localhost
long_fstypes=是否使用長檔案系統類別,1,1-是,0-否
fstab_file=列出開機時掛載檔案系統的檔案,0
auto_file=NFS 自動掛載檔案,3
autofs_file=核心自動掛載檔案,3
smbclient_path=到 <tt>smbclient</tt> 的完整路徑,3
nmblookup_path=到 <tt>nmblookup</tt> 的完整路徑,3
+16
View File
@@ -0,0 +1,16 @@
#!/usr/local/bin/perl
# create_swap.cgi
# Attempt to create a swap file, and then redirect the browser back to
# the mounting program to mount it
require './mount-lib.pl';
&ReadParse();
&error_setup($text{'swap_err'});
$in{cswap_size} =~ /^\d+$/ ||
&error(&text('swap_esize', $in{'cswap_size'}));
if ($error = &create_swap($in{cswap_file}, $in{cswap_size}, $in{cswap_units})) {
&error($error);
}
&webmin_log("swap", $in{cswap_file});
&redirect("save_mount.cgi?$in");
+7
View File
@@ -0,0 +1,7 @@
create=1
only=0
noconfig=0
user=0
hide=0
browse=1
sysinfo=1
+154
View File
@@ -0,0 +1,154 @@
#!/usr/local/bin/perl
# edit_mount.cgi
# Display a form for editing or creating a permanent or temporary mounting.
require './mount-lib.pl';
&error_setup($text{'edit_err'});
&ReadParse();
if (defined($in{index})) {
if ($in{temp}) {
# Edit a temporary mount, existing only in the mnttab
@mlist = &list_mounted();
@minfo = @{$mlist[$in{index}]};
$mnow = 1; $msave = 0;
}
else {
# Edit a permanent mount, which may or may not be currently
# mounted.
@mlist = &list_mounts();
@minfo = @{$mlist[$in{index}]};
$msave = 1; $mnow = (&get_mounted($minfo[0], $minfo[1]) >= 0);
}
if ($in{index} >= @mlist) {
&error($text{'edit_egone'});
}
&can_edit_fs(@minfo) && !$access{'only'} ||
&error($text{'edit_ecannot'});
$type = $minfo[2];
&ui_print_header(undef, $text{'edit_title'}, "");
$newm = 0;
}
else {
# creating a new mount (temporary or permanent)
$type = $in{type};
&ui_print_header(undef, $text{'create_title'}, "");
$newm = 1;
}
@mmodes = &mount_modes($type);
$msave = ($mmodes[0]==0 ? 0 : $msave);
$mnow = ($mmodes[1]==0 ? $msave : $mnow);
# Start of the form
print &ui_form_start("save_mount.cgi", "post");
print &ui_hidden("return", $in{'return'});
if (!$newm) {
print &ui_hidden("old", $in{'index'});
print &ui_hidden("temp", $in{'temp'});
print &ui_hidden("oldmnow", $mnow);
print &ui_hidden("oldmsave", $msave);
}
print &ui_hidden("type", $type);
print &ui_table_start(&text('edit_header', &fstype_name($type)),
"width=100%", 2, [ "width=20%" ]);
# Mount point
if ($type eq "swap") {
$mfield = "<i>$text{'edit_swap'}</i>";
}
else {
local $dir = $minfo[0] || $in{'newdir'};
if (@access_fs == 1) {
# Make relative to first allowed dir
$dir =~ s/^$access_fs[0]\///;
}
$mfield = &ui_textbox("directory", $dir, 40);
if ($access{'browse'}) {
$mfield .= " ".&file_chooser_button("directory", 1);
}
}
print &ui_table_row(&hlink($text{'edit_dir'}, "edit_dir"),
$mfield);
# Total and free space
if (!$newm) {
($size,$free) = &disk_space($type, $minfo[0]);
if ($size) {
print &ui_table_row($text{'edit_usage'},
"<b>$text{'edit_size'}</b> ".
&nice_size($size*1024)." ".
"<b>$text{'edit_free'}</b> ".
&nice_size($free*1024));
}
}
# Show save mount options
if ($mmodes[0] != 0) {
@opts = ( [ 2, $text{'edit_boot'} ] );
if ($mmodes[0] != 1) {
push(@opts, [ 1, $text{'edit_save'} ]);
}
if (!$newm && $mmodes[1] == 0) {
push(@opts, [ 0, $text{'edit_delete'} ]);
}
else {
push(@opts, [ 0, $text{'edit_dont'} ]);
}
print &ui_table_row($text{'edit_savemount'},
&ui_radio("msave", $minfo[5] eq "yes" || $newm ? 2 :
$minfo[5] eq "no" ? 1 :
$minfo[5] eq "" && !$newm ? 0 : undef,
\@opts));
}
# Show mount now options
if ($mmodes[1] == 1 && ($mmodes[3] == 0 || !$mnow)) {
print &ui_table_row($text{'edit_now'},
&ui_radio("mmount", $mnow || $newm ? 1 : 0,
[ [ 1, $text{'edit_mount'} ],
[ 0, $mmodes[0] == 0 ? $text{'edit_delete'} :
$newm ? $text{'edit_dont2'} :
$text{'edit_unmount'} ] ]));
}
# Show fsck order options
if ($mmodes[2]) {
$second = $minfo[4] > 1 ? $minfo[4] : 2;
print &ui_table_row($text{'edit_order'},
&ui_radio("order", $newm || $minfo[4] == 0 ? 0 :
$minfo[4] == 1 ? 1 :
$second,
[ [ 0, $text{'no'} ],
[ 1, $text{'edit_first'} ],
[ $second, $text{'edit_second'} ] ]));
}
# Show filesystem-specific mount source
&generate_location($type, $minfo[1] || $in{'newdev'});
print &ui_table_end();
if (!defined($access{'opts'}) || $access{'opts'} =~ /$type/) {
# generate mount options
print &ui_table_start($text{'edit_adv'}, "width=100%", 4,
[ "width=20%" ]);
&parse_options($type, $minfo[3]);
&generate_options($type, $newm);
print &ui_table_end();
}
# Save and other buttons
if ($newm) {
print &ui_form_end([ [ undef, $text{'create'} ] ]);
}
elsif ($mnow && $minfo[2] ne "swap") {
&foreign_require("proc");
print &ui_hidden("lsoffs", $minfo[0]);
print &ui_form_end([ [ undef, $text{'save'} ],
$proc::has_fuser_command ?
( [ 'lsof', $text{'edit_list'} ] ) : ( ) ]);
}
else {
print &ui_form_end([ [ undef, $text{'save'} ] ]);
}
&ui_print_footer($in{'return'}, $text{'index_return'});
+1088
View File
File diff suppressed because it is too large Load Diff
BIN
View File
Binary file not shown.
+58
View File
@@ -0,0 +1,58 @@
#include <stdio.h>
#include <errno.h>
#include <sys/param.h>
#include <sys/ucred.h>
#include <sys/mount.h>
char *find_type(int t);
char *expand_flags(int f);
int main(void)
{
struct statfs *mntlist;
int n, i;
n = getmntinfo(&mntlist, MNT_NOWAIT);
if (n < 0) {
fprintf(stderr, "getmntinfo failed : %s\n", strerror(errno));
exit(1);
}
for(i=0; i<n; i++) {
printf("%s\t%s\t%s\t%s\t%x\n",
mntlist[i].f_mntonname,
mntlist[i].f_mntfromname,
find_type(mntlist[i].f_type),
expand_flags(mntlist[i].f_flags),
mntlist[i].f_flags);
}
return 0;
}
char *type_name[] = { "none", "ufs", "nfs", "mfs", "msdos", "lfs",
"lofs", "fdesc", "portal", "null", "umap", "kernfs",
"procfs", "afs", "cd9660", "union", "devfs", "ext2fs",
"tfs" };
char *find_type(int t)
{
if (t < 0 || t > 18) return "???";
else return type_name[t];
}
char *expand_flags(int f)
{
static char buf[1024];
buf[0] = 0;
if (f & MNT_RDONLY) strcat(buf, "ro,");
if (f & MNT_NOEXEC) strcat(buf, "noexec,");
if (f & MNT_NOSUID) strcat(buf, "nosuid,");
if (f & MNT_NOATIME) strcat(buf, "noatime,");
if (f & MNT_NODEV) strcat(buf, "nodev,");
if (f & MNT_SYNCHRONOUS) strcat(buf, "sync,");
if (f & MNT_ASYNC) strcat(buf, "async,");
if (f & MNT_QUOTA) strcat(buf, "quota,");
if (buf[0] == 0) return "-";
buf[strlen(buf)-1] = 0;
return buf;
}
BIN
View File
Binary file not shown.
+52
View File
@@ -0,0 +1,52 @@
#include <stdio.h>
#include <errno.h>
#include <sys/param.h>
#include <sys/ucred.h>
#include <sys/mount.h>
char *find_type(int t);
char *expand_flags(int f);
int main(void)
{
struct statfs *mntlist;
int n, i;
n = getmntinfo(&mntlist, MNT_NOWAIT);
if (n < 0) {
fprintf(stderr, "getmntinfo failed : %s\n", strerror(errno));
exit(1);
}
for(i=0; i<n; i++) {
printf("%s\t%s\t%s\t%s\t%x\n",
mntlist[i].f_mntonname,
mntlist[i].f_mntfromname,
mntlist[i].f_fstypename,
expand_flags(mntlist[i].f_flags),
mntlist[i].f_flags);
}
return 0;
}
char *expand_flags(int f)
{
static char buf[1024];
buf[0] = 0;
if (f & MNT_RDONLY) strcat(buf, "ro,");
if (f & MNT_NOEXEC) strcat(buf, "noexec,");
if (f & MNT_NOSUID) strcat(buf, "nosuid,");
if (f & MNT_NOATIME) strcat(buf, "noatime,");
if (f & MNT_NODEV) strcat(buf, "nodev,");
if (f & MNT_SYNCHRONOUS) strcat(buf, "sync,");
if (f & MNT_ASYNC) strcat(buf, "async,");
if (f & MNT_QUOTA) strcat(buf, "quota,");
if (f & MNT_NOSYMFOLLOW) strcat(buf, "nosymfollow,");
if (f & MNT_SUIDDIR) strcat(buf, "suiddir,");
if (f & MNT_UNION) strcat(buf, "union,");
if (f & MNT_NOCLUSTERR) strcat(buf, "noclusterr,");
if (f & MNT_NOCLUSTERW) strcat(buf, "noclusterw,");
if (buf[0] == 0) return "-";
buf[strlen(buf)-1] = 0;
return buf;
}
BIN
View File
Binary file not shown.
+52
View File
@@ -0,0 +1,52 @@
#include <stdio.h>
#include <errno.h>
#include <sys/param.h>
#include <sys/ucred.h>
#include <sys/mount.h>
char *find_type(int t);
char *expand_flags(int f);
int main(void)
{
struct statfs *mntlist;
int n, i;
n = getmntinfo(&mntlist, MNT_NOWAIT);
if (n < 0) {
fprintf(stderr, "getmntinfo failed : %s\n", strerror(errno));
exit(1);
}
for(i=0; i<n; i++) {
printf("%s\t%s\t%s\t%s\t%x\n",
mntlist[i].f_mntonname,
mntlist[i].f_mntfromname,
mntlist[i].f_fstypename,
expand_flags(mntlist[i].f_flags),
mntlist[i].f_flags);
}
return 0;
}
char *expand_flags(int f)
{
static char buf[1024];
buf[0] = 0;
if (f & MNT_RDONLY) strcat(buf, "ro,");
if (f & MNT_NOEXEC) strcat(buf, "noexec,");
if (f & MNT_NOSUID) strcat(buf, "nosuid,");
if (f & MNT_NOATIME) strcat(buf, "noatime,");
if (f & MNT_NODEV) strcat(buf, "nodev,");
if (f & MNT_SYNCHRONOUS) strcat(buf, "sync,");
if (f & MNT_ASYNC) strcat(buf, "async,");
if (f & MNT_QUOTA) strcat(buf, "quota,");
if (f & MNT_NOSYMFOLLOW) strcat(buf, "nosymfollow,");
if (f & MNT_SUIDDIR) strcat(buf, "suiddir,");
if (f & MNT_UNION) strcat(buf, "union,");
if (f & MNT_NOCLUSTERR) strcat(buf, "noclusterr,");
if (f & MNT_NOCLUSTERW) strcat(buf, "noclusterw,");
if (buf[0] == 0) return "-";
buf[strlen(buf)-1] = 0;
return buf;
}
BIN
View File
Binary file not shown.
+52
View File
@@ -0,0 +1,52 @@
#include <stdio.h>
#include <errno.h>
#include <sys/param.h>
#include <sys/ucred.h>
#include <sys/mount.h>
char *find_type(int t);
char *expand_flags(int f);
int main(void)
{
struct statfs *mntlist;
int n, i;
n = getmntinfo(&mntlist, MNT_NOWAIT);
if (n < 0) {
fprintf(stderr, "getmntinfo failed : %s\n", strerror(errno));
exit(1);
}
for(i=0; i<n; i++) {
printf("%s\t%s\t%s\t%s\t%x\n",
mntlist[i].f_mntonname,
mntlist[i].f_mntfromname,
mntlist[i].f_fstypename,
expand_flags(mntlist[i].f_flags),
mntlist[i].f_flags);
}
return 0;
}
char *expand_flags(int f)
{
static char buf[1024];
buf[0] = 0;
if (f & MNT_RDONLY) strcat(buf, "ro,");
if (f & MNT_NOEXEC) strcat(buf, "noexec,");
if (f & MNT_NOSUID) strcat(buf, "nosuid,");
if (f & MNT_NOATIME) strcat(buf, "noatime,");
if (f & MNT_NODEV) strcat(buf, "nodev,");
if (f & MNT_SYNCHRONOUS) strcat(buf, "sync,");
if (f & MNT_ASYNC) strcat(buf, "async,");
if (f & MNT_QUOTA) strcat(buf, "quota,");
if (f & MNT_NOSYMFOLLOW) strcat(buf, "nosymfollow,");
if (f & MNT_SUIDDIR) strcat(buf, "suiddir,");
if (f & MNT_UNION) strcat(buf, "union,");
if (f & MNT_NOCLUSTERR) strcat(buf, "noclusterr,");
if (f & MNT_NOCLUSTERW) strcat(buf, "noclusterw,");
if (buf[0] == 0) return "-";
buf[strlen(buf)-1] = 0;
return buf;
}
+53
View File
@@ -0,0 +1,53 @@
#include <stdio.h>
#include <errno.h>
#include <sys/param.h>
#include <sys/ucred.h>
#include <sys/mount.h>
#include <stdlib.h>
#include <string.h>
char *find_type(int t);
char *expand_flags(int f);
int main(void)
{
struct statfs *mntlist;
int n, i;
n = getmntinfo(&mntlist, MNT_NOWAIT);
if (n < 0) {
fprintf(stderr, "getmntinfo failed : %s\n", strerror(errno));
exit(1);
}
for(i=0; i<n; i++) {
printf("%s\t%s\t%s\t%s\t%x\n",
mntlist[i].f_mntonname,
mntlist[i].f_mntfromname,
mntlist[i].f_fstypename,
expand_flags(mntlist[i].f_flags),
mntlist[i].f_flags);
}
return 0;
}
char *expand_flags(int f)
{
static char buf[1024];
buf[0] = 0;
if (f & MNT_RDONLY) strcat(buf, "ro,");
if (f & MNT_NOEXEC) strcat(buf, "noexec,");
if (f & MNT_NOSUID) strcat(buf, "nosuid,");
if (f & MNT_NOATIME) strcat(buf, "noatime,");
if (f & MNT_SYNCHRONOUS) strcat(buf, "sync,");
if (f & MNT_ASYNC) strcat(buf, "async,");
if (f & MNT_QUOTA) strcat(buf, "quota,");
if (f & MNT_NOSYMFOLLOW) strcat(buf, "nosymfollow,");
if (f & MNT_SUIDDIR) strcat(buf, "suiddir,");
if (f & MNT_UNION) strcat(buf, "union,");
if (f & MNT_NOCLUSTERR) strcat(buf, "noclusterr,");
if (f & MNT_NOCLUSTERW) strcat(buf, "noclusterw,");
if (buf[0] == 0) return "-";
buf[strlen(buf)-1] = 0;
return buf;
}
+1
View File
@@ -0,0 +1 @@
<header> نقطة التحميل </header> هذا هو الدليل المحلي لتركيب نظام الملفات. <br> سيكون المحتوى السابق (إن وجد) من هذا الدليل غير مرئي. <br> إذا لم يكن هذا الدليل موجودًا ، فسيتم إنشاؤه. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Точката на монтиране </header> Това е локалната директория, където да монтирате файловата система. <br> Предишното съдържание (ако има такова) на тази директория ще бъде невидимо. <br> Ако тази директория не съществува, тя ще бъде създадена. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>El punt de muntatge</header>
Aquest és el directori local on es munta el sistema de fitxers.<br>
El contingut anterior d'aquest directori (si n'hi ha) restarà invisible.<br>
Si aquest directori no existeix, es crearà.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Připojovací bod </header> Toto je místní adresář, do kterého se má připojit systém souborů. <br> Předchozí obsah (pokud existuje) v tomto adresáři bude neviditelný. <br> Pokud tento adresář neexistuje, bude vytvořen. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Monteringspunktet </header> Dette er det lokale bibliotek, hvor filsystemet skal monteres. <br> Det forrige indhold (hvis nogen) i dette bibliotek vil være usynligt. <br> Hvis dette bibliotek ikke findes, oprettes det. <hr>
+1
View File
@@ -0,0 +1 @@
<header>Der Mount-Punkt</header>Dies ist das lokale Verzeichnis, in dem das Dateisystem eingehängt wird.<br>Der vorherige Inhalt (falls vorhanden) dieses Verzeichnisses wird unsichtbar.<br>Falls das Verzeichnis nicht existiert, wird es erstellt.<hr>
+1
View File
@@ -0,0 +1 @@
<header> Το σημείο προσάρτησης </header> Αυτός είναι ο τοπικός κατάλογος όπου θα τοποθετήσετε το σύστημα αρχείων. <br> Το προηγούμενο περιεχόμενο (εάν υπάρχει) αυτού του καταλόγου θα είναι αόρατο. <br> Εάν αυτός ο κατάλογος δεν υπάρχει, θα δημιουργηθεί. <hr>
+1
View File
@@ -0,0 +1 @@
<header> El punto de montaje </header> Este es el directorio local donde montar el sistema de archivos. <br> El contenido anterior (si lo hay) de este directorio será invisible. <br> Si este directorio no existe, se creará. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Muntatzeko puntua </header> Fitxategi sistema muntatzeko direktorio lokala da. <br> Direktorio honen aurreko edukia (baldin badago) ikusezina izango da. <br> Direktorio hau existitzen ez bada, sortu egingo da. <hr>
+8
View File
@@ -0,0 +1,8 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<body dir="rtl">
<b>
<header>نقطه سوار کردن</header></b><p>يک فهرست راهنماي محلي است که محل سوار شدن سيستم پرونده ها
می باشد.<br>
محتوای قبلی (در صورت وجود) غيرقابل مشاهده مي باشد.<br>در صورتي که اين فهرست راهنما وجود نداشته باشد، ايجاد خواهد شد.
</p>
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Kiinnityskohta </header> Tämä on paikallinen hakemisto, johon tiedostojärjestelmä asennetaan. <br> Tämän hakemiston edellinen sisältö (jos sellainen on) on näkymätön. <br> Jos tätä hakemistoa ei ole, se luodaan. <hr>
+6
View File
@@ -0,0 +1,6 @@
<header>Le point de montage</header>
Ceci est le r&#233;pertoire local o&#249; monter le syst&#232;me de fichiers.<br>
Le contenu pr&#233;c&#233;dent du r&#233;pertoire (si il n'&#233;tait pas vide) deviendra invisible.<br>
Si le r&#233;pertoire n'existe pas, il sera cr&#233;&#233;.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Točka montiranja </header> Ovo je lokalni direktorij na koji treba montirati datotečni sustav. <br> Prethodni sadržaj (ako ga ima) u ovom direktoriju bit će nevidljiv. <br> Ako ovaj direktorij ne postoji, bit će kreiran. <hr>
+6
View File
@@ -0,0 +1,6 @@
<header>The mount point</header>
This is the local directory where to mount the filesystem.<br>
The previous content (if any) of this directory will be invisible.<br>
If this directory does not exist, it will be created.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> A csatlakozási pont </header> Ez a helyi könyvtár, ahová a fájlrendszert csatlakoztatni lehet. <br> A könyvtár előző tartalma (ha van ilyen) láthatatlan lesz. <br> Ha ez a könyvtár nem létezik, akkor létrejön. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Il punto di montaggio </header> Questa è la directory locale dove montare il filesystem. <br> Il contenuto precedente (se presente) di questa directory sarà invisibile. <br> Se questa directory non esiste, verrà creata. <hr>
+1
View File
@@ -0,0 +1 @@
<header>マウントポイント</header>これは、ファイルシステムをマウントするローカルディレクトリです。 <br>このディレクトリの以前のコンテンツ(存在する場合)は表示されません。 <br>このディレクトリが存在しない場合は、作成されます。 <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>마운트 포인트</header>
이것은 파일시스템에 마운트할 로컬 디렉토리를 의미한다.<br>
기존 컨텐츠가 존재하는 디렉토리를 마운트 포인트로 사용할 경우에는 마운트 포인트의
기존 컨텐츠는 보이지 않게 된다.<br>
디렉토리가 존재하지 않을 경우에는 생성을 하게 된다.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Titik pelekap </header> Ini adalah direktori tempatan tempat memasang sistem fail. <br> Kandungan sebelumnya (jika ada) direktori ini tidak akan kelihatan. <br> Sekiranya direktori ini tidak ada, ia akan dibuat. <hr>
+6
View File
@@ -0,0 +1,6 @@
<header>Het mount punt</header>
Dit is de locale directory waar het filesysteem word ge-mount.<br>
De vorige inhoud (indien die er was) van deze directory word onzichtbaar.<br>
Indien deze directory niet bestaat zal het nu aangemaakt worden.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Festepunktet </header> Dette er den lokale katalogen der du skal montere filsystemet. <br> Det forrige innholdet (hvis noen) i denne katalogen vil være usynlig. <br> Hvis denne katalogen ikke eksisterer, vil den bli opprettet. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Punkt montowania </header> To jest lokalny katalog, w którym należy zamontować system plików. <br> Poprzednia zawartość (jeśli w ogóle) tego katalogu będzie niewidoczna. <br> Jeśli ten katalog nie istnieje, zostanie utworzony. <hr>
+1
View File
@@ -0,0 +1 @@
<header> O ponto de montagem </header> Este é o diretório local onde montar o sistema de arquivos. <br> O conteúdo anterior (se houver) deste diretório ficará invisível. <br> Se esse diretório não existir, ele será criado. <hr>
+1
View File
@@ -0,0 +1 @@
<header> O ponto de montagem </header> Este é o diretório local onde montar o sistema de arquivos. <br> O conteúdo anterior (se houver) deste diretório ficará invisível. <br> Se esse diretório não existir, ele será criado. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Точка монтирования </header> Это локальный каталог для монтирования файловой системы. <br> Предыдущее содержимое (если есть) этого каталога будет невидимым. <br> Если этот каталог не существует, он будет создан. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Miesto pripojenia </header> Toto je lokálny adresár, do ktorého sa má pripojiť systém súborov. <br> Predchádzajúci obsah (ak existuje) tohto adresára bude neviditeľný. <br> Ak tento adresár neexistuje, vytvorí sa. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Monteringspunkten </header> Det här är den lokala katalogen där filsystemet ska monteras. <br> Det tidigare innehållet (om någon) i den här katalogen kommer att vara osynlig. <br> Om den här katalogen inte finns skapas den. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Bağlama noktası </header> Bu, dosya sisteminin bağlanacağı yerel dizindir. <br> Bu dizinin önceki içeriği (varsa) görünmez olacaktır. <br> Bu dizin mevcut değilse oluşturulur. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Точка кріплення </header> Це локальний каталог, де можна монтувати файлову систему. <br> Попередній вміст цього каталогу буде невидимим. <br> Якщо цього каталогу не існує, він буде створений. <hr>
+1
View File
@@ -0,0 +1 @@
<header>挂载点</header>这是挂载文件系统的本地目录。 <br>该目录的先前内容(如果有)将不可见。 <br>如果此目录不存在,将创建它。 <hr>
+1
View File
@@ -0,0 +1 @@
<header>掛載點</header>這是掛載文件系統的本地目錄。 <br>該目錄的先前內容(如果有)將不可見。 <br>如果此目錄不存在,將創建它。 <hr>
+1
View File
@@ -0,0 +1 @@
<header> وضع مصادقة </header> تعيين النكهة الأمنية لمعاملات NFS. <br> يستخدم sys بيانات اعتماد unid uid / gid المحلية. <br> يستخدم krb5 Kerberos للمصادقة. <br><br> <i>خيار التحميل: ثانية</i> <hr>

Some files were not shown because too many files have changed in this diff Show More