Skip to content
Jascha edited this page Aug 4, 2024 · 4 revisions

Welcome to the osint-vm wiki! More dedicated documentation to come.

How do you change screen resolution?

Changing Resolution

  1. Open arandr:

    • Launch from your application menu, or
    • Run arandr in the terminal
  2. In the arandr window:

    • Each connected display appears as a rectangle
    • Drag displays to arrange their positions
  3. To change resolution:

    • Right-click on a display
    • Select "Resolution"
    • Choose desired resolution from the list
  4. Apply changes:

    • Click "Apply" to test the new configuration
    • Click "OK" to confirm
  5. Save layout (optional):

    • Go to Layout > Save As
    • Choose a filename and location
    • The layout is saved as a shell script

Tips

  • Use the "Outputs" menu to enable/disable displays
  • Rotate displays via the right-click menu
  • Reset to default with Layout > Reset

Troubleshooting

If issues occur, close arandr and run xrandr in the terminal to verify available modes and current settings.

How do I install Kali packages?

The kali-rolling apt repos are already added to osint-vm, just do sudo apt update sudo apt install <kali-package>

How do I configure Ollama to allow internal network access?

  1. On the Ollama host machine:

    Edit the Ollama configuration file:

    sudo nano /etc/ollama/daemon.json
    

    Add or modify these lines:

    {
      "listen": "0.0.0.0:11434"
    }
  2. Restart the Ollama service:

    sudo systemctl restart ollama
    
  3. Configure firewall (if active) to allow port 11434:

    sudo ufw allow 11434/tcp
    
  4. On the client machine:

    Set the OLLAMA_HOST environment variable:

    export OLLAMA_HOST=http://<ollama-host-ip>:11434
    
  5. Test the connection from the client:

    ollama list
    

How to I verify the .sig file?

Install signify-openbsd package. Example: signify-openbsd -V -p inforensics.pub -x inforensics-osint-vm-beta-v01.2.sig

Clone this wiki locally