# Command line
$ ssh <유저명>
@HostName
-p
<포트 번호>
-i
<비밀키의 풀패스>
==
# ~/.ssh/config
Host <별명>
HostName <IP Address or Host name>
Port <포트 번호>
User <유저명>
IdentityFile <비밀키의 풀패스>
참고
https://dobest.io/ssh-without-password/
# Command line
$ ssh <유저명>
@HostName
-p
<포트 번호>
-i
<비밀키의 풀패스>
==
# ~/.ssh/config
Host <별명>
HostName <IP Address or Host name>
Port <포트 번호>
User <유저명>
IdentityFile <비밀키의 풀패스>
$ git clone https://github.com/nfc-tools/libnfc.git $ cd libnfc $ git checkout libnfc-1.7.1 $ git clean -d -f -x $ git remote|grep -q anonscm||git remote add anonscm git://anonscm.debian.org/collab-maint/libnfc.git $ git fetch anonscm $ git checkout remotes/anonscm/master debian $ git reset $ dpkg-buildpackage -uc -us -b
$ sudo dpkg -i ../libnfc*.deb
Problem
--------------------------------------------------------------------------------
$ sudo nfc-list nfc-list uses libnfc libnfc-1.7.1-12-gb978c45 error libnfc.driver.pn53x_usb Unable to set USB configuration (Device or resource busy) No NFC device found.
$ dmesg | tail
[1400911.505643] usb 2-1.4: new full-speed USB device number 7 using ehci-pci [1400911.637956] usb 2-1.4: New USB device found, idVendor=04e6, idProduct=5591 [1400911.637961] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [1400911.637964] usb 2-1.4: Product: SCL3711-NFC&RW [1400911.637967] usb 2-1.4: Manufacturer: SCM Micro [1400911.641239] pn533 2-1.4:1.0: NFC: NXP PN533 firmware ver 2.7 now attached [1401061.395200] usb 2-1.4: usbfs: interface 0 claimed by pn533 while 'nfc-list' sets config #1
--------------------------------------------------------------------------------Solution--------------------------------------------------------------------------------
restart or unplug the device, unload modules (sudo modprobe -r pn533 nfc), then re-plug the device.
$ nfc-list nfc-list uses libnfc libnfc-1.7.1-12-gb978c45 error libnfc.driver.pn53x_usb Unable to set USB configuration (Operation not permitted) No NFC device found. $ sudo nfc-list nfc-list uses libnfc libnfc-1.7.1-12-gb978c45 NFC device: SCM Micro / SCL3711-NFC&RW opened
--------------------------------------------------------------------------------
참고http://nfc-tools.org/index.php?title=Libnfc#Debian_.2F_Ubuntu
ping 을 하면 권한이 없다고 나오는 경우가 있다.
$ ping localhost
socket: Permission denied
aid_inet 그룹에 속해야 소켓을 사용할 수 있다.
# groupadd -g 3003 aid_inet # /etc/group 에 aid_inet 그룹이 없으면 추가
# usermod -a -G aid_inet 사용자