Linux
- n Remote Access
- n Raspberry Pi 3
- n Mac OSX
- Dr. John Yoon
C
College
YBERSECURITY
Linux on Raspberry Pi 3 on Mac OSX M ercy C ollege C YBERSECURITY - - PowerPoint PPT Presentation
on Remote Access Linux on Raspberry Pi 3 on Mac OSX M ercy C ollege C YBERSECURITY Dr. John Yoon Remote Accesses For security reason VPN Putty VPN Download for Windows From:
YBERSECURITY
https://supportcenter.checkpoint.com/supportcen ter/portal/user/anon/page/default.psml/media- type/html?action=portlets.DCFileAction&eventSu bmit_doGetdcdetails=&fileid=55515
https://support.apple.com/kb/PH22247?locale=en_US&viewlocale=en_US
images/mac.md
This works well
upgrade;
sudo apt-get update sudo apt-get upgrade sudo service NetworkManager restart
Step1:
ifconfig wlan0 down ifconfig wlan0 up
Step2: create wireless config file:
sudo vi /etc/network/interfaces.d/wlan0 Note: I tried without sudo but it would not let me save the changes
Step3: add the following content
auto wlan0 iface wlan0 inet dhcp wpa-essid WIRELESSSSID wpa-psk WIRELESSPASSWORD
Step4: reboot
Step2: create wireless config file:
sudo vi /etc/wpa_supplicant/wpa_supplicant.conf Note: I tried without sudo but it would not let me save the changes
Step3: add the following content
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="network_one_here" psk="wpa_password" id_str="home" } network={ ssid="network_two_here" psk="wpa_password" id_str="work" }
Step4: reboot
want to install a chrome browser
sudo apt-get install chromium-browser chromium-browser