This is the the doc for wifi multi-role on LinkIt Smart 7688 temporary solution.
-
Factory reset or configure 7688(or 7688 Duo)'s Wi-Fi to AP mode.
-
SSH login to 7688(or 7688 Duo)'s shell.
| #!/bin/sh | |
| # This shell script is made by SyneArt <[email protected]> | |
| ####################################### | |
| # BUILD WIRESHARK ON UBUNTU OR DEBIAN # | |
| ####################################### | |
| # | THIS SCRIPT IS TESTED CORRECTLY ON | | |
| # |----------------------------------------------------------| | |
| # | OS | Wireshark | Test | Last test | | |
| # |--------------------|----------------|------|-------------| |
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| METHOD:PUBLISH | |
| CALSCALE:GREGORIAN | |
| PRODID:Jed | |
| BEGIN:VTIMEZONE | |
| TZID:Taipei | |
| END:VTIMEZONE | |
| BEGIN:VEVENT | |
| DESCRIPTION:我們決定要結婚了 (還籌備了好陣子)\n小小婚禮希望大家來參與\n讓我們與你/妳分享喜悅 ☺ |
| #include <stdio.h> | |
| int main(int argc, char *argv[]) { | |
| FILE *fileptr; | |
| char *buffer; | |
| long filelen; | |
| fileptr = fopen(argv[1], "rb"); // Open the file in binary mode | |
| fseek(fileptr, 0, SEEK_END); // Jump to the end of the file | |
| filelen = ftell(fileptr); // Get the current byte offset in the file |
| ###################################### | |
| # INSTALL OPENCV ON UBUNTU OR DEBIAN # | |
| ###################################### | |
| # Use below command to install OpenCV 3.2 with Contrib at Ubuntu or Debian on your own operating system. | |
| # wget -O - https://gist.githubusercontent.com/syneart/3e6bb68de8b6390d2eb18bff67767dcb/raw/OpenCV3.2withContrib.sh | bash | |
| # | THIS SCRIPT IS TESTED CORRECTLY ON | | |
| # |-----------------------------------------------------------| | |
| # | OS | OpenCV | CUDA | Test | Last test | |
| @ECHO OFF&mode con cols=15 lines=1 | |
| SET TMP_FILE=%tmp%\cm.bat | |
| SET FILE=%1 | |
| SET FILE_EXT=%~x1 | |
| IF NOT "%~s0"=="%TMP_FILE%" ( | |
| COPY %0 %TMP_FILE% 1>nul 2>&1 | |
| start/min %TMP_FILE% %FILE% | |
| EXIT | |
| ) |
| #!/bin/bash | |
| clear | |
| echo "Info: 修改檔案需要權限, 請先輸入密碼 .." | |
| sudo -v | |
| if [ $? -eq 1 ]; then | |
| clear | |
| echo "Error: 未輸入正確密碼, 無法繼續執行" | |
| sleep 3 | |
| exit 0 | |
| fi |
| #!/bin/bash | |
| clear | |
| echo "Info: 移除和更新核心檔案需要權限, 請先輸入密碼 .." | |
| sudo -v | |
| if [ $? -eq 1 ]; then | |
| clear | |
| echo "Error: 未輸入正確密碼, 無法繼續執行" | |
| sleep 3 | |
| exit 0 | |
| fi |
| #!/bin/bash | |
| clear | |
| echo "Please input the iso file in here [Nothing input will unmount]" | |
| read -p ">> " srcinputfile | |
| clear | |
| mntPath=/media/isofileceh | |
| if ["$srcinputfile" == ""] 2>/dev/null ; then | |
| sudo umount "$mntPath" 1>/dev/null 2>/dev/null | |
| sudo rmdir "$mntPath" 1>/dev/null 2>/dev/null | |
| echo The iso file is unmounted ! |