목록LINUX (6)
NewGen
* 파일검색. > 예를들어 version이라는 단어를 포함하는 파일을 모두 검색. $ find ./ -name "version*" * 문자열 포함 파일찾기 > 예를들어 Multi라는 문자열을 포함하는 파일을 검색. grep -r "Multi" ./*
Shared folder was caused permission denied on CentOS of Samba connection After samba on centOS. All configuration is completed but can't connect to shared folder. The error is "Permission Denied" The solution was this.. roor# chcon -t samba_share_t /shared_folder_path Just it need in my case. Thanks and have a happy day.
1. qt-everywhere.... 4.8 을 다운로드 받는다. https://download.qt.io/archive/qt/4.8/4.8.5/ Index of /archive/qt/4.8/4.8.5 download.qt.io 2.configure 작업. ./configure --prefix=/path/to/install/Qt/Qt4.8.5_x64 -opensource -confirm-license -release -developer-build -multimedia -webkit -svg 3. make && make install 하면 끝.
2019-03-14 linux Serial Port Check and Coding -check device : cat /proc/tty/driver/serial Devices is detected like below pic.There are assigned physically. 5:~ : not real -check kernel driver : dmesg | grep tty -check port : setserial -a /dev/tty0setserial is not default program.install this and try again after install,check again.. -use stty command : stty -F /dev/ttyS3 -use stty commane and se..
드라이버 개발 혹은 usb 장치 개발 후lsusb 했을때 VID,PID 안보여서 추가해야 할 경우 제조사 및 상품코드가 변경된 관계로ㅡ lsusb 시 1111:22ff 로만 검색되며, 자신의 회사명, 제조사 명 및 디스크립션은 더이상 보여지지 않습니다. 이 부분은 다음과 같이 변경 후 확인 가능 합니다. root권한으로 /var/lib/usbutils/usb.ids 파일에상단부분에 #COMPANY-ProductName1c8a COMPANY3a2f COMPANY-PRODUCT00001 추가 후 저장, 프린터 USB 연결 해제 후 다시 연결 후, lsusb 하시면 아래와 같이 정상적으로 보여집니다.
블루투스 마우스 연결문제 블루투스 마우스를 사용하다가,한동안 놓아두면, 슬립모드 혹은 절전 모드로 진입하게 됩니다. 요때 , 리눅스에서 다시 연결이 잘 안되는 부분이 있더라고요. 모든 배포판 리눅스가 그런건 아니에요. 우분투 16.04 사용중인데요. 그냥 이래저래 대처방법을 찾아서 써 봅니다. 1. after resuming, I tried stopping and restarting bluetooth via rmmod btusb/modprobe usb and sudo /etc/init.d/bluetooth stop and /etc/init.d/bluetooth stop/start2. adding a script 10_bluetooth to /etc/pm/sleep.d/ with contents #!/bi..