Plug it in
$ lsusb
Bus 005 Device 005: ID 048d:9135 Integrated Technology Express, Inc. Zolid Mini DVB-T Stick
...
$ dmesg | grep fail
[ 7.865077] usb 5-1: firmware: failed to load dvb-usb-it9135-01.fw (-2)
| Metadata-Version: 1.0 | |
| Name: fred_emcee_swig | |
| Version: 1.0 | |
| Summary: UNKNOWN | |
| Home-page: UNKNOWN | |
| Author: UNKNOWN | |
| Author-email: UNKNOWN | |
| License: UNKNOWN | |
| Description: UNKNOWN | |
| Platform: UNKNOWN |
If you install locally without sudo rights, watch out for access to /etc/root. Parts of ROOT will not work but it doesn't show immediately. Set etcdir manually!
swmod setinst [email protected]
export ROOTSYS=$HOME/.local/sw/root/linux-debian-testing-x86_64/5.34.18
swmod ./configure --enable-mathmore --enable-minuit2 --enable-roofit --etcdir=$HOME/local/sw/root/linux-debian-testing-x86_64/5.34.18/etc/root
make
make installBased on this blog.
This guide shows you how to setup emacs to render a README.md very similarly to how github will do it; except it also works offline. There are no dependencies that can't be easily installed via the package manager on ubuntu.
emacs, emacs-goodies-el, and pandoc.~/emacs.d/github-pandoc.css.| // Copyright (c) 2017 Frederik Beaujean ([email protected]) | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: | |
| // The above copyright notice and this permission notice shall be included in all |
| ;; After a part is matched, it is no longer modified | |
| ;; => put catch-all patterns last | |
| ;; https://www.emacswiki.org/emacs/AddKeywords | |
| ;; https://www.emacswiki.org/emacs/RegularExpression | |
| ;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Faces-for-Font-Lock.html#Faces-for-Font-Lock | |
| (font-lock-add-keywords 'markdown-mode | |
| ;; mark each of three groups differently | |
| ;; @section label title | |
| '(("^\\(@section\\) \\(.+?\\) \\(.+?\\)$" | |
| (1 font-lock-constant-face) |
| ;; http://ergoemacs.org/emacs/elisp_syntax_coloring.html | |
| (setq fredmail-highlights | |
| '(("^[ \t]*>>>>>.*$" . 'org-level-5) | |
| ("^[ \t]*>>>>.*$" . 'org-level-4) | |
| ("^[ \t]*>>>.*$" . 'org-level-3) | |
| ("^[ \t]*>>.*$" . 'org-level-2) | |
| ("^[ \t]*>.*$" . 'org-level-1) | |
| ("\\*.*\\*" . 'markdown-bold-face) | |
| )) |
| (defun dotspacemacs/layers () | |
| theming | |
| ) | |
| (defun dotspacemacs/init () | |
| dotspacemacs-themes '(solarized-light) | |
| ) | |
| (defun dotspacemacs/user-init () | |
| (setq theming-modifications | |
| '( | |
| (solarized-light |