![article thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbhCKhP%2FbtsMfl4boeX%2F8gcRZbizDXVSxPixx4h3wK%2Fimg.png)
vmware에서 ubuntu를 설치하면 vm-tools를 설치하라고 알림 문구가 뜬다. 보통 드라이버 cd를 마운트하고 압축풀어서 설치하게 되는데, 이 방법이 아주 별로다. 왜냐하면 제대로 안되는 경우가 있어서 그렇다.이제는 드라이버를 마운트해서 설치할 필요 없다. 그냥 apt로 설치해버리면 끝.$sudo apt update$sudo apt upgrade$sudo apt install open-vm-tools-desktop$sudo reboot
![article thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fb09SvI%2FbtsMfmhKUq5%2FnZ5OKzI6iDkcLo9qdjxKTk%2Fimg.png)
Virtual Machine Settings - OptionShared FoldersAlways enabledAdd - Host path 설정, 이름 설정 - Enable this sharevmware-hgfsclient 명령어로 공유 폴더 확인vi /etc/fstab 으로 vmhgfs-fuse /mnt/hgfs fuse defaults,allow_other 0 0 입력reboot그래도 안뜨면 마운트 시켜야함/usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs/ -o subtype=vmhgfs-fuse,allow_otherorsudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other
![article thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcXc3Pa%2FbtsMemwgnGJ%2Fr6HhBTXJcFllfqzeEktsT1%2Fimg.png)
VMWARE Workstation does not support nested virtualization on this host.Module 'HV' power on failed.Failed to start the virtual machine.1. 시작 - gpedit (로컬 그룹 정책 편집기)2. 로컬 컴퓨터 정책 - 컴퓨터 구성 - 관리 템플릿 - 시스템 - Device Guard3. 가상화 기반 보안 켜기 - 사용 안함4. powershell 관리자 권한으로 실행bcdedit /set hypervisorlaunchtype offDisable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All5. 재부팅
![article thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbKkrGU%2FbtsMf7YCT82%2FRQUNb2hvPg0hokKqWUKX50%2Fimg.png)
sudo apt updae; sudo apt install gnome-tweaks-> tweaks - Fonts - Scaling Factor = 알아서 맞추기 (1.8?)
![article thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fqa4Ts%2FbtsLUYOzAlO%2FA5zSWKctCk2YIkFYclaFtk%2Fimg.jpg)
우분투 개발 환경 | PX4 Guide (main) docs.px4.ioThis include : Gazebo, Gazebo Classic, jMAVSim, Pixhawk and other NuttX-based hardwareSimulation and NuttX (Pixhawk) Targetsgit clone https://github.com/PX4/PX4-Autopilot.git --recursivebash ./PX4-Autopilot/Tools/setup/ubuntu.sh최초 빌드 (jMAVSim 시뮬레이션 활용)cd PX4-Autopilotmake px4_sitl jmavsimgazebo-classicmake px4_sitl gazebo-classic HITLpx4 autopilot 설치하고 QGC..
한 단계, 한 단계 코딩하다 보면 설정 파일이 오류날 때가 있다. 특히.. 다음 단계로 넘어갈 때... 리사이클러뷰를 구현하고 다음 단계인 HTTP 통신 구현에서 설정 파일을 잘못 만졌는지 빌드가 되지 않는다.ㅠㅠ 그래도 다행히 리사이클러뷰까지 구현한 내용을 Git으로 저장해서 다행이지.. git pull 덮어쓰기 # 마스터 브랜치를 로컬에 덮어 씌움 git fetch --all git reset --hard origin/master # 제일 간단하게 덮어쓸 수 있는 방법! git reset --hard HEAD git pull master가 아닌 다른 branch로 덮어쓰기 # 는 가져와서 덮어쓸 브랜치 git fetch --all git reset --hard origin/ 다른 브랜치에 백업 후 덮..
![article thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fo1ZmN%2FbtrF4wjM3cR%2FV0mqkyJpYA1BKEGWhT2P71%2Fimg.png)
플러터에 에뮬레이터 연결하려다 실패했다. 그 이유는.. 일단 있지도 않은 에뮬레이터를 연결하려 했다. 안드로이드 스튜디오를 열어서 SDK Tools에 들어간 다음 'HAXM Installer'를 설치해줘야 한다고 한다. 에뮬레이터에서 픽셀폰 생성을 했는데 실행이 안되는 것이다. 알아 봤더니 한글 경로가 또 문제였다. 이 경우 환경변수를 설정해줘야 한다. win키를 눌러 '시스템 환경 변수 편집'을 열어준다. 그 후 사용자 변수를 추가해준다. 이렇게 해준 후 C드라이브에 Android\AndroidAVD 폴더를 만들어 주면, 이제 에뮬레이터는 거기에 생성될 것이다.
![article thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FdXiauj%2FbtrFZfdeGAd%2FjBQk983wqdlwghoPcYD711%2Fimg.png)
https://flutter-ko.dev/docs/get-started/install 설치 Flutter를 설치할 운영 체제를 선택해주세요:{{site.alert.note}} **Are you on Chrome OS?** If so, see the official [Chrome OS Flutter installation docs!](/docs/get-started/install/chromeos){{site.alert.end}} flutter-ko.dev 윈도우 버전으로 다운받기. 압축을 풀고 원하는 위치에 넣기. 기본적으로 'Users\본인계정' 으로 설정되는데, 나의 경우 계정명이 한글이라서 그냥 C드라이브 위치에 두었다. C:\flutter CMD를 열어서 'flutter doctor'를 쳐보면 플러..