You can do it easily:
mkdir /root/.config/wireshark
echo "cflow.ipfix.ports: 4739,4740" > /root/.config/wireshark/preferences
You can do it easily:
mkdir /root/.config/wireshark
echo "cflow.ipfix.ports: 4739,4740" > /root/.config/wireshark/preferences
I have an external sound card Focusrite for my microphone and headphones but I use USB soundbar for output and all the time I need to switch between them.
And I'm happy to share this nice widget for Gnome shell.
We have got great tool to save us: asciicast2movie.
I'll use Ubuntu 20.04 for my tests.
Install dependencies:
pip install moviepy pyte
Install fonts:
sudo apt-get install -y fonts-symbola fonts-droid-fallback fonts-dejavu
Start conversion:
python3 asciicast2movie.py ~/Downloads/community_installation.cast ~/Downloads/community_installation.mp4
Unfortunately, it produced quite low res video :(
To do it you will need to install:
sudo apt install -y wine-binfmt
And then you can add wine as option in "open with" dialog:
sudo cp /usr/share/doc/wine/examples/wine.desktop /usr/share/applications
In addition to that you can call exe apps normal way after setting executable bit:
~/Documents/winbox64.exe
I've used this guide, it's very simple and you just need to run wine-cfg and select DPI value which works for you.
You can use Mikrotik's official guide for start. To use all gsutil commands from VM in GCE you will need to set following permissions for it:
gsutil mb gs://cloud-hosted-router-imagesCreating gs://cloud-hosted-router-images/...ServiceException: 409 A Cloud Storage bucket named 'cloud-hosted-router-images' already exists. Try another name. Bucket names must be globally unique across all Google Cloud projects, including those outside of your organization.
gcloud compute instances create "chr-1" --zone "europe-north1-a" --machine-type "e2-medium" --image-family=cloud-hosted-router
To debug issues with image itself you can use serial output:
Unfortunately, createrepo command which can create RPM repositories was removed in Ubuntu 24.04 LTS.
Let's try building C based version of createrepo from: https://github.com/rpm-software-management/createrepo_c
First of all, install all dependencies:
sudo apt install -y libcurl4-openssl-dev libbz2-dev libxml2-dev libssl-dev zlib1g-dev pkg-config libglib2.0-dev liblzma-dev libsqlite3-dev librpm-dev libzstd-dev python3-dev cmake
Then build it:
mkdir createrepo_folder; cd createrepo_folder
git clone https://github.com/rpm-software-management/createrepo_c
cd createrepo_c;
mkdir build
cd build
cmake .. -DWITH_ZCHUNK=NO -DWITH_LIBMODULEMD=NO
make -j
cp src/createrepo_c /opt/createrepo
cp src/libcreaterepo_c.so /opt
cp src/libcreaterepo_c.so.1 /opt
cp src/libcreaterepo_c.so.1.1.4 /opt
Then we need to override RPATH to use libraries from /opt:
sudo apt install chrpath
chrpath /opt/createrepo -r /opt
Do test run:
/opt/createrepo /var/public_repositories/Directory walk startedDirectory walk done - 18 packagesTemporary output repo path: /var/public_repositories/.repodata/Preparing sqlite DBsPool started (with 5 workers)Pool finished
It's actually pretty simple process, just run this in Terminal:
fwupdmgr update
Output may look the following way:
Upgrade available for Thunderbolt Controller from 42.00 to 59.00
Thunderbolt Controller and all connected devices may not be usable while updating. Continue with update? [Y|n]: Y
Downloading 59.00 for Thunderbolt Controller...
Fetching firmware https://fwupd.org/downloads/0ec44a6ae2c11843d80147271d99901d41a7489ff29444c820c918e46a8eac25-Lenovo-ThinkPad-X1E-Gen2-Thunderbolt-Firmware-N2OTG12W-Secured.cab
Downloading… [***************************************] Less than one minute remaining…
Decompressing… [***************************************]
Authenticating… [***************************************]
Updating Thunderbolt Controller… ]
Restarting device… [***************************************]
Successfully installed firmware
In this guide, I'll describe how you could build kernel for Ubuntu 14.04 with CONFIG_NET_DROP_MONITOR option. It's pretty standard reference copy-n-pasted from official manual of Ubuntu with very small changes.
If you got this error:
sudo ./dropwatch Unable to find NET_DM family, dropwatch can't work Cleaning up on socket creation error
Then it means that your kernel does not have CONFIG_NET_DROP_MONITOR option compiled.
I use Ubuntu 14.04 and could provide guide how you could rebuild kernel with this option.
Rebuild kernel:
apt-get source linux-image-$(uname -r)
Install build deps:
sudo apt-get build-dep linux-image-$(uname -r) libncurses5-dev
Start process:
cd linux-lts-vivid-3.19.0
Change options:
chmod a+x debian/rules chmod a+x debian/scripts/* chmod a+x debian/scripts/misc/* fakeroot debian/rules cleanfakeroot debian/rules editconfigs # you need to go through each (Y, Exit, Y, Exit..) or get a complaint about config later
Then specify it:
Do you want to edit config: amd64/config.flavour.generic? [Y/n] Y
Required option you could find here:
Networking support - Networking options - Network testing - Network packet drop alerting service - [M]
Build it:
fakeroot debian/rules binary-headers binary-generic binary-perarch
Check it:
cat ./debian.vivid/config/amd64/config.flavour.generic # # Config options for config.flavour.generic automatically generated by splitconfig.pl # CONFIG_HZ=250 # CONFIG_HZ_1000 is not set CONFIG_HZ_250=y # CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set CONFIG_NET_DROP_MONITOR=m # CONFIG_PREEMPT is not setCONFIG_PREEMPT_VOLUNTARY=y
And finally load it when you restart to new kernel:
modprobe drop_monitor
This tool will show place where Linux kernel drops/discards UDP packets.
sudo apt-get install -y libnl-3-dev libnl-genl-3-dev libreadline-dev binutils-dev
Then build it:
git clone https://github.com/nhorman/dropwatch.git
cd dropwatch
./autogen.sh
./configure
make
And finally run tool:
./dropwatch -l kas
It's pretty easy, you need to create this folder:
sudo mkdir /etc/X11/xorg.conf.d
And then you need to create following file /etc/X11/xorg.conf.d/00-keyboard.conf with this content:
Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "us,ru"
Option "XkbModel" "pc104"
Option "XkbOptions" "grp:caps_toggle"
EndSection
To apply changes you need to reboot your PC or laptop. Tools like Tweak Gnome will not help because for some reasons in 20.04 Gnome resets configuration of custom keyboard layout when it set to Caps Lock.
configure
set interfaces ethernet eth0 address dhcp
commit
s3cmd --disable-multipart --host=storage.googleapis.com --host-bucket="%(bucket).storage.googleapis.com" --access_key XXX --secret_key XXX filenaname put fastnetmon-1.1.6-1.el8.x86_64.rpm put s3://bucket_name/file_pathdisable-multipart flag is important! It will return following error without it:
ERROR: S3 error: 400 (InvalidArgument): Invalid argument.
sudo apt-get install -y r8168-dkmsМоя выдача lspci:
22:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)