????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.189.141.66 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/init.d/ |
Upload File : |
#!/bin/sh ### BEGIN INIT INFO # Provides: console-setup # Required-Start: $remote_fs # Required-Stop: # Should-Start: console-screen kbd # Default-Start: S # Default-Stop: # X-Interactive: true # Short-Description: Set console font and keymap ### END INIT INFO set -e # This script is used jointly by console-setup and console-setup-mini. # It belongs to keyboard-configuration because it is forbidden two # different packages to share common configuration file. test -f /bin/setupcon || exit 0 if [ -f /lib/lsb/init-functions ]; then . /lib/lsb/init-functions else log_action_begin_msg () { echo -n "$@... " } log_action_end_msg () { if [ "$1" -eq 0 ]; then echo done. else echo failed. fi } fi # Are we running from init? run_by_init() { ([ "$previous" ] && [ "$runlevel" ]) || [ "$runlevel" = S ] } case "$1" in stop) # console-setup isn't a daemon ;; start|force-reload|restart|reload) if expr "$(fgconsole 2>/dev/null || true)" : '[1-6]$' >/dev/null && \ (! type plymouth >/dev/null || ! plymouth --ping); then log_action_begin_msg "Setting up console font and keymap" # Only use --save if we aren't in the boot sequence, to avoid # slowing down the boot too much. Outside the boot sequence, # this means that 'dpkg-reconfigure console-setup' automatically # saves the font and keymap. if run_by_init; then save= else save=--save fi if setupcon --force $save; then log_action_end_msg 0 else log_action_end_msg $? fi elif ! run_by_init; then log_action_begin_msg "Saving console font and keymap for next boot" if setupcon --save-only; then log_action_end_msg 0 else log_action_end_msg $? fi fi ;; *) echo 'Usage: /etc/init.d/console-setup {start|reload|restart|force-reload|stop}' exit 1 ;; esac