mount -t cifs //윈도우 IP/윈도우 공유폴더명 /root/리눅스 마운트 시킬 폴더명 -o username="윈도우 계정",password="윈도우 계정 비밀번호"



예시> 윈도우 공유 폴더 확인





mount -t cifs //192.168.11.17/Share /root/Share -o username="Administrator",password="비밀번호"



<Little Endian , 리틀 엔디안>


>>> struct.pack('<L',0x41424344)

'DCBA'


<Big Endian, 빅 엔디안>


>>> struct.pack('>L',0x41424344)

'ABCD'

+ Recent posts