Linux - General: Difference between revisions

From Smithnet Wiki
Jump to navigation Jump to search
Line 15: Line 15:
* install package: onedrive
* install package: onedrive


Authorization:
onedrive


and follow link to generate a login link to give back to onedrive.
* Storage in ~/OneDrive
* Configuration in ~/.config/onedrive
Show config:
onedrive --display-config
Dry run Synchronise:
onedrive --synchronize --dry-run --verbose
Synchronise:
onedrive --synchronize
Sync file list in ~/.config/ondrive/sync_list like:
# Demo
/Security/*.kdbx
!/Documents/Unwanted
/Documents
!/Temp
Then test:
onedrive --synchronize --dry-run --verbose
See also [https://github.com/abraunegg/onedrive/blob/master/docs/USAGE.md here]


== Grub ==
== Grub ==

Revision as of 06:57, 26 February 2023

Cockpit

dnf install cockpit
systemctl enable --now cockpit.socket
systemctl start --now cockpit.socket
firewall-cmd  --permanent --add-service=cockpit

Gnome

gsettings set org.gnome.desktop.wm.preferences button-layout ":minimize,maximize,close"

OneDrive

Microsoft OneDrive sync:

  • install package: onedrive

Authorization:

onedrive

and follow link to generate a login link to give back to onedrive.

  • Storage in ~/OneDrive
  • Configuration in ~/.config/onedrive

Show config:

onedrive --display-config

Dry run Synchronise:

onedrive --synchronize --dry-run --verbose

Synchronise:

onedrive --synchronize

Sync file list in ~/.config/ondrive/sync_list like:

# Demo
/Security/*.kdbx
!/Documents/Unwanted
/Documents
!/Temp

Then test:

onedrive --synchronize --dry-run --verbose

See also here

Grub

In /etc/default/grub, add to GRUB_CMDLINE_LINUX (GRUB_CMDLINE_XEN):

  • dom0_mem=max:1024M dom0_max_vcpus=1
grub2-mkconfig -o /boot/grub2/grub.cfg

systemd

Service Control

Basic use:

systemctl start something
systemctl stop something
systemctl enable something
systemctl disable something

Service definition files in:

  • /usr/lib/systemd/system

Deinitions with "@" names have argument passed as parameter, such as:

systemctl status clamd@scan

Show all defintions:

systemctl list-unit-files --type=service

SELinux

getenforce
setenforce 1
setenforce Enforcing
sestatus

Boolean flags:

getsebool -a
setsebool -P httpd_read_user_content

Swap

Add filesystem swap:

fallocate -l 1G /somepath/swap
chmod 600 /somepath/swap
mkswap /somepath/swap
swapon /somepath/swap

Check:

swapon
NAME              TYPE       SIZE   USED PRIO
/dev/sda2         partition    8G 219.8M   -2
/somepath/swap    file      1024M     0B   -3

And then add a line to /etc/fstab to ensure it is enabled at boot:

/somepath/swap                         swap                    swap    defaults         0 0

Timezone

Show available zones:

timedatectl list-timezones

Set and check:

timedatectl set-timezone timedatectl
timedatectl

UDEV

Rules files in /etc/udev/rules.d

Display device attributes with:

udevadm info --query=env --name=/dev/sdg

See also: Udev Rules