Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
util-linux /
Delete
Unzip
Name
Size
Permission
Date
Action
examples
[ DIR ]
drwxr-xr-x
2018-03-13 16:32
releases
[ DIR ]
drwxr-xr-x
2018-03-13 16:32
00-about-docs.txt
260
B
-rw-r--r--
2016-07-20 10:56
AUTHORS.gz
9.86
KB
-rw-r--r--
2017-02-22 12:46
NEWS.Debian.gz
800
B
-rw-r--r--
2018-03-07 19:29
PAM-configuration.txt
671
B
-rw-r--r--
2016-07-20 10:56
blkid.txt
3.18
KB
-rw-r--r--
2016-07-20 10:56
cal.txt
2.21
KB
-rw-r--r--
2016-07-20 10:56
changelog.Debian.gz
54.91
KB
-rw-r--r--
2018-03-07 19:29
changelog.gz
108
B
-rw-r--r--
2017-02-22 13:12
col.txt
1.87
KB
-rw-r--r--
2016-07-20 10:56
copyright
17.55
KB
-rw-r--r--
2018-03-07 19:29
deprecated.txt
2.76
KB
-rw-r--r--
2017-02-22 11:16
getopt.txt
992
B
-rw-r--r--
2016-07-20 10:56
getopt_changelog.txt
1.88
KB
-rw-r--r--
2016-07-20 10:56
howto-build-sys.txt
3.12
KB
-rw-r--r--
2016-11-02 13:03
howto-compilation.txt
1.98
KB
-rw-r--r--
2016-07-20 10:56
howto-contribute.txt.gz
2.73
KB
-rw-r--r--
2016-11-02 13:57
howto-debug.txt
2.38
KB
-rw-r--r--
2016-11-02 13:57
howto-man-page.txt.gz
2.25
KB
-rw-r--r--
2017-02-22 11:16
howto-pull-request.txt.gz
4.16
KB
-rw-r--r--
2017-02-22 11:16
howto-tests.txt
3.62
KB
-rw-r--r--
2016-11-02 13:57
howto-usage-function.txt.gz
2.45
KB
-rw-r--r--
2016-11-02 13:57
hwclock.txt
148
B
-rw-r--r--
2016-07-20 10:56
modems-with-agetty.txt
2.56
KB
-rw-r--r--
2016-07-20 10:56
mount.txt
522
B
-rw-r--r--
2016-07-20 10:56
pg.txt
448
B
-rw-r--r--
2016-07-20 10:56
poeigl.txt.gz
8.68
KB
-rw-r--r--
2016-11-28 11:59
release-schedule.txt
1.35
KB
-rw-r--r--
2016-07-20 10:56
source-code-management.txt
894
B
-rw-r--r--
2016-07-20 10:56
Save
Rename
util-linux build system ======================= - the build system is non-recursive, individual subdirectories use Makemodule.am files. These files are merged together by automake into one global Makefile in the top-level directory - all final build results (binaries, libtool scripts) are stored in top-level source directory - all Makemodule.am files have to be designed as top-level makefiles, it means with full paths (e.g. foo_SOURCES = subdir/foo.c) - always use '+=' operator for global variables (e.g. bin_PROGRAMS += foo) - use libcommon.la (without path!) for lib/ stuff (e.g. foo_LDADD = libcommon.la) - for libblkid, libuuid and libmount use lib<name>.la in _LDADD and -I$(ul_lib<name>_incdir) in _CFLAGS, for example foo_LDADD = libmount.la foo_CFLAGS = -I$(ul_libmount_incdir) - always use suffixes for hooks, for example install-exec-hook-foo: ln -sf foo foooo INSTALL_EXEC_HOOKS += install-exec-hook-foo - all util-linux specific autoconf macros use UL_ prefix - utils in Makefile.am files are enabled/disabled according to BUILD_<NAME> conditions (AM_CONDITIONAL), for example: if BUILD_HWCLOCK ... endif - "if BUILD_<NAME>" blocks are never nested within another "if BUILD_<NAME>", all dependencies have to be resolved in configure.ac (see UL_REQUIRES_BUILD()) - all BUILD_<NAME> in configure.am are always based on build_<name> variables, for example: AM_CONDITIONAL([BUILD_HWCLOCK], test "x$build_hwclock" = xyes) the $build_<name> should be available in whole configure script - AC_ARG_ENABLE() status is always stored in $enable_<name> variable, possible setting: "check" - util/feature is optional, if any subcomponent (function, lib, ...) is missing a warning is printed and the util/feature is disabled "yes" - util/feature is required, if any subcomponent (function, lib, ...) is missing an error is printed and ./configure aborted "no" - the util/feature is unwanted The default status is always defined by UL_DEFAULT_ENABLE() and it might be globally modified by $ul_default_estate (see AC_ARG_ENABLE([all-programs])). - it's possible to disable all programs, but enable just one (or more) explicitly specified, for example: ./configure --disable-all-programs --enable-hwclock - some basic scenarios for the ./configure script are defined in the tools/config-gen.d/ directory. If you want to use these predefined scenarios then call ./tools/config-gen [<scenario> ...] for example ./tools/config-gen all selinux will build all utils with enabled selinux support. You can also define some CFLAGS, for example: CFLAGS=$(rpm --eval '%optflags') ./tools/config-gen all will use the default distro flags. WARNING: config-gen is not designed for end-user or downstream distributions! It's for development purpose only. All end-users and downstream have to use standard ./configure script only. - the tools/config-gen script is also used for build system regression tests, the test is not enabled by default, you have to use tests/run.sh build-sys --force