Einstellungen mit raspi-config
This commit is contained in:
@@ -293,6 +293,7 @@ maybe chmod 0755 'init.d/nfs-common'
|
||||
maybe chmod 0755 'init.d/paxctld'
|
||||
maybe chmod 0755 'init.d/procps'
|
||||
maybe chmod 0755 'init.d/raspi-config'
|
||||
maybe chmod 0755 'init.d/resize2fs_once'
|
||||
maybe chmod 0755 'init.d/rng-tools'
|
||||
maybe chmod 0755 'init.d/rpcbind'
|
||||
maybe chmod 0755 'init.d/rsync'
|
||||
@@ -610,7 +611,7 @@ maybe chmod 0755 'wpa_supplicant'
|
||||
maybe chmod 0755 'wpa_supplicant/action_wpa.sh'
|
||||
maybe chmod 0644 'wpa_supplicant/functions.sh'
|
||||
maybe chmod 0755 'wpa_supplicant/ifupdown.sh'
|
||||
maybe chmod 0600 'wpa_supplicant/wpa_supplicant.conf'
|
||||
maybe chmod 0644 'wpa_supplicant/wpa_supplicant.conf'
|
||||
maybe chmod 0644 'xattr.conf'
|
||||
maybe chmod 0755 'xdg'
|
||||
maybe chmod 0755 'xdg/autostart'
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# File generated by update-locale
|
||||
LANG=en_GB.UTF-8
|
||||
LANG=de_DE.UTF-8
|
||||
|
||||
2
hosts
2
hosts
@@ -3,4 +3,4 @@
|
||||
ff02::1 ip6-allnodes
|
||||
ff02::2 ip6-allrouters
|
||||
|
||||
127.0.1.1 raspberrypi
|
||||
127.0.1.1 mypi
|
||||
|
||||
26
init.d/resize2fs_once
Executable file
26
init.d/resize2fs_once
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
### BEGIN INIT INFO
|
||||
# Provides: resize2fs_once
|
||||
# Required-Start:
|
||||
# Required-Stop:
|
||||
# Default-Start: 3
|
||||
# Default-Stop:
|
||||
# Short-Description: Resize the root filesystem to fill partition
|
||||
# Description:
|
||||
### END INIT INFO
|
||||
|
||||
. /lib/lsb/init-functions
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
log_daemon_msg "Starting resize2fs_once" &&
|
||||
resize2fs "/dev/mmcblk0p2" &&
|
||||
update-rc.d resize2fs_once remove &&
|
||||
rm /etc/init.d/resize2fs_once &&
|
||||
log_end_msg $?
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 start" >&2
|
||||
exit 3
|
||||
;;
|
||||
esac
|
||||
@@ -113,7 +113,7 @@
|
||||
# de_CH ISO-8859-1
|
||||
# de_CH.UTF-8 UTF-8
|
||||
# de_DE ISO-8859-1
|
||||
# de_DE.UTF-8 UTF-8
|
||||
de_DE.UTF-8 UTF-8
|
||||
# de_DE@euro ISO-8859-15
|
||||
# de_IT ISO-8859-1
|
||||
# de_IT.UTF-8 UTF-8
|
||||
@@ -142,7 +142,7 @@
|
||||
# en_DK.UTF-8 UTF-8
|
||||
# en_GB ISO-8859-1
|
||||
# en_GB.ISO-8859-15 ISO-8859-15
|
||||
en_GB.UTF-8 UTF-8
|
||||
# en_GB.UTF-8 UTF-8
|
||||
# en_HK ISO-8859-1
|
||||
# en_HK.UTF-8 UTF-8
|
||||
# en_IE ISO-8859-1
|
||||
|
||||
@@ -1 +1 @@
|
||||
/usr/share/zoneinfo/Europe/London
|
||||
/usr/share/zoneinfo/Europe/Berlin
|
||||
1
rc3.d/S01resize2fs_once
Symbolic link
1
rc3.d/S01resize2fs_once
Symbolic link
@@ -0,0 +1 @@
|
||||
../init.d/resize2fs_once
|
||||
@@ -1,2 +1,3 @@
|
||||
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
|
||||
update_config=1
|
||||
country=DE
|
||||
|
||||
Reference in New Issue
Block a user