Home
last modified time | relevance | path

Searched +full:multi +full:- +full:system (Results 1 – 25 of 751) sorted by relevance

12345678910>>...31

/freebsd/sbin/init/
H A Dinit.851 and if this succeeds, begins multi-user operation.
54 commences single-user operation by giving
55 the super-user a shell on the console.
60 prevent the system from going multi-user and to instead execute
61 a single-user shell without starting the normal daemons.
62 The system is then quiescent for maintenance work and may
63 later be made to go to multi-user by exiting the
64 single-user shell (with ^D).
80 will require that the super-user password be
81 entered before the system will start a single-user shell.
[all …]
/freebsd/share/man/man4/
H A Dsmp.429 .Nd description of the FreeBSD Symmetric Multi-Processor kernel
35 kernel implements symmetric multi-processor support.
42 The number of CPUs detected by the system is available in
43 the read-only sysctl variable
46 The number of online threads per CPU core is available in the read-only sysctl
49 The number of physical CPU cores detected by the system is available in the
50 read-only sysctl variable
54 allows specific CPUs on a multi-processor system to be disabled.
70 algorithms to make better use of modern multi-core CPUs.
77 by being cores in a single multi-core processor.
[all …]
H A Dboottrace.41 .\" SPDX-License-Identifier: BSD-2-Clause
31 .Nd Boot-time, run-time, and shutdown-time tracing facility
36 is a kernel-userspace interface for capturing trace events
37 during system boot and shutdown
38 .Pq in particular, one-shot events .
41 .Bl -bullet -compact
46 some key system utilities
61 Events are stored in three event tables: boot-time events, run-time events,
62 and shutdown-time events.
63 .Bl -column "shutdown-time events" ""
[all …]
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dturris1x.dts1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright 2013 - 2022 CZ.NIC z.s.p.o. (http://www.nic.cz/)
8 * and available at: https://docs.turris.cz/hw/turris-1x/turris-1x/
11 #include <dt-bindings/gpio/gpio.h>
12 #include <dt-bindings/interrupt-controller/irq.h>
13 #include <dt-bindings/leds/common.h>
14 /include/ "fsl/p2020si-pre.dtsi"
41 gpio-controller@18 {
45 #gpio-cells = <2>;
46 gpio-controller;
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/mmap/
H A Dmmap_write_001_pos.ksh1 #!/bin/ksh -p
10 # or https://opensource.org/licenses/CDDL-1.0.
40 # 1. Make sure this test executes on multi-processes system.
50 # Detect and make sure this test must be executed on a multi-process system
52 log_unsupported "This test requires a multi-processor system."
62 log_must kill -9 $PID_MMAPWRITE
63 log_must ls -l $TESTDIR/normal_write_file
64 log_must ls -l $TESTDIR/map_write_file
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/append/
H A Dthreadsappend_001_pos.ksh1 #! /bin/ksh -p
10 # or https://opensource.org/licenses/CDDL-1.0.
41 # 1) Verify this is a multi-processor system
55 typeset -i FILE_SIZE=1310720
56 TESTFILE='testfile-threadsappend'
59 # This test should be run on a multi-processor system because otherwise the FS
63 log_fail "This test should be executed on a multi-processor system."
75 SIZE=`ls -l ${TESTDIR}/${TESTFILE} | awk '{print $5}'`
76 if [[ $SIZE -ne $FILE_SIZE ]]; then
/freebsd/usr.sbin/rpc.yppasswdd/
H A Drpc.yppasswdd.862 is an RPC-based server that accepts incoming password change requests,
120 also allows the super-user on the NIS master server to perform more
122 The super-user can modify
125 receives a request from the super-user, the password authentication
129 flag, the super-user can even add new entries to the maps using
131 Again, this only applies to the super-user on the NIS
140 .Bl -tag -width indent
167 It will try to use the system default domain name as set by the
171 if the system domain name is not
174 If the system default domain is set,
[all …]
/freebsd/usr.sbin/bsdconfig/security/include/
H A Dsecurelevel.hlp4 root user in multi-user mode, which in turn may limit the effects of
8 -1 Permanently insecure mode - always run the system in level 0
11 0 Insecure mode - immutable and append-only flags may be turned
15 1 Secure mode - the system immutable and system append-only
21 2 Highly secure mode - same as secure mode, plus disks may not
25 system is multi-user.
32 3 Network secure mode - same as highly secure mode, plus IP
37 Securelevels must be used in combination with careful system design and
38 application of protective mechanisms to prevent system configuration
/freebsd/sys/contrib/device-tree/Bindings/
H A Dtrivial-devices.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
4 $id: http://devicetree.org/schemas/trivial-devices.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Rob Herring <robh@kernel.org>
27 spi-ma
[all...]
/freebsd/contrib/nvi/
H A DINSTALL.md3 For instructions to bring nvi2 as a part of your operating system's base system, see [Porting](http…
7 - CMake >= 3.17;
8 - Ninja build system;
9 - libiconv (for `USE_ICONV`);
10 - libncursesw (for `USE_WIDECHAR`);
14 - Berkeley DB1 in libc;
15 - /var/tmp/vi.recover/ with mode 41777.
19system generator. By specifying "Ninja Multi-Config" as the build system to generate, you can comp…
22 cmake -G "Ninja Multi-Config" -B build
28 ninja -C build
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/link_count/
H A Dlink_count_001.ksh1 #!/bin/ksh -p
10 # or https://opensource.org/licenses/CDDL-1.0.
39 # 1. Make sure this test executes on multi-processes system
56 # Detect and make sure this test must be executed on a multi-process system
58 log_unsupported "This test requires a multi-processor system."
61 log_must mkdir -p ${TESTDIR}/tmp
63 typeset -i i=0
64 while [ $i -lt $NUMFILES ]; do
71 rm -f ${TESTDIR}/tmp/x* >/dev/null 2>&1
78 while [ $i -lt $ITERS ]; do
[all …]
/freebsd/share/man/man5/
H A Dsysctl.conf.534 file is read in when the system goes into multi-user mode to set default
41 .Bd -literal -offset indent
55 system,
56 additional module-specific settings can be applied
60 .Bl -tag -width /etc/rc.d/sysctl_lastload -compact
65 early on in the process of transitioning to multi-user mode.
70 shortly before the system reaches the multi-user mode.
75 Machine-specific settings for sites with a common
84 .Bd -literal -offset indent
/freebsd/tests/sys/cddl/zfs/tests/mmap/
H A Dmmap_write_001_pos.ksh1 #!/usr/local/bin/ksh93 -p
39 # 1. Make sure this test executes on multi-processes system.
47 # CODING_STATUS: COMPLETED (2005-07-04)
56 WAITTIME=${WAITTIME-120}
61 # Detect and make sure this test must be executed on a multi-process system
62 NCPUS=`sysctl -a | awk -F '"' '/cpu count="[0-9+]"/ {print $2; exit}'`
63 if [[ $? -ne 0 || -z $NCPUS || $NCPUS -le 1 ]]; then
64 log_unsupported "This test must be executed on a multi-processor system."
73 typeset -i i=0
75 if ! $PS -ef | $PGREP $MMAPWRITE > /dev/null ; then
[all …]
/freebsd/tests/sys/cddl/zfs/tests/threadsappend/
H A Dthreadsappend_001_pos.ksh1 #! /usr/local/bin/ksh93 -p
41 # 1) Verify this is a multi-processor system
49 # CODING_STATUS: COMPLETED (2005-07-04)
64 typeset -i FILE_SIZE=1310720
67 # This test should be run on a multi-processor system because otherwise the FS
70 NCPUS=`sysctl -a | awk -F '"' '/cpu count="[0-9+]"/ {print $2; exit}'`
71 if [[ $? -ne 0 || -z $NCPUS || $NCPUS -le 1 ]]; then
73 "This test should be executed on a multi-processor system."
85 SIZE=`$LS -l ${TESTDIR}/${TESTFILE} | $AWK '{print $5}'`
86 if [[ $SIZE -ne $FILE_SIZE ]]; then
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Drenesas,rsnd.txt1 Renesas R-Car sound
7 Renesas R-Car and RZ/G sound is constructed from below modules
11 - SRC : Sampling Rate Converter
12 - CMD
13 - CTU : Channel Transfer Unit
14 - MIX : Mixer
15 - DVC : Digital Volume and Mute Function
22 * Multi channel
25 Multi channel is supported by Multi
[all...]
/freebsd/tests/sys/cddl/zfs/tests/link_count/
H A Dlink_count_001.ksh1 #!/usr/local/bin/ksh93 -p
38 # 1. Make sure this test executes on multi-processes system
47 # CODING_STATUS: COMPLETED (2006-07-13)
57 # Detect and make sure this test must be executed on a multi-process system
58 NCPUS=`sysctl -n kern.smp.cpus`
59 #NCPUS=`sysctl -a | awk -F '"' '/cpu count="[0-9+]"/ {print $2; exit}'`
60 if [[ $? -ne 0 || -z "$NCPUS" || "$NCPUS" -le 1 ]]; then
61 log_unsupported "This test must be executed on a multi-processor system."
64 log_must $MKDIR -p ${TESTDIR}/tmp
66 typeset -i i=0
[all …]
/freebsd/share/doc/smm/01.setup/
H A D6.t30 .Sh 1 "System operation"
32 This section describes procedures used to operate a \*(4B UNIX system.
33 Procedures described here are used periodically, to reboot the system,
35 system performance, recompile system software and control local changes.
38 In a normal reboot, the system checks the disks and comes up multi-user
42 This will leave the system in single-user mode, with only the console
46 you must enter the root password to bring the machine to single-user mode.)
48 and then to return to single-user mode by signaling
52 To bring the system up to a multi-user configuration from the single-user
54 all you have to do is hit ^D on the console. The system
[all …]
/freebsd/sys/dev/sound/pci/
H A Denvy24ht.h1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
30 /* -------------------------------------------------------------------- */
37 #define ENVY24HT_PCIR_MT 0x14 /* Multi-Track I/O Base Address */
45 #define ENVY24HT_CCS_IMASK_PMT 0x10 /* Professional Multi-track */
60 #define ENVY24HT_CCS_SCFG 0x04 /* System Configuration Register */
65 #define ENVY24HT_CCSM_SCFG_MPU 0x20 /* 0(not implemented)/1(1) MPU-401 UART */
66 #define ENVY24HT_CCSM_SCFG_ADC 0x0c /* 1-2 stereo ADC connected, S/PDIF receiver connected */
67 #define ENVY24HT_CCSM_SCFG_DAC 0x03 /* 1-4 stereo DAC connected */
69 #define ENVY24HT_CCS_ACL 0x05 /* AC-Link Configuration Register */
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dsysex2 #------------------------------------------------------------------------
7 # where real SYStem EXclusive messages at offset 1 are limited to seven bits
11 # MIDI System Exclusive (SysEx) messages (strength=50) after Microsoft Visual C library (strength=7…
16 >>0 use midi-sysex
17 # display information about MIDI System Exclusive (SysEx) messages
18 0 name midi-sysex
20 >1 ubyte x MIDI audio System Exclusive (SysEx) message -
22 #!:mime application/octet-stream
23 !:mime audio/x-syx
26 # https://www.midi.org/specifications-old/item/manufacturer-id-numbers
[all …]
H A Dos92 #------------------------------------------------------------------------------
33 >6 byte&0x0f 0x00 non-executable
35 >6 byte&0x0f 0x02 BASIC I-code
36 >6 byte&0x0f 0x03 Pascal P-code
37 >6 byte&0x0f 0x04 C I-code
38 >6 byte&0x0f 0x05 COBOL I-code
39 >6 byte&0x0f 0x06 Fortran I-code
43 >6 byte&0xf0 0x30 multi-module
46 >6 byte&0xf0 0xC0 system module
56 >0x14 byte&0x80 0x80 re-entrant
[all …]
/freebsd/lib/libsys/
H A Duuidgen.240 system call generates
47 See below for a more in-depth description of the identifiers.
50 generated for each invocation of the system call.
51 According to the algorithm of generating time-based UUIDs, this will also
57 system call will generate a set of identifiers that is dense in such a way
63 (GUIDs), have a binary representation of 128-bits.
66 .Bd -literal
76 .Bl -tag -width ".Va clock_seq_hi_and_reserved"
78 The least significant 32 bits of a 60-bit timestamp.
79 This field is stored in the native byte-order.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dsamsung,sec-core.txt1 Binding for Samsung S2M and S5M family multi-function device
4 This is a part of device tree bindings for S2M and S5M family multi-function
8 of multi-function devices which include voltage and current regulators, RTC,
9 charger controller, clock outputs and other sub-blocks. It is interfaced
10 to the host controller using an I2C interface. Each sub-block is usually
11 addressed by the host system using different I2C slave addresses.
14 This document describes bindings for main device node. Optional sub-blocks
15 must be a sub-nodes to it. Bindings for them can be found in:
16 - bindings/regulator/samsung,s2mpa01.txt
17 - bindings/regulator/samsung,s2mps11.txt
[all …]
/freebsd/share/man/man9/
H A DVOP_SETLABEL.91 .\"-
43 .Ss Single-Label vs. Multi-Label Filesystems
44 Filesystems that do not implement per-file labels -- known as single-label
45 filesystems -- can simply leave the
53 Filesystems that do implement per-vnode label storage -- known as multi-label
54 filesystems -- will set the
91 It is also important that operations are ordered so that a system crash does
102 .Bl -tag -width Er
104 The file system does not support
107 The file system is out of space.
[all …]
/freebsd/tools/tools/netmap/
H A Dpkt-gen.81 .\" Copyright (c) 2016, George V. Neville-Neil
30 .Nm pkt-gen
34 .Bl -item -compact
43 .Op Fl d Ar dst_ip[:port[-dst_ip:port]]
44 .Op Fl s Ar src_ip[:port[-src_ip:port]]
65 .Bl -tag -width Ds
72 It can be a system network interface (e.g., em0),
90 for client-side ping-pong operation, and
92 for server-side ping-pong operation.
108 is the number of ping-pong transactions.
[all …]
/freebsd/crypto/openssh/
H A Dopenssh.xml.in2 <!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
3 <!--
17 -->
26 <!--
28 -->
34 name='filesystem-local'
38 <service_fmri value='svc:/system/filesystem/local'/>
50 name='multi-user-server'
53 <service_fmri value='svc:/milestone/multi-user-server'/>

12345678910>>...31