아무튼 다 뽑고 재도 1.6kg 정도가 한계인데 더 줄일 방법이 없을려나 -_-
일단 mySSD는 사용이 가능한것을 확인하였고
HDD를 빼더라도 SD 메모리가 있으니 (아차! SDHC 되는지는 확인 못했네 -_-)
8GB SSD + 8GB SD 이렇게 나가도 썩 나쁘진 않은 Diskless 노트북이 가능할듯 한데..
쩝!
---
집에와서 해보니
HDD 없이 부팅을 하면 이상하게 오래 걸리는 문제가 발생 -_-
그리고 SSD 역시 생각보다 느려서 못써먹겠는 문제 발생(무슨 업데이트 한번하면 하세월 ㅠ.ㅠ)
아무튼 HDD 없이 부팅이 너무 느린 문제로 인해 이래저래 SSD를 구매한 목적이 사라졌다
---
---
집에와서 설치하는데 뻥좀 쳐서 1시간(못해도 40분 이상 걸린듯, HDD에 하는데 20분도 안걸린거에 비하면 대박..)
한글 언어팩 설치하는데 뻥좀 쳐서 20분 -_-
역시 SSD는 좋은걸 사야하는건가.. 하는 후회가 드는중
아무튼 BIOS 문제인지 HDD를 뽑아버리면 부팅이 한참 걸리는 문제가 발생해서
이래저래 SSD를 산 의미가 전혀 없어졌다 ㅠ.ㅠ
프로그래밍을 하다보면 짜증나는 것 중에 하나가 바로 이넘의 Byte Order이다.
Intel CPU가 Little Endian 이다 보니 Big Endian 과 유사한 비트 스트림의 경우에는
순서를 죄다 뒤집어주어야 한다. (어셈블러로 그냥 이런 명령어 하나 좀 만들어 주지 -_-)
uint32_t htonl(uint32_t hostlong);
uint16_t htons(uint16_t hostshort);
uint32_t ntohl(uint32_t netlong);
uint16_t ntohs(uint16_t netshort);
The htonl() function converts the unsigned integer hostlong from host byte order to network byte order.
The htons() function converts the unsigned short integer hostshort from host byte order to network byte order.
The ntohl() function converts the unsigned integer netlong from network byte order to host byte order.
The ntohs() function converts the unsigned short integer netshort from network byte order to host byte order.
On the i80x86 the host byte order is Least Significant Byte first, whereas the network byte order, as used on the Internet, is Most Significant Byte first.