Because you're only looking at the first partition, which is used for the firmware and kernel. The image creates two partitions.jawadkr wrote: i am also confused because I have a 64 GB sd-card but when i get disk info, it shows: Capacity 44.5 MB , Available 24 MB. however, installation files are there.
Yes.is it even possible to do headless installation using ssh on the Pi 3 Model B V 1.2 ?
No.is my sd-card too big for it?
That is 'interesting' in the sense that it proves your Operating System has booted up and detected and processed those files correctly.what is more interesting is that when i take sd-card out and plug it in my computer again (ssh and wpa_supplicant.conf) are no longer on the sd-card.
The same mechanism applies to the WiFi configuration.For headless setup, SSH can be enabled by placing a file named ssh, without any extension, onto the boot partition of the SD card from another computer. When the Pi boots, it looks for the ssh file. If it is found, SSH is enabled and the file is deleted. The content of the file does not matter; it could contain text, or nothing at all.
Code: Select all
country=KR
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="PTIA-710"
scan_ssid=1
psk="14720234"
key_mgmt=WPA2PSK + AES
}
Code: Select all
key_mgmt=WPA2PSK + AES
Is your router SSID hidden? If so, unhide it. Contrary to popular belief, hiding your SSID does not make your network more secure (it can actually make it less secure), and it creates connection problems. The SSID is not meant or designed to be hidden (that nonsense was something added by router manufacturers as a marketing gimmick).
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="Your network SSID"
psk="Your WPA/WPA2 security key"
key_mgmt=WPA-PSK
}
that must be the password and not the bypsk="14720234"
key_mgmt=WPA2PSK + AES
from herekey_mgtm=NONE
# key_mgmt: list of accepted authenticated key management protocols
# WPA-PSK = WPA pre-shared key (this requires 'psk' field)
# WPA-EAP = WPA using EAP authentication
# IEEE8021X = IEEE 802.1X using EAP authentication and (optionally) dynamically
# generated WEP keys
# NONE = WPA is not used; plaintext or static WEP could be used
# WPA-NONE = WPA-None for IBSS (deprecated; use proto=RSN key_mgmt=WPA-PSK
# instead)
# FT-PSK = Fast BSS Transition (IEEE 802.11r) with pre-shared key
# FT-EAP = Fast BSS Transition (IEEE 802.11r) with EAP authentication
# WPA-PSK-SHA256 = Like WPA-PSK but using stronger SHA256-based algorithms
# WPA-EAP-SHA256 = Like WPA-EAP but using stronger SHA256-based algorithms
# SAE = Simultaneous authentication of equals; pre-shared key/password -based
# authentication with stronger security than WPA-PSK especially when using
# not that strong password
# FT-SAE = SAE with FT
# WPA-EAP-SUITE-B = Suite B 128-bit level
# WPA-EAP-SUITE-B-192 = Suite B 192-bit level
# OSEN = Hotspot 2.0 Rel 2 online signup connection
# FILS-SHA256 = Fast Initial Link Setup with SHA256
# FILS-SHA384 = Fast Initial Link Setup with SHA384
# FT-FILS-SHA256 = FT and Fast Initial Link Setup with SHA256
# FT-FILS-SHA384 = FT and Fast Initial Link Setup with SHA384
# If not set, this defaults to: WPA-PSK WPA-EAP
#
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US
network={
ssid="Your network name/SSID"
psk="Your WPA/WPA2 security key"
key_mgmt=WPA-PSK
}
Code: Select all
sudo raspi-config
The Raspberry Pi 3 Model B released in February 2016 was the first model with built-in WiFi. Since your device was built in 2015 it does not have built-in WiFi and you need to attach a USB WiFi dongle for WiFi to work.
Release date and build date are two different things. All Pi 3Bs have WiFi. I've just checked one of mine and the date on the board is 2015. It definitely has WiFi.ejolson wrote: ↑Tue May 01, 2018 6:03 amThe Raspberry Pi 3 Model B released in February 2016 was the first model with built-in WiFi. Since your device was built in 2015 it does not have built-in WiFi and you need to attach a USB WiFi dongle for WiFi to work.
Isn't that actually a copyright date, and not a manufacturing date?
Code: Select all
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.0.78 netmask 255.255.255.0 broadcast 192.168.0.255
inet6 fe80::xxx:xxxx:xxxx:xxx prefixlen 64 scopeid 0x20<link>
ether b8:27:eb:xx:xx:xx txqueuelen 1000 (Ethernet)
RX packets 9754 bytes 11079023 (10.5 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 7783 bytes 898560 (877.5 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 9 bytes 524 (524.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 9 bytes 524 (524.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether b8:27:eb:xx:xx:xx txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
jawadkr wrote: ↑Tue May 01, 2018 7:57 ami have tools shortages around me.
So today i found an Ethernet cable and connected my Pi to router directly. but i prefer a wireless connection and remove this monitor and use my laptop instead.
here is i get doing - ifconfig
eth0 (wired) has been assigned DHCP address. but the wlan0 seems like it is up but not Running.Code: Select all
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.0.78 netmask 255.255.255.0 broadcast 192.168.0.255 inet6 fe80::xxx:xxxx:xxxx:xxx prefixlen 64 scopeid 0x20<link> ether b8:27:eb:xx:xx:xx txqueuelen 1000 (Ethernet) RX packets 9754 bytes 11079023 (10.5 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 7783 bytes 898560 (877.5 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 9 bytes 524 (524.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 9 bytes 524 (524.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 wlan0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 ether b8:27:eb:xx:xx:xx txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
on the GUI - No APs found - scanning...
i update the firm-ware too.
sudo rpi-update
Code: Select all
sudo apt update
sudo apt full-upgrade