• 5 Posts
  • 74 Comments
Joined 1 year ago
cake
Cake day: June 1st, 2023

help-circle







  • Google calendar events can be synced through the Apple calendar and at least for me by default have reminders set 30 minutes before. I have my account set up through the mail app, but to check this do the following:

    Go to Settings -> Calendar -> Accounts -> Gmail. Make sure it’s set to sync your calendar. There’s also the ability to add an account here. Then go back to the calendar app and find an event to check if reminders are set.



  • socphoenix@midwest.socialtoLinux@lemmy.mlZFS Swap on Linux
    link
    fedilink
    arrow-up
    3
    arrow-down
    1
    ·
    7 months ago

    You might try adding a cache drive instead. It can help lessen the memory usage zfs needs to maintain speed. My server is spinning rust with an ssd drive attached to the pool as cache.

    Command would be “zpool add pool_name cache /dev/sdX” where pool_name is the pool you want the cache on, and /dev/sdX is the empty drive you want to use with it (or partition). Make sure to encrypt this drive before setting this up, my knowledge is zfs doesn’t do that for you.

    see here for a bit more information on caching.