본문 바로가기
반응형

전체 글193

[Flutter] apk build command (debug, release available) (apk 빌드 명령(debug, release 가능)) [Flutter] apk build command (debug, release available) apk 빌드 명령(debug, release 가능) - build for debug flutter build apk --debug --target-platform=android-arm64 - build for release flutter build apk --release --target-platform=android-arm64 2022. 8. 31.
[Linux] How to fix NFS mount Permission denied (NFS mount Permission denied 해결 방법) [Linux] How to fix NFS mount Permission denied (NFS mount Permission denied 해결 방법) 1. vi /etc/exports 마운트할 디렉토리 경로, 설정이 올바르게 되어있는지 확인 ex) /home/nfs *(rw, root_squash) (root_squash: 클라이언트도 서버의 마운트 디렉토리 내에서 root 권한 가짐) (Check if the directory path to mount and settings are correct ex) /home/nfs *(rw, root_squash) (root_squash: the client also has root privileges within the server's mount directory.. 2022. 8. 30.
[ubuntu][bash] How to do when tab autocomplete expansion does not work (tab 자동완성 확장이 안될 때 방법) [Solved][ubuntu][bash]How to do when tab autocomplete expansion does not work(tab 자동완성 확장이 안될 때 방법)  step 1. sudo apt-get install bash-completion step 2. sudo vi /root/.bashrc  step 3. 아래 코드 부분의 주석을 제거 (Uncomment the below code part) if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion step 4. reboot 2022. 8. 30.
[flutter_email_sender] How to implement email sending in a flutter project (플러터 프로젝트에서 이메일 보내기 구현하는 방법) flutter_email_senderHow to implement email sending in a flutter project(플러터 프로젝트에서 이메일 보내기 구현하는 방법) 우선 프로젝트에 flutter_email_sender 라이브러리를 설치한다. (First of all, the flutter email _ sender to install the library.)dependencies: flutter_email_sender: ^5.1.0 소스코드에서는 아래와 같이 라이브러리를 import한다. (Source code import the library as follows.)import 'package:flutter_email_sender/flutter_email_sender.dart';  이메일.. 2022. 8. 29.
반응형