home.social

Search

788 results for “nayab”

  1. This is the second article in a series focused on the Linux tools I use daily for development and general use.

    nayab.dev/linux/toolkit/daily-

    #Linux #Ubuntu #KDE #NeoVim #AI #LinuxTools #GPT

  2. Parabolic is a Flatpak app designed for downloading audio and video from websites. Essentially, it serves as a front-end for the popular download manager, yt-dlp.

    It supports , , , , , and other 1800 websites.

    App URL:
    flathub.org/apps/org.nickvisio

    Flatpak setup and installation guide:
    fosstodon.org/@nayab/111153015

  3. A series of articles/tutorials explaining the everyday useful Linux commands along with the detailed examples.
    nayab.xyz/book/linux-cli-000-i

  4. In this tutorial, we create squashfs root filesystem, copy kernel, filesystem and dtb to the SD card. We modify U-boot env variables so that the Linux kernel and the filesystem boots from the SD card.
    nayab.xyz/rpi3b-elinux/embedde

  5. Create partitions using fdisk tool for any SD card or USB drive. Build a file system in those partitions. In this tutorial we create two partitions, the first one with fat32 filesystem and the second one with ext4 filesystem.
    nayab.xyz/linux-tools/partitio

  6. #MMRplaylist #Nayabinghi #RootsReggae #Lovers #Crooner #TheVoice #Percussions #Bongos

    Ken Boothe, c'est "The Voice", le crooner incontesté du rocksteady, puis du reggae, depuis la fin des années 50.
    Sur cette vidéo, il avait 70 ans, comme d'ailleurs Cedric Myton de Congos/Inna di Yard.
    Dans la plus pure tradition du reggae "lover".

    Enregistré dans les locaux de Radio Nova lors de la tournée française de "Inna di Yard" à l'automne 2017.

    Image : Nicolas Lartigue
    Son : Emmanuel Baux & Sulivan Clabaut

    video.liberta.vip/w/8TbRQzbYhx

  7. शिक्षा में सुधार
    नायाब सरकार का संकल्प

    - हरियाणा के 1500 स्कूल बनेंगे 'स्मार्ट'
    - इंफ्रास्ट्रक्चर भी किया जाएगा मजबूत

    #NonStopHaryana #BJP4Haryana #NayabSaini #NarendraModiji #BJP4IND #nayabsarkar #Bjym #yuvrajsinghbjp

    @bjpmohanlalbadoli @bjp4haryana @nayabsainiofficial @narendramodi @bjymofficial @jpnaddaofficial @Bjp4india @raajkvohrabjp @bjym4haryana

  8. Haryana Government Loses Majority As 3 Independent MLAs Support Congress

    The three MLAs - Sombir Sangwan, Randhir Gollen and Dharampal Gonder - also said that they have decided to extend support to the Congress during the elections.

    #haryana #HaryanaGovt #BJP #congress #BJPStates #india

    ndtv.com/india-news/3-independ

  9. Today, I presented the b4 tool to the Linux council at our office (talk was geared towards developers only though).

    My colleagues frequently encountered patch corruption issues with mail servers. They were impressed when I introduced the concept of web endpoint submission.

    Thanks to @monsieuricon for such a wonderful tool.

    #b4 #kernel

  10. By default, #Raspberry Pi's #Broadcom Wi-Fi chipsets don't support monitor mode. After researching solutions, I discovered #Nexmon - a project that patches the firmware to enable this feature.

    Following the Nexmon documentation, I successfully enabled monitor mode on my Raspberry Pi 4 running Ubuntu 22.04 Server.

    Official #Github repo: github.com/seemoo-lab/nexmon.g

  11. Parabolic is a by far, best #Flatpak app designed for downloading audio and video from websites. Essentially, it serves as a front-end for the popular download manager, #yt-dlp.

    It supports #YouTube, #Instagram, #Vimeo, #TikTok, #LinkedIn, #hotstar and other 1800 websites.

    App URL:
    https://flathub.org/apps/org.nickvision.tubeconverter

    Flatpak setup and installation guide:
    https://www.embedded.pub/linux/tools/installing-flatpak-app.html

    #Linux #ubuntu #fedora

  12. b4 tool for code contributors:

    The #b4 tool offers features that simplify the process for code contributors submitting patches. Currently, it is increasingly utilized in the #Linux kernel development workflow.

    Below are the commands to install and use it for the development workflow for developers.

    # Installing on Debian based Linux systems
    sudo apt install b4
    
    # Creating separate work branch
    b4 prep -n <patch_series_name> -f <commit_id>
    
    # Preparing the cover letter
    b4 prep --edit-cover
    
    # Retrieve recipients' email addresses
    b4 prep --auto-to-cc
    
    # Set the email subject prefixes
    b4 prep --set-prefixes "RFC RESEND"
    
    # Verify the patch before sending
    b4 send -o /tmp/presend
    b4 send --reflect
    
    # Sending the patch
    b4 send
    b4 send --resend v2
    
    # Updating the commit with review tags
    b4 trailers -u
    

    Detailed explanation:

    References:

    #debian #opensource

  13. Creating Sandboxes with systemd-nspawn and debootstrap

    Exploring new #Linux features is exciting, but it can be risky! I sometimes break my system while testing packages. To avoid this, I recently tried #systemd-nspawn with #debootstrap - it's a lightweight #container that works well for isolated testing.

    #Debian users, this guide shows you how to get systemd-#nspawn up and running, no fuss.

    Installing the packages

    First things first, we need to install two packages: systemd-container and debootstrap:

    sudo apt install systemd-container debootstrap
    

    debootstrap lets you spin up a lightweight Debian right on your host, and systemd-container utilites such as systemd-nspawn and machinectl manage the OS in a lightweight container.

    Create a Debian virtual machine

    Let's generate a minimal Debian image called debian-testing with the following command:

    sudo debootstrap --include=systemd,dbus stable /var/lib/machines/debian-testing
    

    To verify successful installation, run machinectl list-images. Look for 'debian-testing' in the output.

    Logging into virtual machine

    Use the following command to start the debian-testing container.

    sudo systemd-nspawn -D /var/lib/machines/debian-testing
    

    Since you're now inside your virtual machine, let's set a password for the root user. This will come in handy when you want to manage the container using machinectl.

    To swiftly terminate the container, press the Ctrl+] key combination three times in quick succession while inside the container.

    Running a graphical application in vm

    To run graphical apps like Chromium within the container, we need to set up display sharing. First, gracefully shut down the container. Then, use this command to establish the connection:

    xhost local:; sudo systemd-nspawn -E DISPLAY="$DISPLAY" -D /var/lib/machines/debian-testing
    

    Now that you're logged in, it's time to fire up Chromium! Just type the following commands to install and open it:

    apt update
    apt install chromium
    chromium --no-sandbox
    

    References

  14. Explore ethical, user-friendly, and privacy-conscious alternatives to popular software choices. 🌐💻 👇

    switching.software