Articles by Benoît Ganne

  1. Force NetworkManager to ignore an interface

    Continuing my Bookmarks serie, here is how to tell NetworkManager to not manage an interface, thank you very much:

    ~# sudo cat >> /etc/NetworkManager/NetworkManager.conf << EOF
    plugins+=keyfile
    [keyfile]
    unmanaged-devices=interface-name:IFNAME
    EOF
    

    Where IFNAME is the interface name. For example:

    unmanaged-devices=interface-name:eth0
    

    Will prevent NetworkManager to manage eth0 …

    Tagged as : NetworkManager
  2. Starting with Android development

    TL;DR

    If you cannot find the gradlew file in your Android project directory, you should be able to build your project with the ant debug command. If you want to use Gradle anyway, you probably need to add --gradle --gradle-version 0.10.0 to your android create project command-line …

    Tagged as : android pebble dogfood

Page 2 / 2