Camera Logger Install and Access - IF800
How to install the camera logger debian package and access the log files on the IF800 drone.
Part 1: Download and Install Software
Connecting to the VOXL2 on IF800
Plug ethernet into your computer from drone (can use ethernet to USB converter)
Ensure static IP for ethernet is set within 192.168.144 subnet (ie 192.168.144.69 with netmask 255.255.255.0). See this tutorial for windows.
ssh into VOXL2 –
ssh root@192.168.144.59(password isoelinux123)
Transferring the .deb package to the VOXL2
First, download the .deb package from this link. Make sure to unzip the file to get the debian package.
Option A: Using WinSCP to Transfer the .deb Package
Installing WinSCP
Download and Install WinSCP:
On your separate Windows computer, open a web browser and go to the official WinSCP website: https://winscp.net/
Download the latest stable version of the installer (usually an .exe file).
Run the installer and follow the on-screen instructions to install WinSCP.
Using WinSCP to transfer the package
Launch WinSCP and Connect to the VOXL2:
Open WinSCP on your Windows machine.
In the "Login" dialog box:
File protocol: Select SFTP.
Host name: Enter
192.168.144.59Port number:
22(default for SFTP/SSH)User name:
rootPassword:
oelinux123Click "Login".
If you encounter a "Host Key" warning, click "Yes" to accept the key and proceed.
Transfer the .deb Package:
Once connected, WinSCP will display two panes. The left pane will show the file system of your Windows computer, and the right pane will show the file system of the VOXL2.
In the left pane, navigate to the directory where your .deb package is located (e.g., your Downloads folder).
In the right pane, navigate to a desired destination directory on the VOXL2 (e.g., /home/root/).
Select the
ift-camera-logger_0.0.1_arm64.debfile in the left pane and either drag it to the right pane or right-click and choose "Upload".Confirm the transfer.
Option B: Using scp in CLI (Command Line Interface)
This method can be used from your local Linux/macOS/Windows machine to copy the .deb package to the VOXL2.
Open a Terminal:
You can usually find the terminal application in your applications menu or by pressing Ctrl + Alt + T.
Navigate to the Download Directory (Optional):
If the .deb file is in your Downloads folder, you can navigate there for convenience:
cd ~/DownloadsIf it's in a different directory, replace ~/Downloads with the correct path (e.g.,
cd /path/to/your/deb/file).
Use the scp command to copy the .deb file:
scp ift-camera-logger_0.0.1_arm64.deb root@192.168.144.59:/home/root/Replace
ift-camera-logger_0.0.1_arm64.debwith the actual filename of your Debian package if it's different./home/root/ is the destination directory on the VOXL2 where the package will be copied. You can change this to any other writable directory on the VOXL2.
You will be prompted for the password for
root@192.168.144.59, password isoelinux123
After the transfer is complete, you can then SSH into the VOXL2 and proceed with installing the .deb package.
Install the package
Connect to the VOXL2 (see Connecting to the VOXL2 on the IF800)
ssh root@192.168.144.59pw isoelinux123
Navigate to the correct directory:
If the .deb file is in your Downloads folder, use the following command:
cd ~/Downloads
If it's in a different directory, replace ~/Downloads with the correct path (e.g.,
cd /path/to/your/deb/file).
Install the .deb package using dpkg:
Use
sudo dpkg -ifollowed by the full filename:ie
sudo dpkg -i ift-camera-logger_0.0.1_arm64.deb
Part 2: Accessing Camera Logs
You have two primary methods to check the log files: using WinSCP on your windows computer or using the scp command-line tool with any machine
Option A: WinSCP
Open WinSCP on your Windows machine.
In the "Login" dialog box:
File protocol: Select SFTP.
Host name: Enter
192.168.144.59Port number:
22(default for SFTP/SSH)User name:
rootPassword:
oelinux123Click "Login".
If you encounter a "Host Key" warning, click "Yes" to accept the key and proceed.
Navigate to the Log Directory:
Once connected, WinSCP will display two panes. The right pane will show the file system of your Linux computer.
In the right pane, navigate to
/var/log/ift-camera-logs. You can do this by double-clicking on folders: var -> log -> ift-camera-logs.

Download the .csv files. You will see the .csv files listed in the ift-camera-logs directory.
To download a file, select it in the right pane (Linux side) and either drag it to the left pane (your Windows computer's file system) or right-click and choose "Download".
Choose a destination folder on your Windows computer for the downloaded files.
Option B: Using scp in CLI (Command Line Interface)
This method can be used on any machine as long as it is connected to the VOXL2 (see Connecting to the VOXL2 on the IF800)
To copy all the log files from the drone, open a terminal on your machine and run the following line:
scp -r root@192.168.144.59:/var/log/ift-camera-logs/ ~/Documents/Logs/
Replace ~/Documents/Logs/ with the desired local directory where you want to save the file.
You will be prompted for the password for
root@192.168.144.59: oelinux123
To copy a specific file, use the following command:
scp root@192.168.144.59:/var/log/ift-camera-logs/your_log_file.csv ~/Documents/Logs/
Replace your_log_file.csv with the actual name of the log file you want to copy.
You will be prompted for the password for
root@192.168.144.59, password isoelinux123
To list files on the drone first (optional):
If you're unsure of the exact filenames, you can first SSH into the IF800 to list them:
ssh root@192.168.144.59ls /var/log/ift-camera-logs
Remember to replace placeholders like your_log_file.csv and ~/Documents/Logs/ with your actual filenames and desired local paths.
Last updated