Skip to content

Instantly share code, notes, and snippets.

View Muhammad-Yunus's full-sized avatar
:octocat:
Working from home

Muhammad Yunus Muhammad-Yunus

:octocat:
Working from home
View GitHub Profile
@Muhammad-Yunus
Muhammad-Yunus / installGStreamer-1.0.sh
Created September 7, 2021 00:35 — forked from jetsonhacks/installGStreamer-1.0.sh
Install Gstreamer 1.0 on the NVIDIA Jetson TK1
#!/bin/sh
# Install Gstreamer 1.0 on the NVIDIA Jetson TK1
apt-get install gstreamer1.0-tools gstreamer1.0-alsa \
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
gstreamer1.0-plugins-ugly gstreamer1.0-plugins-bad gstreamer1.0-libav -y
@Muhammad-Yunus
Muhammad-Yunus / check_cuda_cudnn.md
Created July 25, 2021 03:24 — forked from Jongbhin/check_cuda_cudnn.md
[Cuda cudnn version check] #cuda #cudnn #nvidia

To check nvidia driver

modinfo nvidia

To check cuda version

cat /usr/local/cuda/version.txt
@Muhammad-Yunus
Muhammad-Yunus / build_opencv.sh
Created July 9, 2021 08:46 — forked from gustavsl/build_opencv.sh
Build and install OpenCV 3.4.2 on the Apalis TK1/Jetson TK1
#!/bin/bash
echo "This script will build and install OpenCV 3.4.2 with CUDA support on the TK1"
echo "Installing dependencies..."
sudo apt-get update
sudo apt-get install -y \
cmake \
libglew-dev \
libtiff5-dev \