Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

fbfortune@mastodon.bsd.cafeF

fbfortune@mastodon.bsd.cafe

@fbfortune@mastodon.bsd.cafe
About
Posts
30
Topics
30
Shares
0
Groups
0
Followers
0
Following
0

View Original

Posts

Recent Best Controversial

  • "man security" gives very good advice on how to tune the security of yourFreeBSD system.
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    "man security" gives very good advice on how to tune the security of your
    FreeBSD system.

    Uncategorized

  • To make the "zfs list" output more script-friendly, you can suppress theoutput of the headers for each column by passing the -H parameter:
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    To make the "zfs list" output more script-friendly, you can suppress the
    output of the headers for each column by passing the -H parameter:

    zfs list -H

    Another helpful option for script writers is -p, which displays the numbers
    in non-rounded, exact values:

    zfs list -p

    -- Benedict Reuschling <bcr@FreeBSD.org>

    Uncategorized

  • To set a custom ZFS property on the mypool pool, you need to provide itusing the "key1:key2=value" syntax, where the colon (:) is used as theseparator and identifier from the built-in ZFS properties:
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    To set a custom ZFS property on the mypool pool, you need to provide it
    using the "key1:key2=value" syntax, where the colon (:) is used as the
    separator and identifier from the built-in ZFS properties:

    # zfs set warranty:expires=2038-01-19 mypool

    The custom property is applied to all datasets and can be queried like any
    built-in properties using zfs get:

    zfs get warranty:expires mypool

    To reset the value of a custom property, use the inherit subcommand:

    # zfs inherit warranty:expires mypool

    Removing a custom property from a pool is done using the -r flag to the
    "zfs inherit" command:

    # zfs inherit -r warranty:expires mypool

    -- Benedict Reuschling <bcr@FreeBSD.org>

    Uncategorized

  • This fortune brought to you by:$FreeBSD$
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    This fortune brought to you by:
    $FreeBSD$

    Uncategorized

  • The output of "zfs list" can be sorted by a specific column using -s.
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    The output of "zfs list" can be sorted by a specific column using -s. To
    sort the datasets by the "used" column in ascending order, run this command:

    zfs list -s used

    To sort in descending order instead, use -S:

    zfs list -S used

    -- Benedict Reuschling <bcr@FreeBSD.org>

    Uncategorized

  • If you want to recursively copy a directory preserving file and directoryattributes use"cp -a source target"
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    If you want to recursively copy a directory preserving file and directory
    attributes use
    "cp -a source target"

    -- Lars Engels <lme@FreeBSD.org>

    Uncategorized

  • You can use /etc/make.conf to control the options used to compile softwareon this system.
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    You can use /etc/make.conf to control the options used to compile software
    on this system. Example entries are in
    /usr/share/examples/etc/make.conf and in make.conf(5).
    For options that are set for building FreeBSD's kernel and its world, see
    src.conf(5).

    Uncategorized

  • You can prevent the removal of a ZFS snapshot by using the hold subcommand
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    You can prevent the removal of a ZFS snapshot by using the hold subcommand.
    For example, to prevent the snapshot called milestone from deletion, run the
    following command:

    # zfs hold milestone_hold mypool/projects@my_milestone

    The "zfs holds" command will list all current snapshots that are protected
    this way (-r for a recursive list):

    # zfs holds -r mypool

    The TIMESTAMP column in the output of the above command is from when the
    hold was created, not the snapshot it holds. The "zfs destroy" command will
    echo a "dataset is busy" message on the console when it encounters a hold.
    Use "zfs release" to release the hold on the snapshot:

    # zfs release milestone_hold mypool/projects@my_milestone

    -- Benedict Reuschling <bcr@FreeBSD.org>

    Uncategorized

  • You can automatically download and install binary packages by doing
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    You can automatically download and install binary packages by doing

    pkg install <package>

    This will also automatically install the packages that are dependencies
    for the package you install (ie, the packages it needs in order to work.)

    Uncategorized

  • You can disable tcsh's terminal beep if you `set nobeep'.
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    You can disable tcsh's terminal beep if you `set nobeep'.

    Uncategorized

  • ZFS keeps a history of commands run against a specific pool using thehistory subcommand to zpool:
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    ZFS keeps a history of commands run against a specific pool using the
    history subcommand to zpool:

    zpool history

    More details are available using the -i and -l parameters. Note that ZFS
    will not keep the complete pool history forever and will remove older
    events in favor of never ones.
    -- Benedict Reuschling <bcr@FreeBSD.org>

    Uncategorized

  • Forget what directory you are in?
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    Forget what directory you are in? Type "pwd".
    -- Dru <genesis@istar.ca>

    Uncategorized

  • When using ZFS as the file system the "df" command is reporting the pool sizeand not file system sizes.
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    When using ZFS as the file system the "df" command is reporting the pool size
    and not file system sizes. It also does not know about descendent ZFS
    datasets, snapshots, quotas, and reservations with their individual space usage.
    Use the built-in "zfs list" command to get a better overview of space usage:

    zfs list -o space

    -- Benedict Reuschling <bcr@FreeBSD.org>

    Uncategorized

  • ZFS can display I/O statistics for a given pool using the iostat subcommand
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    ZFS can display I/O statistics for a given pool using the iostat subcommand.
    By default, it will display one line of current activity. To display stats
    every 5 seconds run the following command (cancel with CTRL+C):

    zpool iostat 5

    To view individual disk activities, specify the -v parameter:

    zpool iostat -v

    Of course, both can be combined. For more options, see zpool(8).
    -- Benedict Reuschling <bcr@FreeBSD.org>

    Uncategorized

  • You can adjust the volume of various parts of the sound system in yourcomputer by typing 'mixer &lt;type&gt; &lt;volume&gt;'.
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    You can adjust the volume of various parts of the sound system in your
    computer by typing 'mixer <type> <volume>'. To get a list of what you can
    adjust, just type 'mixer'.

    Uncategorized

  • Forget when Easter is?
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    Forget when Easter is? Try "ncal -e". If you need the date for Orthodox
    Easter, use "ncal -o" instead.
    -- Dru <genesis@istar.ca>

    Uncategorized

  • Can't delete /usr/obj?
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    Can't delete /usr/obj? Enter "chflags -R noschg /usr/obj" to remove the
    system immutable flag for all files in /usr/obj.

    -- Lars Engels <lme@FreeBSD.org>

    Uncategorized

  • Are you looking for a package?
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    Are you looking for a package? Search for it with
    "pkg search part_of_package_name"

    -- Lars Engels <lme@FreeBSD.org>

    Uncategorized

  • When you want your users to be able to reboot or shutdown FreeBSD, add themto the group "operator" and they are allowed to use shutdown(8) and poweroff(8).
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    When you want your users to be able to reboot or shutdown FreeBSD, add them
    to the group "operator" and they are allowed to use shutdown(8) and poweroff(8).

    -- Lars Engels <lme@FreeBSD.org>

    Uncategorized

  • nc(1) (or netcat) is useful not only for redirecting input/output toTCP or UDP connections, but also for proxying them with inetd(8).
    fbfortune@mastodon.bsd.cafeF fbfortune@mastodon.bsd.cafe

    nc(1) (or netcat) is useful not only for redirecting input/output to
    TCP or UDP connections, but also for proxying them with inetd(8).

    Uncategorized
  • Login

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups