Драйвер btrfs для windows 10

WinBtrfs v1.8.2

WinBtrfs is a Windows driver for the next-generation Linux filesystem Btrfs.
A reimplementation from scratch, it contains no code from the Linux kernel,
and should work on any version from Windows XP onwards. It is also included
as part of the free operating system ReactOS.

If your Btrfs filesystem is on a MD software RAID device created by Linux, you
will also need WinMD to get this to appear
under Windows.

See also Quibble, an experimental
bootloader allowing Windows to boot from Btrfs, and Ntfs2btrfs,
a tool which allows in-place conversion of NTFS filesystems.

First, a disclaimer:

You use this software at your own risk. I take no responsibility for any damage
it may do to your filesystem. It ought to be suitable for day-to-day use, but
make sure you take backups anyway.

Everything here is released under the GNU Lesser General Public Licence (LGPL);
see the file LICENCE for more info. You are encouraged to play about with the
source code as you will, and I’d appreciate a note (mark@harmstone.com) if you
come up with anything nifty.

See at the end of this document for copyright details of third-party code that’s
included here.

Donations

I’ve been developing this driver for fun, and in the hopes that someone out there
will find it useful. But if you want to provide some pecuniary encouragement, it’d
be very much appreciated:

  • Paypal

Features

  • Reading and writing of Btrfs filesystems
  • Basic RAID: RAID0, RAID1, and RAID10
  • Advanced RAID: RAID5 and RAID6
  • Caching
  • Discovery of Btrfs partitions, even if Windows would normally ignore them
  • Getting and setting of Access Control Lists (ACLs), using the xattr
    security.NTACL
  • Alternate Data Streams (e.g. :Zone.Identifier is stored as the xattr
    user.Zone.Identifier)
  • Mappings from Linux users to Windows ones (see below)
  • Symlinks and other reparse points
  • Shell extension to identify and create subvolumes, including snapshots
  • Hard links
  • Sparse files
  • Free-space cache
  • Preallocation
  • Asynchronous reading and writing
  • Partition-less Btrfs volumes
  • Per-volume registry mount options (see below)
  • zlib compression
  • LZO compression
  • LXSS («Ubuntu on Windows») support
  • Balancing (including resuming balances started on Linux)
  • Device addition and removal
  • Creation of new filesystems with mkbtrfs.exe and ubtrfs.dll
  • Scrubbing
  • TRIM/DISCARD
  • Reflink copy
  • Subvol send and receive
  • Degraded mounts
  • Free space tree (compat_ro flag free_space_cache)
  • Shrinking and expanding
  • Passthrough of permissions etc. for LXSS
  • Zstd compression
  • Windows 10 case-sensitive directory flag
  • Oplocks
  • Metadata UUID incompat flag (Linux 5.0)
  • Three- and four-disk RAID1 (Linux 5.5)
  • New checksum types (xxhash, sha256, blake2) (Linux 5.5)

Todo

  • Full fs-verity support (Linux 5.15)
  • Zoned support (Linux 5.11) (HM-SMR not supported on Windows?)
  • Defragmentation
  • Support for Btrfs quotas
  • Full transaction log support
  • Support for Windows transactions (TxF)

Installation

To install the driver, download and extract the latest release,
right-click btrfs.inf, and choose Install. The driver is signed, so should work out
of the box on modern versions of Windows.

If you using Windows 10 and have Secure Boot enabled, you may have to make a Registry
change in order for the driver to be loaded — see below.

WinBtrfs is also available on the following package managers:

  • Chocolatey
  • Scoop
scoop bucket add nonportable
scoop install winbtrfs-np -g

Uninstalling

If you want to uninstall, from a command prompt run:

RUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection DefaultUninstall 132 btrfs.inf

You may need to give the full path to btrfs.inf.

You can also go to Device Manager, find «Btrfs controller» under
«Storage volumes», right click and choose «Uninstall». Tick the checkbox to
uninstall the driver as well, and let Windows reboot itself.

If you need to uninstall via the registry, open regedit and set the value of
HKLM\SYSTEM\CurrentControlSet\services\btrfs\Start to 4, to disable the service.
After you reboot, you can then delete the btrfs key and remove
C:\Windows\System32\drivers\btrfs.sys.

Compilation

To compile with Visual C++ 2019, open the directory and let CMake do its thing.
If you have the Windows DDK installed correctly, it should just work.

To compile with GCC on Linux, you will need a cross-compiler set up, for either
i686-w64-mingw32 or x86_64-w64-mingw32. Create a build directory, then use
either mingw-x86.cmake or mingw-amd64.cmake as CMake toolchain files to
generate your Makefile.

Mappings

The user mappings are stored in the registry key
HKLM\SYSTEM\CurrentControlSet\services\btrfs\Mappings. Create a DWORD with the
name of your Windows SID (e.g. S-1-5-21-1379886684-2432464051-424789967-1001),
and the value of your Linux uid (e.g. 1000). It will take effect next time the
driver is loaded.

You can find your current SID by running wmic useraccount get name,sid.

Similarly, the group mappings are stored in under GroupMappings. The default
entry maps Windows’ Users group to gid 100, which is usually «users» on Linux.
You can also specify user SIDs here to force files created by a user to belong
to a certain group. The setgid flag also works as on Linux.

LXSS («Ubuntu on Windows» / «Windows Subsystem for Linux»)

The driver will passthrough Linux metadata to recent versions of LXSS, but you
will have to let Windows know that you wish to do this. From a Bash prompt on
Windows, edit /etc/wsl.conf to look like the following:

[automount]
enabled = true
options = "metadata"
mountFsTab = false

It will then take effect next time you reboot. Yes, you should be able to chroot
into an actual Linux installation, if you wish.

Commands

The DLL file shellbtrfs.dll provides the GUI interface, but it can also be used
with rundll32.exe to carry out some tasks from the command line, which may be
useful if you wish to schedule something to run periodically.

Bear in mind that rundll32 provides no mechanism to return any error codes, so
any of these commands may fail silently.

  • rundll32.exe shellbtrfs.dll,CreateSubvol <path>

  • rundll32.exe shellbtrfs.dll,CreateSnapshot <source> <destination>

  • rundll32.exe shellbtrfs.dll,ReflinkCopy <source> <destination>
    This also accepts wildcards, and any number of source files.

The following commands need various privileges, and so must be run as Administrator
to work:

  • rundll32.exe shellbtrfs.dll,SendSubvol <source> [-p <parent>] [-c <clone subvol>] <stream file>
    The -p and -c flags are as btrfs send on Linux. You can specify any number of
    clone subvolumes.

  • rundll32.exe shellbtrfs.dll,RecvSubvol <stream file> <destination>

  • rundll32.exe shellbtrfs.dll,StartScrub <drive>

  • rundll32.exe shellbtrfs.dll,StopScrub <drive>

Troubleshooting

  • How do I debug this?

On the releases page, there’s zip files to download containing the PDBs. Or you
can try the symbols server http://symbols.burntcomma.com/ — in windbg, set your
symbol path to something like this:

symsrv*symsrv.dll*C:\symbols*http://msdl.microsoft.com/download/symbols;symsrv*symsrv.dll*C:\symbols*http://symbols.burntcomma.com

  • The filenames are weird!
    or
  • I get strange errors on certain files or directories!

The driver assumes that all filenames are encoded in UTF-8. This should be the
default on most setups nowadays — if you’re not using UTF-8, it’s probably worth
looking into converting your files.

  • How do I get this working with Secure Boot turned on?

For the very latest versions of Windows 10, Microsoft introduced more onerous
requirements for signing, which seemingly aren’t available for open-source drivers.

To work around this, go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CI\Policy in Regedit,
create a new DWORD value called UpgradedSystem and set to 1, and reboot.

Or you could always just turn off Secure Boot in your BIOS settings.

  • The root of the drive isn’t case-sensitive in LXSS

This is something Microsoft hardcoded into LXSS, presumably to stop people hosing
their systems by running mkdir /mnt/c/WiNdOwS.

  • How do I change the drive letter?

With the shell extension installed, right-click the drive in Explorer, click Properties,
and go to the Btrfs tab. There should be a button which allows you to change the drive
letter.

  • I’m still having problems with drive letters

In Regedit, try deleting the relevant entries in HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices,
then rebooting.

  • How do I format a partition as Btrfs?

Use the included command line program mkbtrfs.exe. We can’t add Btrfs to Windows’ own
dialog box, unfortunately, as its list of filesystems has been hardcoded. You can also
run format /fs:btrfs, if you don’t need to set any Btrfs-specific options.

  • I can’t reformat a mounted Btrfs filesystem

If Windows’ Format dialog box refuses to appear, try running format.com with the /fs
flag, e.g. format /fs:ntfs D:.

  • I can’t mount a Synology NAS

Synology seems to use LVM for its block devices. Until somebody writes an LVM driver
for Windows, you’re out of luck.

  • I can’t mount a Thecus NAS

Thecus uses Linux’s MD raid for its block devices. You will need to install WinMD
as well.

  • 64-bit Windows 7 won’t load the driver

Make sure that you have KB3033929 installed.
Or consider installing from an «escrow» ISO which includes all updates.

  • The drive doesn’t show up and Paragon software has been installed

Paragon’s filesystem-reading software is known to disable automount. Disable or
uninstall Paragon, then re-enable automount by running diskpart and typing
automount enable.

  • The drive doesn’t show up on very old versions of Windows

On very old versions of Windows (XP, Server 2003?), Windows ignores Linux partitions
entirely. If this is the case for you, try running fdisk on Linux and changing your
partition type from 83 to 7.

Changelog

v1.8.2 (2023-01-10):

  • Fixed UAC not working
  • Fixed Smartlocker crash on Windows 11 22H2
  • Rejigged INF file to work better on Windows 11
  • Files now signed with SHA256 hash rather than SHA1

v1.8.1 (2022-08-23):

  • Fixed use-after-free when flushing
  • Fixed crash when opening volume when AppLocker installed
  • Compression now disabled for no-COW files, as on Linux
  • Flushing now scales better on very fast drives
  • Fixed small files getting padded to 4,096 bytes by lazy writer
  • Added NoDataCOW registry option

v1.8 (2022-03-12):

  • Added minimal support for fs-verity
  • Added test suite
  • Fixed incorrect disk usage statistics
  • Fixed potential crashes when renaming stream to file or file to stream
  • Fixed potential crashes when querying hard links on file
  • Fixed potential hang when opening oplocked file
  • Fixed minor issues also uncovered by test suite

v1.7.9 (2021-10-02):

  • Fixed deadlock when mounting on Windows 11
  • Added support for BitLocker-encrypted volumes
  • Improved filename checks when renaming or creating hard links
  • Miscellaneous bug fixes

v1.7.8.1 (2021-06-13):

  • Fixed bug preventing new directories from appearing in listings
  • Fixed Release version of driver still not working on XP

v1.7.8 (2021-06-09):

  • Upgraded zstd to version 1.5.0
  • Fixed regression stopping driver from working under XP
  • Fixed compilation on clang
  • Fixed corruption issue when Linux mount option inode_cache had been used
  • Fixed recursion issue involving virtual directory \$Root

v1.7.7 (2021-04-12):

  • Fixed deadlock on high load
  • Fixed free space issue when installing Genshin Impact
  • Fixed issue when copying files with wildcards in command prompt
  • Increased speed of directory lookups

v1.7.6 (2021-01-14):

  • Fixed race condition when booting with Quibble
  • No longer need to restart Windows after initial installation
  • Forced maximum file name to 255 UTF-8 characters, to match Linux driver
  • Fixed issue where directories could be created with trailing backslash
  • Fixed potential deadlock when Windows calls NtCreateSection during flush
  • Miscellaneous bug fixes

v1.7.5 (2020-10-31):

  • Fixed text display issue in shell extension
  • Added support for mingw 8
  • Fixed LXSS permissions not working in new versions of Windows
  • Fixed issue where truncating an inline file wouldn’t change its size
  • Fixed crash with Quibble where driver would try to use AVX2 before Windows had enabled it

v1.7.4 (2020-08-23):

  • Fixed issue when running compressed EXEs
  • Changed build system to cmake
  • Upgraded zstd to version 1.4.5
  • Added support for FSCTL_GET_RETRIEVAL_POINTERS
  • Miscellaneous bug fixes

v1.7.3 (2020-05-24):

  • Fixed crash when sending file change notifications
  • Improved symlink handling with LXSS
  • Added support for undocumented flag SL_IGNORE_READONLY_ATTRIBUTE
  • Fixed corruption caused by edge case, where address allocated and freed in same flush
  • Improved handling of free space tree
  • Improved handling of very full volumes
  • Fixed spurious warnings raised by GCC 10 static analyser
  • Replaced multiplications and divisions with bit shift operations where appropriate
  • Fixed combobox stylings in shell extension

v1.7.2 (2020-04-10):

  • Added more fixes for booting from Btrfs on Windows 10
  • Fixed occasional deadlock when deleting or closing files on Windows 10 1909
  • Fixed crash when reading large ADSes
  • Fixed occasional crash when writing files on RAID5/6
  • Miscellaneous bug fixes

v1.7.1 (2020-03-02):

  • Fixed crash when reading beyond end of file
  • Fixed spurious checksum errors when doing unaligned read

v1.7 (2020-02-26):

  • Added support for metadata_uuid incompat flag (Linux 5.0)
  • Added support for three- and four-disk RAID1 (Linux 5.5)
  • Added support for new checksum types: xxhash, sha256, blake2 (Linux 5.5)
  • Greatly increased checksumming speed
  • Greatly increased compression and decompression speed
  • Fixed bug causing incorrect free-space reporting when data is DUP
  • Fixed issue creating directories on LXSS when case=dir option set

v1.6 (2020-02-04):

  • Added experimental (i.e. untested) ARM support (thanks to DjArt for this)
  • Added fixes for booting from Btrfs on Windows 10
  • Volumes will now get remounted if changed while Windows is asleep or hibernating
  • Fixed corruption when mounting volume that hasn’t been unmounted cleanly by Linux
  • Fixed crash when deleting subvolume

v1.5 (2019-11-10):

  • More fixes for booting from Btrfs
  • Added virtual $Root directory (see «NoRootDir» below)
  • Added support for Windows XP
  • Added support for renaming alternative data streams
  • Added oplock support
  • Fixed potential deadlock on boot
  • Fixed possible crash on shutdown
  • Fixed a bunch of memory leaks
  • Many other miscellaneous bug fixes

v1.4 (2019-08-31):

  • Added fragmentation percentage to property sheet
  • Added support for Windows Server 2003 and Windows Vista
  • Added pagefile support
  • Improved support for file locking
  • Added support for booting from Btrfs on Windows Server 2003 (see https://www.youtube.com/watch?v=-5E2CHmHEUs)
  • Fixed issue where driver could open same inode twice
  • Other miscellaneous bug fixes

v1.3 (2019-06-10):

  • Added support for new rename and delete functions introduced to Windows 10
  • Added support for Windows 10’s flag for case-sensitive directories
  • Changed free-space calculation method to be more like that of the Linux driver
  • Added more support for 128-bit file IDs
  • Fixed bug causing outdated root items
  • Fixed bug preventing writing to VHDs

v1.2.1 (2019-05-06):

  • Reverted commit affecting the creation of streams

v1.2 (2019-05-05):

  • Dramatic speed increase when opening many small files, such as with a Git repository
  • Fixed crash on surprise removals of removable devices
  • Added ability to change drive letters easily
  • No longer creates free-space cache for very small chunks, so as not to confuse the Linux driver
  • Fixed corruption when very large file created and then immediately deleted
  • Minor bug fixes

v1.1 (2018-12-15):

  • Support for Zstd compression
  • Passthrough of Linux metadata to LXSS
  • Refactored shell extension
  • Fixed memory leaks
  • Many other bug fixes

v1.0.2 (2018-05-19):

  • Minor bug fixes

v1.0.1 (2017-10-15):

  • Fixed deadlock
  • Binaries now signed
  • Minor bug fixes

v1.0 (2017-09-04):

  • First non-beta release!
  • Degraded mounts
  • New free space cache (compat_ro flag free_space_cache)
  • Shrinking and expanding of volumes
  • Registry options now re-read when changed, rather than just on startup
  • Improved balancing on very full filesystems
  • Fixed problem preventing user profile directory being stored on btrfs on Windows 8 and above
  • Better Plug and Play support
  • Miscellaneous bug fixes

v0.10 (2017-05-02):

  • Reflink copy
  • Sending and receiving subvolumes
  • Group mappings (see Mappings section above)
  • Added commands for scripting etc. (see Commands section above)
  • Fixed an issue preventing mounting on non-PNP devices, such as VeraCrypt
  • Fixed an issue preventing new versions of LXSS from working
  • Fixed problem with the ordering of extent refs, which caused problems on Linux but wasn’t picked up by btrfs check
  • Added support for reading compressed inline extents
  • Many miscellaneous bug fixes

v0.9 (2017-03-05):

  • Scrubbing
  • TRIM/DISCARD
  • Better handling of multi-device volumes
  • Performance increases when reading from RAID filesystems
  • No longer lies about being NTFS, except when it has to
  • Volumes will now go readonly if there is an unrecoverable error, rather than blue-screening
  • Filesystems can now be created with Windows’ inbuilt format.com
  • Zlib upgraded to version 1.2.11
  • Miscellaneous performance increases
  • Miscellaneous bug fixes

v0.8 (2016-12-30):

  • Volume property sheet, for:
  • Balances
  • Adding and removing devices
  • Showing disk usage, i.e. the equivalent to btrfs fi usage
  • Checksums now calculated in parallel where appropriate
  • Creation of new filesystems, with mkbtrfs.exe
  • Plug and play support for RAID devices
  • Disk usage now correctly allocated to processes in taskmgr
  • Performance increases
  • Miscellaneous bug fixes

v0.7 (2016-10-24):

  • Support for RAID5/6 (incompat flag raid56)
  • Seeding support
  • LXSS («Ubuntu on Windows») support
  • Support for Windows Extended Attributes
  • Improved removable device support
  • Better snapshot support
  • Recovery from RAID checksum errors
  • Fixed issue where creating a lot of new files was taking a long time
  • Miscellaneous speed increases and bug fixes

v0.6 (2016-08-21):

  • Compression support (both zlib and lzo)
  • Mixed groups support
  • No-holes support
  • Added inode property sheet to shell extension
  • Many more mount options (see below)
  • Better support for removable devices
  • Page file support
  • Many miscellaneous bug fixes

v0.5 (2016-07-24):

  • Massive speed increases (from «sluggish» to «blistering»)
  • Massive stability improvements
  • RAID support: RAID0, RAID1, and RAID10
  • Asynchronous reading and writing
  • Partition-less Btrfs volumes
  • Windows sparse file support
  • Object ID support
  • Beginnings of per-volume mount options
  • Security improvements
  • Notification improvements
  • Miscellaneous bug fixes

v0.4 (2016-05-02):

  • Subvolume creation and deletion
  • Snapshots
  • Preallocation
  • Reparse points
  • Hard links
  • Plug and play
  • Free-space cache
  • Fix problems preventing volume from being shared over the network
  • Miscellaneous bug fixes

v0.3 (2016-03-25):

  • Bug fixes:
  • Fixed crashes when metadata blocks were SINGLE, such as on SSDs
  • Fixed crash when splitting an internal tree
  • Fixed tree traversal failing when first item in tree had been deleted
  • Fixed emptying out of whole tree (probably only relevant to checksum tree)
  • Fixed «incorrect local backref count» message appearing in btrfs check
  • Miscellaneous other fixes
  • Added beginnings of shell extension, which currently only changes the icon of subvolumes

v0.2 (2016-03-13):

  • Bug fix release:
  • Check memory allocations succeed
  • Check tree items are the size we’re expecting
  • Added rollbacks, so failed operations are completely undone
  • Fixed driver claiming all unrecognized partitions (thanks Pierre Schweitzer)
  • Fixed deadlock within CcCopyRead
  • Fixed changing properties of a JPEG within Explorer
  • Lie about FS type, so UAC works
  • Many, many miscellaneous bug fixes
  • Rudimentary security support
  • Debug log support (see below)

v0.1 (2016-02-21):

  • Initial alpha release.

Debug log

WinBtrfs has three levels of debug messages: errors and FIXMEs, warnings, and traces.
The release version of the driver only displays the errors and FIXMEs, which it logs
via DbgPrint. You can view these messages via the Microsoft program DebugView, available
at https://technet.microsoft.com/en-gb/sysinternals/debugview.

If you want to report a problem, it’d be of great help if you could also attach a full
debug log. To do this, you will need to use the debug versions of the drivers; copy the files
in Debug\x64 or Debug\x86 into x64 or x86. You will also need to set the registry entries in
HKLM\SYSTEM\CurrentControlSet\Services\btrfs:

  • DebugLogLevel (DWORD): 0 for no messages, 1 for errors and FIXMEs, 2 for warnings also,
    and 3 for absolutely everything, including traces.
  • LogDevice (string, optional): the serial device you want to output to, such as
    \Device\Serial0. This is probably only useful on virtual machines.
  • LogFile (string, optional): the file you wish to output to, if LogDevice isn’t set.
    Bear in mind this is a kernel filename, so you’ll have to prefix it with «\??\» (e.g.,
    «\??\C:\btrfs.log»). It probably goes without saying, but don’t store this on a volume the
    driver itself is using, or you’ll cause an infinite loop.

Mount options

The driver will create subkeys in the registry under HKLM\SYSTEM\CurrentControlSet\Services\btrfs
for each mounted filesystem, named after its UUID. If you’re unsure which UUID refers to which
volume, you can check using btrfs fi show on Linux. You can add per-volume mount options to this
subkey, which will take effect on reboot. If a value is set in the key above this, it will use this
by default.

  • Ignore (DWORD): set this to 1 to tell the driver not to attempt loading this filesystem. With the
    Readonly flag, this is probably redundant.

  • Readonly (DWORD): set this to 1 to tell the driver not to allow writing to this volume. This is
    the equivalent of the ro flag on Linux.

  • Compress (DWORD): set this to 1 to tell the driver to write files as compressed by default. This is
    the equivalent of the compress flag on Linux.

  • CompressForce (DWORD): set this to 1 to force compression, i.e. to ignore the nocompress inode
    flag and even attempt compression of incompressible files. This isn’t a good idea, but is the equivalent
    of the compress-force flag on Linux.

  • CompressType (DWORD): set this to 1 to prefer zlib compression, 2 to prefer lzo compression, or 3
    to prefer zstd compression. The default is 0, which uses zstd or lzo compression if the incompat flags
    are set, and zlib otherwise.

  • FlushInterval (DWORD): the interval in seconds between metadata flushes. The default is 30, as on Linux —
    the parameter is called commit there.

  • ZlibLevel (DWORD): a number between -1 and 9, which determines how much CPU time is spent trying to
    compress files. You might want to fiddle with this if you have a fast CPU but a slow disk, or vice versa.
    The default is 3, which is the hard-coded value on Linux.

  • MaxInline (DWORD): the maximum size that will be allowed for «inline» files, i.e. those stored in the
    metadata. The default is 2048, which is also the default on modern versions of Linux — the parameter is
    called max_inline there. It will be clipped to the maximum value, which unless you’ve changed your node
    size will be a shade under 16 KB.

  • SubvolId (QWORD): the ID of the subvolume that we will attempt to mount as the root. If it doesn’t
    exist, this parameter will be silently ignored. The subvolume ID can be found on the inode property
    sheet; it’s in hex there, as opposed to decimal on the Linux tools. The default is whatever has been set
    via btrfs subvolume set-default; or, failing that, subvolume 5. The equivalent parameter on Linux is
    called subvolid.

  • SkipBalance (DWORD): set to 1 to tell the driver not to attempt resuming a balance which was running
    when the system last powered down. The default is 0. The equivalent parameter on Linux is skip_balance.

  • NoPNP (DWORD): useful for debugging only, this forces any volumes to appear rather than exposing them
    via the usual Plug and Play method.

  • ZstdLevel (DWORD): Zstd compression level, default 3.

  • NoTrim (DWORD): set this to 1 to disable TRIM support.

  • AllowDegraded (DWORD): set this to 1 to allow mounting a degraded volume, i.e. one with a device
    missing. You are strongly advised not to enable this unless you need to.

  • NoRootDir (DWORD): if you have changed your default subvolume, either natively or by a registry option,
    there will be a hidden directory called $Root which points to where the root would normally be. Set this
    value to 1 to prevent this appearing.

  • NoDataCOW (DWORD): set this to 1 to disable copy-on-write for new files. This is the equivalent of the
    nodatacow flag on Linux.

Contact

I’d appreciate any feedback you might have, positive or negative:
mark@harmstone.com.

Copyright

This code contains portions of the following software:

Zlib

Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler

This software is provided ‘as-is’, without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.

Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not
    claim that you wrote the original software. If you use this software
    in a product, an acknowledgment in the product documentation would be
    appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be
    misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.

LZO

WinBtrfs contains portions of an early version of lzo, which is copyright 1996
Markus Oberhumer. Modern versions are licensed under the GPL, but this was
licensed under the LGPL, so I believe it is okay to use.

Zstd

Copyright (c) 2016-present, Facebook, Inc. All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this
    list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.

  • Neither the name Facebook nor the names of its contributors may be used to
    endorse or promote products derived from this software without specific
    prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS «AS IS» AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

BLAKE2

https://github.com/BLAKE2/BLAKE2 (public domain)

SHA256

https://github.com/amosnier/sha-2 (public domain)

This tutorial here aims to explain how to mount Btrfs volumes on Windows 10. Here I will mention a simple open source Btrfs controller driver that you can install on Windows to automatically mount any available Btrfs volume on your hard disk. After it mounts the volume, you can use it like a simple local disk and do almost any operation. You can move files from the Btrfs drive or paste new ones in any folder. This is as simple as that. The driver that I will mention here is lightweight and you can install it in just a few clicks.

If you have a dual boot Linux-Windows operating system on your PC then you may want to have access to your hard disks on either of them. But the problem is that almost all Linux distros support Windows NTFS or FAT volumes but Windows doesn’t really support Linux’s EXT, XFS, or Btrfs volumes. There are already software available to access EXT volumes but not for Btrfs. And here I will tell you how you can mount that in simple steps.

How to Mount Btrfs Volumes on Windows 10

You simply start by downloading the driver from its GitHub page. Download it from one of its stable releases and then extract it on your PC. There are some INF and CAT files that you have to install. The extracted content of the ZIP file that you download looks like this.

Btrfs Driver files

Now, it is time to install the drivers. Simply right click on the “btrfs.inf” file and click “Install”. Next, you proceed with the installation and then you are done. In the end, you will simply have to restart your computer.

Install Btrfs Disk Controller Drivers Windws 10

When the Btrfs drivers load on the next boot, it will automatically mount the any available Btrfs volume on the hard disk. It will list all the Linux directories and then you are free to browse them in any way you want. This is simple and the best part is that you can perform any read and write operation on the mounted Btrfs volume. Copying and moving files between Windows and Linux OSes is very simple with this.

Btrfs File system mounted on Windows 10 Btrfs mount subvolume

In this way, you can mount a Btrfs volume on Windows 10. The driver works perfectly on both; 32 and 64-bit Windows systems. After you have mounted the volumes, you are free to do whatever you want. And when you no longer need it then you can simply uninstall the drivers.

uninstall btrfs disk controller drivers from Windows

To uninstall the driver, you go to the device manager. To open it, you type “devmgmt.msc” in the Run dialog and then uninstall the Btrfs controllers. You can see this in the screenshot above. After uninstalling, do not forget to restart your PC for changes to take effect.

Final words:

So, if you are struggling with Btrfs volume to mount it in Windows Explorer then you are at the right place. Just install the simple and effective Btrfs disk controller driver that I have mentioned here and access the files. With the simple open-source drivers, you can make Windows Explorer a Btrfs reader and do whatever you want.

Editor Ratings:

Home Page URL: Click Here
Free/Paid: Free

desc of picture

Pick all three.

Btrfs for Windows by Paragon Software is a driver that allows you to read Btrfs-formatted files on a Windows computer. Btrfs is a copy-on-write file system designed at Oracle for use in a Linux environment. Just plug in Btrfs storage to your PC and get a read access to the content with Btrfs for Windows driver.

Features

  • Read-only access to Linux Btrfs from PC
  • Quick start after installation
  • Auto-mounting of Linux partitions, runs at startup
  • Manage through the Windows CMD and the system tray
  • Linux LVM disks support
  • Safe eject ready

Resources

Product Documentation

Download Btrfs for Windows by Paragon Software User Manual
Download Btrfs for Windows by Paragon Software One Pager

Need help?

Contact Support or file a support ticket

Be the first to know whats new — sign up for our newsletter

Windows 10 or 11, which are based on the NT kernel, by default only supports file systems such as FAT16, FAT32, and NTFS. Linux-based distributions, on the other hand, use file systems such as EXT4 or BTRFS. Which makes the Linux drive impossible to access while Windows is turned on, and you have to reboot every time you want to move data between the two drives if you are dual-booting Windows as well as any Linux distribution.

However, if you are using BTRFS (pronounced Butter FS) which is mainly available on Fedora but is available for many Linux distributions as well, you can install a Windows utility called ‘WinBTRFS’ which basically acts as a driver for BTRFS file systems and hence, you can access your BTRFS partitions as well as BTRFS formatted Hard Drives/ USB drives.

Also read EXT4 vs BTRFS, which one should you choose?

Note that if you are using Secure boot, then you have to do a registry edit on Windows to use this workaround.

Make sure you have a BTRFS partition on Linux

As mentioned earlier, WinBTRFS only works for BTRFS, but the majority of Linux distributions use EXT4 by default when you install them. So first, check whether you are using EXT4 or BTRFS partitioning scheme by typing the following commands in your Linux Terminal :

My Root Partition Is BTRFS

My Root Partition Is BTRFS

As you can see, I’m using BTRFS on my root drive on Fedora 36. If you are using EXT4, then you can consider reinstalling your OS (or formatting it with BTRFS if you are using a separate home partition).

Installing WinBTRFS

Boot into your Windows installation again, now let’s install this handy tool on our PC. Visit the Official GitHub download page of WinBTRFS and then download the zip file from the releases section. Now, open our file manager and extract the downloaded zip file using either 7zip or WinRAR.

Extract The Downloaded WInBTRFS Zip File

Extract The Downloaded Zip File

Now, right-click on the btrfs.inf file and click ‘Install’. If you do not have secure boot enabled, then simply reboot our system and our Linux partition should be detected automatically, If you have secure boot enabled, then you can follow the procedures mentioned below :

Edit Registry

Press the Windows and R keys together to open the Run menu, type regedit and hit enter to launch the registry editor.

Now, go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CI\Policy, and right click and create a new DWORD named UpgradedSystem.

Create A New DWORD Named UpgradedSystem

Create A New DWORD Named UpgradedSystem

Now, double-click on this new DWORD and set the Value Data to 1, and base to Hexadecimal. Now, simply reboot your system. After the reboot, you can see in your file manager that a second drive is available.

Fedoras Root Partition Is Accessible From Windows

Fedora’s Root Partition Is Accessible From Windows

Summary

You can also plug in your USB drives with BTRFS partition and WinBTRFS will still be able to recognize it without any problem. Formatting using the Windows default tool is also not possible, and you will have to use the WinBTRFS command line to access such features. You can read more about the commands here.

  • 1.2, Stanislavvv (?), 07:54, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +20 +/
    ��� ��� ������-�� ��������� ��������� ������� �� fat � ������. �� �����, ����� �������� ��� �����, �� ���� ���� �ݣ �� 2.0
     
     
  • 2.44, YM2608 (?), 10:12, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    � ��� 10 ����� ������������ FreeBSD 4.11 �� FAT32
     
     
  • 3.215, ������ (), 21:07, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > � ��� 10 ����� ������������ FreeBSD 4.11 �� FAT32

    � � �����-�� ������ RIP Linux (��, �������� ������ ����������) � �������, ��� ��� ������������� freeldr, �� ����� ������ ��� � �� ������� � ������ ���� ����, �������� ���. ���� � ����. ��� ������� ���� �������� ������ ����������� ����� ������ ��� �������������� ������� � �.�..

     
     
     
  • 5.257, ������ (257), 23:34, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +4 +/
    > � FreeBSD 4.2 ����� ������������ � 2001 ����))

    � ��� � ������� �� ����� ���������� 2M ������������, ����� ������ �������. ��� �� 1.86 ���� ����� ����� ���� ����������� ���� 1.44 ���������. Freeldr ������� ����� BIOS, ������� 2M’������ ������� �� ���������� ��������� �������� ���� �������� � freeldr �������� ����� ����� �������� �������. �� �����, ����� �� Linux ����� ������� ������ �������, �� � initrd ��� ���� �� �����.

     
  • 2.46, YM2608 (?), 10:16, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +3 +/
    ���������� ������ � � ������ �������� Live Ubuntu, Xubuntu — ������������ ISO ����� � �����, � ����� �������� �� ���� ��������� ������ �� ����� Grub4DOS:

    title Xubuntu 21

    root (hd2,0)

    kernel /Unix/Xubuntu21/casper/vmlinuz.efi file=/cdrom/preseed/xubuntu.seed boot=casper iso-scan/filename=/Unix/Xubuntu21/ locale=ru_RU quiet splash —

    initrd=/Unix/Xubuntu21/casper/initrd.lz
     
     
  • 3.47, YM2608 (?), 10:17, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ps: «�������� Live Ubuntu, Xubuntu» c NTFS �������
     
     
  • 4.81, ������ (81), 11:44, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +3 +/
    ��� �� ������� � ����-�������, ������� �� squashfs-������, � ������� ���� ���-������ � ��ף�. ������ ������, � ����� �� ������ �� ��������� �������� ����-��������(������� �������� ��������) � �������. �������� �ݣ ��������.
     
     
  • 5.210, ������ (), 20:52, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    �� ������ �� ��������. �� ������ ����������� � NTFS �������� — ������� ��������� ������� ��� ����� ���� ���������� �� ����������� ������ �������. ���������� �� �� 90�, ��� �� �� ��� ������?
     
     
  • 6.288, Unnamed Player (?), 02:54, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +5 +/
    �� ������ �� � ���� ��� ��.

    ��� (� ����) ���� �ӣ ��� ������ �������� �� ������. ����������� ��������, cow, ��������, ������������, utf, huge volumes, ������� �����, ���������� ������ � ������, ������� ������ � ����� ������� — ������ ����������� �� �� �ӣ ���.
     
     
  • 7.291, ������ (291), 03:20, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/

    ������-�� ��� �� � btrfs ���� � ������ ������ ��� ����� ����� �� ������ � ��� �… ������� ����� �ף����, ��������

     
  • 7.446, ������ 22.04 (?), 14:23, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � �ݣ � NTFS ���� ����������� ������� � ����� ������ ������ ������ �� ����������.
     
     
     
  • 9.455, ������ (455), 14:08, 28/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ��, ���������� ��������� ������ ��� ��������� ��������, �������� ��������� ���… ����� �ף����, ��������

     
     
  • 10.456, n00by (ok), 15:18, 28/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� � ���� �� ������� ���� ����������� ������ �� �������� ���� ������������ NTFS… ����� �ף����, ��������

     
  • 2.127, ������� ������̣� (?), 14:26, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    �� � ������� ������ � ��������� ��������:

    �����, ��� ������������� ������� ����� � ������, �������� ��������� ������ �� �����, � �� ������ — �� ����

    ��� ���� � ���� ����� ���� ���� ��� ����� � ����� ?

     
     
  • 3.129, ���. (?), 14:35, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +3 +/
    ����… �� ������ — ������������������.

    �� ���� ��� �������� �������� �� �����. ������ ��� �����-������ ������������ ����������� ��� ����������� ��� � �� ����� ������ ������� (��, ��������, ��� ����������� �� ������������� �������). ��� selinux. �������� ������ ��� �� ����� ������������ nfs �� ����� ����� (�� ������ ��� � �����).

    �� � ��� ���� ������� �������� � ������ �������� — �����-�� ����� � vss, �� �������-�� ���.

    (��� ������ ���������� ��� ������� ����� ������������ ����� ������ �� winbtrfs — ������ ������� �� ��������)

     
  • 3.144, ������ (144), 15:17, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������ ZFS ��� ����� ��������, � ��� ������ ����� ��������. ������� ��� ����� ����� ��ǣ�.

    ���� ���� ������ ����, ������� ���� ZFS, �� �� �� � ������ ������������ �� ��������, ������ ������� ��� ��� ���� �����, � ������ ���� ��� ���������. ���� � ������� ����� �� �������� �������� ��� ext2fsd � �����. ���������� ext4 ������ �����, � ����� �� ����� �����. ��� ������������� ������� ����������� ���������� ��� ��� ������ ������ �� ������ ������ ��� ������������� �� ����������� 8K �������� � ����. ���� ������ ��� ���� ����� ���� ��������� �� ������������ ��������� ���� ��������� ������������.
     
  • 3.206, ������ (), 20:45, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �����, ��� ������������� ������� ����� � ������, �������� ��������� ������ �� �����,

    > � �� ������ — �� ����

    �����-��, ����� � ������ ���������� �������� �� ������, � ������ �������� ���� �������� EXT2, ������ ��� ��� ����� ��� ������ ������� ������ � �� � ������. � ����� ext2fsd, �����, ��� ����������, � ������ ���� ��������.

    � ����� � �� ���� ��� ������ ���������� � ����� ��� ����� ��� �������� ���. ���� �� � ������� ��� �����, ��� ��� �� WinBTRFS — ����� ����� ����������� �� ������������. ��, � �������, ��� ��� ��� �� ��������� � � ������ ����� ����� ����� �������� ������.

     
     
  • 4.399, ���� (??), 20:03, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ����� ������� ����. BTRFS ��� ���������-�� �� ����� ������ ������ ������, � �������� � � ������. �� � ���� NAS, ��� ��� �����, �� �������� �����.
     
     
  • 5.436, ������ (436), 01:50, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ���� �� ����� ������ ����� ����� — ������ ��� � ���� ������ ����� ��������� ��� ��� �������� ��� ������ � XXI ����. �.�. �� ���������� � �������������� �����������, � ������� ������������ ����� ������ � ������� ���������. ����� sci-fi ��� ����� ���� ������� ����������� ����-�� � ���� �������� ����������.

    � �� ������ ������� ������������ �������� ���������� ������� ��� � XX ����, ���������� ��� �� ���� � ����� � ��� ��� ��� ��� �������� �� ���� ��� � ����� �� ���� �����.

     
     
  • 6.443, ���� (??), 05:50, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��������� ��� �� ���� ��� ��� � ����� �������� ������ ��������� ���������� ���… ������� ����� �ף����, ��������

     
     
  • 7.447, ������ (), 00:40, 27/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ��������� ��� �� ����? ��� ���? � ����� �������� ������ ��������� ���������� ������,

    > ��� ��� cdebootstrap’�� �������������� ������ �������������, ������ � ���� ��� ������.

    ���������� ������ � ����. �� ��� �� �� ������ ��������� �������. ���-�� �����, ���-�� ���. ������ ���� ��� �������, ������ ��� ����������� �� ��������, ���� ��� ����������� � ����������. � ���� ��������� �� ���������� ����� �������� �������� ����.

    > �� � �� ������ ���������, ��� ��� ������, ���������, �� �� ���

    > � ������������ ������? ��� ������ �������� �� ������ �� ��������� ���������?

    ������ ������� �� ����������. ������� ��� ��� ��������� ��������� � ������� � ����������� ��� ���.

     
     
  • 8.451, ���� (??), 10:27, 27/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������ ��������� ������� ��� ��� ��� ������� ansible chef etc localhost ������ �… ����� �ף����, ��������

     
  • 3.216, ������ (), 21:09, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ��� ���� � ���� ����� ���� ���� ��� ����� � ����� ?

    � btrfs ��� ������� NTFS-� ����� � �������� ��� ������ ��� �� ������ ������� � ����������� �������. ����� ������������ ������������ ���������� ���� �����-����� ������ �� ��� ���������� �������?

     
     
  • 4.225, ������ (225), 21:33, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> ��� ���� � ���� ����� ���� ���� ��� ����� � ����� ?

    > � btrfs ��� ������� NTFS-� ����� � �������� ��� ������ ��� �� ������ ������� � ����������� �������.

    ����� ��������� Btrfs-�� ���������, ��������������� ���� �� ������, ����� ����� �����.

    > ����� ������������ ������������ ���������� ���� �����-����� ������ �� ��� ���������� �������?

    ��� ������ �� ��� ���� ����������, ����� ��� «�� ��� ����������», �� � �� ����� ��� — �����-� ���������.

     
     
  • 5.258, ������ (257), 23:37, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +4 +/
    > ����� ��������� Btrfs-�� ���������, ��������������� ���� �� ������, ����� ����� �����.

    �� �������, � ������� ��� btrfs �������� �� ��� �� ��� � ����������. ��������!! � ���� ��� ������ � �����.

    > ��� ������ �� ��� ���� ����������, ����� ��� «�� ��� ����������», ��

    > � �� ����� ��� — �����-� ���������.

    �� � � ���� ����� ext2fsd ��� �����������. �� �� ����� �� ������, �������, �������� � ���������� �� �� �������� ��������, � ���������� ������� ������ �� ����� � ����� � ������ ����� ������ ��� ���. � ������� ���� ������ �������� �� ��� 120%. �� ��� ��� ������� �������.

     
     
  • 6.263, ������ (225), 00:04, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> ����� ��������� Btrfs-�� ���������, ��������������� ���� �� ������, ����� ����� �����.

    > �� �������, � ������� ��� btrfs �������� �� ��� �� ��� � ����������. ��������!! � ���� ��� ������ � �����.

    ���, ��� ��, �� ����������������� �������. ������ ��������� ������ �� ������, � ����� �������� ��������� ��� ���� (������-�� ��� ��� �� � ���).

    > �� � � ���� ����� ext2fsd ��� �����������. �� �� ����� ��

    �� ��� ��, ����� «����������» (��������: ������) ��������� �����. � ������������� � ����� �������� �� ����� �����. ��� ��� ����� �������� �� ��� ������ ��� ������ �� ����������. �� � �����, ���� �� ����� — �� ����� ��������. �� � ���� �� «���� ������», �� ������� �� ����� ���������� ������ — ����� ���� �� ����� �������, �.�. ��� ������� ������ «���������» ������� ���� �� ������.

     
     
  • 7.270, ������ (270), 00:47, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��� �� ������ ��� ������� ������� ����� ����������� � ���� ���-�� ���� ����… ������� ����� �ף����, ��������

     
  • 3.371, ryoken (ok), 07:58, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ���� ������� ��������� ��� � ���� (�� �����-NTFS ������ �������� ������, � ���� ������\������ ��� ����� �� �������� ��� ��������).

    1 — � �������������� ���� �������������� ������� ���� ��� �������� NTFS3 (������� �������������, � ��������� �������������� ���� Liquorix-kernel, ��� ��� ��� ����). �������������� ���� ���� ���-�� ��������� ������� ������� — ��� ���� �� ����ģ���.

    2 — � ���-������������ ��� ����������� ��������� ������ � NTFS. � ���� ���� �� ���� — �� ����������� ��� �� ������ ��� ���������, � ����� � �.1 :). ���� ���� ������ ����� ���� (������� �� Alt-F1 � ��. ��������) — �� ������� ����� ��������� ����������.
     
     
     
  • 5.382, ryoken (ok), 12:20, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >  ���-�: ��ԣ�.

    > �������������� ���� — ���������.

    >  � �� ��������� ���������� �ӣ � .tar.xz ��� ��������� � �����������

    > �� �� �������������� ��� NFS «����» NTFS �����������? ( � ���-����

    > � bootloader �����������?..)

    >  �.�. ������� .vhd ( .vhdx ���� �����) � NTFS ���������� ������.

    �������� — �� ��������. �� � ��� ޣ� ��� ������� NFS & VHD — �� �����, � �� ������ ������ �� �������� ���� :).

     
  • 4.452, ���� (??), 10:42, 27/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ���� � NTFS ���� �������� ACL � ��� � ���� ������� ����� ��������� �� ������… ������� ����� �ף����, ��������

     
     
  • 5.454, ryoken (ok), 10:54, 27/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������� ������ ����� cdebootstrap. ������ ����, ��� ������� ��� ����� ������ (����������

    > ������������� ntfs) �������� �� �����. �����, ��������…

    ������������ �����, ������ ���� ������ ����� ���.

     
  • 5.457, maximnik0 (?), 10:16, 30/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >�� ���� � NTFS ���� �������� ACL.

    ��� ��� ����.������ ����������� acl ,�� ����������� ��� � XFS .������ ��� posix,���������� ����������� � NT ��� ������������ � ����� ������� ����� Posix.� � �������������� ������� ������������ �ݣ ��� ����� DOS.

    � �������� ntfs-3g ���� ����� ACL, ������ ���� ��� ����� �����������.�� ����� �� �� ������������ ����� �������������.

     
  • 2.205, ������ (), 20:43, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –2 +/
    ������ �� FAT ������� ��� �������� ������� �� ���� ����������. � ��� ����� �� btrfs — � � ����� ������� ��������� ������� ������ ���! ��� ReFS �� �� �� ����� ������ ������� �� btrfs � � ���� �� ��� ��������� � «����������» ������. ������ ������ ������ ������� ��� ���������� ������� � ��� ����, ��� � �����������.
     
     
  • 3.373, Stanislavvv (?), 08:10, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������ �� FAT ������� ��� �������� ������� �� ���� ����������.

    �� �������, ����� ������ ������� �� ��� — ���������� ���� win95, ���� �� win3.1

    ����� ��� ��� ��������.

     
     
  • 4.396, ������ (396), 17:56, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    FAT — ��� �������� ������������ ����? � ���� ������ 1 ����������� — �� ������� ��� �����. ��� ��������� � ���������� — ����������.
     
     
  • 5.429, Stanislavvv (?), 05:11, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > FAT — ��� �������� ������������ ����? � ���� ������ 1 ����������� —

    > �� ������� ��� �����. ��� ��������� � ���������� — ����������.

    ��� �������� 90-� — ��������, ��� �ݣ ���� ������� �������� �������. ������ — ��� �������, 30 ��� ������.

     
     
  • 6.453, ���� (??), 10:44, 27/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ��� �������� 90-� — ��������, ��� �ݣ ���� ������� �������� �������. ������

    > — ��� �������, 30 ��� ������.

    ��������� �������

     
  • 3.379, �������� (ok), 11:17, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ��, �� �������� ������ �������� � ������ ������ ���.

    ����� ��� �� �������� ������������ ������� ������ ��� ������ � ������, ��� �� ��� ��������� ������������ ���������� ��� �������.
     
     
  • 4.395, ������ (396), 17:55, 24/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    ��� ��������� ������ � ������ ��������� ������ ���� ��������� ������ ������� � �… ������� ����� �ף����, ��������

     
     
  • 5.398, �������� (ok), 19:02, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ZFS ��� ������ � �������, ������� ������ ����� �� ��� ������ ������.

    «����� ����� �������� �� ����» — ��� ������ ���� �������. ���-�� ������ ������� �� ������� � �����, ����� � ������� �� �ӣ � ������� � ������� ������ ��������.

     
     
  • 6.437, ������ (436), 01:56, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ���� ������� �� �� ����� ��� btrfs �����, � ���� �������� ����� ��� ���� � �… ������� ����� �ף����, ��������

     
  • 1.3, soarin (ok), 07:54, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +5 +/
    ��� ��� ��������� 😮

    � ��� ��� ReFS (��� ��� ���)? � ��������� ������?
     
     
  • 2.4, ������ (4), 08:01, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –3 +/
    legacy ��. �������� ������ ������� ����� �� ��� �������� ��� ntfs � ������ ���������� ��, ������ ������������ � �����, ���������� ������ ���, �� ��� ��� ������� — ��� �������� ������������, �� ���������� ������������ — ����� ���-�� ����ף� ���� �� �ţ? � ��������� �� ������� ������, ����� � ������� �� ���� ������� ���������� ���� ����.
     
     
  • 3.16, maximnik0 (?), 08:52, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +5 +/
    � ��� �������� ����������.������������ ,3 ������ ����� ����� ����� ������ .��� ������� ���������� �� �� �������� � �������������� � ������ � ������.�� ��� ����������������� ����� �� ��� �� ��������� ������������.�������� ���������� ��������� ���������� ������ mkfs, ��� ��� ��������� ����������� � ��� �������� ������� ��������������� ������.
     
     
  • 4.28, ������ (28), 09:43, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >�� �� �������� � �������������� � ������ � ������

    � �� ������ — ����� 10 ��� �� «�����», � ��� � ntfs �� ���������������� � ��ģ������ ������� �� �����. ����� ����� ������������ ��� ������ ������, �� �������� �� �������� ������ ����������.

     
     
  • 5.39, � (??), 10:02, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ��� � �� ��������.. ���� �������, ��� ������ ��� ������ �������� ��������� ������ ��� ������ ��� ������ ������� ��� �ӣ ������� � �ӣ ���� ���-�� ���� � ���� � ����� �������� �� �� ����� �������� ��� ��� ���� ������� �� �����.
     
     
  • 6.178, ���. (?), 17:08, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ��� � �� ��������.. ���� �������,

    ��� �� � �� ���� — � ��� ��� ���� ����.

    � ��� ����� ������ ��� ��� �������, ����� ntfs �� ��������. �� ��-������ ����, ��-������ ��� ��� ��������������� � ��� ��� ������������� ����������� «��������� windows store».

    ���� ������� ����� ����� ��� � 2022 �������� � refs ��� �� �������, �� ��� �������. (� ������ ��� ������ ����� ��� �� «�������» ��� ���. �� ���-��� ����������� � �����. ��� �����-�� ��������������� ������� ����� �������� ���� � ���������� ���������, � ��� ������ �� ��� ������������� ��� ���������� ���� ��� �������� ������-�� �� ����������.)

     
  • 5.143, AleksK (ok), 15:15, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ��� � ntfs �� ���������������� � ��ģ������ ������� �� �����

    ���������������� ntfs? ��� �����? ��� �� ����������� ����� �������, � ��� ���� cow ���.

     
     
  • 6.202, U202204161753 (?), 20:17, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������: � ReFS ���������� ������ ����������� NTFS �� �����������.

    � ��� — ����.

     
  • 4.36, anonymous (??), 09:56, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    � ������ ������ �������� � ������������ ������ windows 11
     
  • 4.212, ������ (), 20:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ��� ������� ���������� �� �� �������� � �������������� � ������ � ������

    ���������� ��������� ������ �������� IFS? �� ���, ������ � � ��� ���� ������ ������� ������� ���� ��������. ��� � ������� ���������� :)

     
     
  • 5.301, maximnik0 (?), 08:01, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >���������� ��������� ������ �������� IFS?

    �� ���� ��������-��� �������� � ������. ReFS �� ����������� ������,������� ���� ntfs.� ��������� ��� �� ���� �������� � ��� ���������� ��� ����. �� �������� ���������������.�� ���� ��� ��� ����������� ������� �� ����������� ��� ��������� ��������� ��������������� �� ��������� ������ ���� ��,�� �������� ������� ������.� ������ � ��������� ������ ��������� ��������� �������.

     
     
  • 6.334, ������ (), 19:58, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    ��� — � ������ ���������� ����������� ���, ������, ������� � ���� �� ��������� … ������� ����� �ף����, ��������

     
     
  • 7.353, maximnik0 (?), 22:21, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������� MSDN �������� ��� �������� ,��� � ������� ��� ���� ���� ������ ���������… ������� ����� �ף����, ��������

     
     
  • 8.361, ������ (), 01:49, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � IFS SDK ��� ������� ��� �������� �� ��� ������������ ��� ����������� ������ �… ������� ����� �ף����, ��������

     
  • 6.388, ������ (388), 14:28, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� ���� ��������-��� �������� � ������. ReFS �� ����������� ������,������� ���� ntfs.� ��������� ��� �� ���� �������� � ��� ���������� ��� ����.

    �� �����, ����� ����� MS, ������� � ����������� ţ �� ����������. �� ����� �� ����, ������� ���� �ݣ �� �������� ��������, ��� ������� ������� ��� � �� �����.

     
     
  • 7.412, maximnik0 (?), 22:02, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� �����, ����� ����� MS, ������� � ����������� ţ �� ����������. ��

    > ����� �� ����, ������� ���� �ݣ �� �������� ��������, ��� �������

    > ������� ��� � �� �����.

    � ����������� ����� ? �� ����� ��� � ������ ������������ � ����� ����� ����������� ����� ������������ ? �� � ������ ��� ��������� ������ ���������� ��� ������ ����������,���������� ������ �����. ��������� ��������� � ���� ������ ���� ����� ������������ ������ ����������-�� ���� �� ���� ���� �������� ����.

     
  • 5.320, ������ (320), 13:02, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    �� ��� �� ��… ���� �� ������� �� DEC ������, �� �������� ibm …
     
  • 2.40, ���. (?), 10:03, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –6 +/
    ��� ��� ��������� � refs (� ���, ��������� ������������� — ��� �������� � ����� ���������, �� �������� ������� ��������� � ��������� (���) ��������� ������� ���������� ��� ���������� — ��������� ��� ������� ���� �� ������ ����� ��� �������������)

    �� ���� ������ �������� ��� ��� �� ��� _��������_ � �� ��� ������� ������. (������� ���� ntfs � ������� ��� ������ ������� �@����� ����� � �� ���������� ������ ���� �������� — ������� ��������� � ��� ���� ������� ����)

    ���� �� ����������� ������� ���� ���������� ��� ���������� ����� ��������� (�� ��, �� �����, ����� 64T) � ��� � �� ��� �-�� — �������������� — ��� ���� ���� � ��� ����� �������� ������� �������� � ���������.

    ��� ������� ������������ ����� ���������� ntfs. ��� � �� ext4 �� ����� 74�� ����.

     
     
  • 3.70, Admino (ok), 11:13, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    > ��� ��� ��������� � refs

    > ���� �� ������ ����� ��� �������������

    �� ��.

     
  • 3.75, ������ (75), 11:30, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +4 +/
    ������ ��� �� ���������, ���� ���� �� ������ ��������.

    ���� ������ ���� � ����������� ��������� ReFS � NTFS �� ����� ����� ����� � Windows Server. ���-�� ��� ����� �������������� ������� ���� ������� � �� ������ �� ����� ���� ����. ���� ������ �� �������� � ReFS ���������, ��� ����, �� �������� � NTFS ������ ������� ��������.

     
     
  • 4.87, ���. (?), 11:59, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –10 +/
    ��…����� � ���� ������ ����. ���� ������ ���� ���������� ��� �������� ���� ���� �����.
     
     
  • 5.90, ������ (90), 12:18, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +7 +/
    �� ���� ������� ReFS ���

    > �� ��� _��������_ � �� ��� ������� ������.

    � ����� ��� ��

    > ���������� ��� �������� ���� ���� �����.

    ���, �� ���� ������� �����, ���� ����� ������.

     
     
  • 6.101, ������ (101), 12:49, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +9 +/
    ��� �� ����� �������, ���� ��� �� �������� �������.
     
  • 6.102, ���. (?), 12:49, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –5 +/
    �� �� ��������� �������� �� ���������� ���������� ������� �� ��� �������� ������?
     
     
  • 7.118, ������ (118), 13:51, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ������� ���, ���� ������ «��������» �� ������������� ��� ��
     
  • 7.177, ������ (177), 17:06, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������ ����� �������� — ��� �ݣ ���������� ���������.
     
     
  • 8.187, ���. (?), 17:24, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� — ������� � ���� ��� ��� �������� ������-�� ������� ���� _��������_ � _���… ����� �ף����, ��������

     
     
     
  • 10.204, ���. (?), 20:38, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    ��� �� �� ��� �� ����� — ��� ����� �������� ���������� ��������� �� ���� ������ … ����� �ף����, ��������

     
     
  • 11.221, ������ (90), 21:21, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���, �� ������, �������� �� �� ���������� ��������, � �� �� ������ ���������� ��… ����� �ף����, ��������

     
     
  • 12.250, ���. (?), 22:54, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �, ���� �� ��� �� ��� ��������� �� ������ � ��������� ���� ����� ��������, � ��… ����� �ף����, ��������

     
     
  • 13.274, ������ (), 01:37, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ��� ���� ����������� ���������� � � �� ��� ����� btrfs �� �� ��� � ��� ������… ����� �ף����, ��������

     
     
  • 14.308, ���. (?), 09:11, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��, ����������� ������ �� ��������, ������� �������� ������ �� ����� � ���� -… ����� �ף����, ��������

     
     
  • 15.335, ������ (335), 20:19, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��� �� � ��������� ������������ ��������� ��� ��� ��� �������� ����� ���� ���… ������� ����� �ף����, ��������

     
     
  • 16.337, ���. (?), 20:48, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������� ��� ��� ��� ����� ����� �� ��� �����������, ���, ��� ����� � ������� … ������� ����� �ף����, ��������

     
     
  • 17.362, ������ (), 02:17, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � �� ���� � ��������� �������� ��������� ������ ����� ������� ������� �� ������… ������� ����� �ף����, ��������

     
  • 12.273, ������ (), 01:34, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� � ���� ������ ����� ������� �� ���� ��� ��� �������� ������������ ����� � ��… ����� �ף����, ��������

     
     
  • 12.252, ���. (?), 23:08, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    �� ��� � �������� ������ ����� ��-� �� � ������������-�� — ��, �� ���� �-�� ��… ������� ����� �ף����, ��������

     
     
  • 13.324, ������ (324), 15:01, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��������, �� ����-������ ��� ReFSUtil ��� � � ����� ���� �������� �������� ��… ����� �ף����, ��������

     
     
  • 14.331, ���. (?), 19:13, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��� �� ���� ������� �� � ���� � ��� ���� ��� ������ ������� ���� ����� ��… ������� ����� �ף����, ��������

     
  • 6.218, ������ (), 21:13, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ���, �� ���� ������� �����, ���� ����� ������.

    �� ������ ��������, ������� ��������� «���� ������ ����� �����, ����� ���� � ����� — ������ ���-������ ������, ����� ��� ���� �…��!». ��� ��� � — �� ����� — ��� ���������� ��� ����������. �� ��������� ���� �����. ��� ����� ������� �����������, ��� ������ ������� ���������. ��� � ��������� �� ������� �����, ������� ����� �����������.

     
  • 3.89, ������ (90), 12:09, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > ��� � �� ext4 �� ����� 74�� ����.

    � �� ����� ������ ���� �������� NTFS, ���-�� ����� 1988? ������� �������.

     
     
  • 4.105, ���. (?), 12:54, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –2 +/
    >> ��� � �� ext4 �� ����� 74�� ����.

    > � �� ����� ������ ���� �������� NTFS, ���-�� ����� 1988? ������� �������.

    ��,������������. �������� ���������� �� ��� ����� — ��������� ����. ���������� ��������� ���� ��������. ������� �� ��� � ext4 ������� ������ � �� �� �� ����� — ��� ��� ���������� �������������� ���������.

    ���������� ��������� ������, ��� �� ��� ��� �� ����� ������ ������.

    ��� ��� ����������� ������� ��� ����� ��� ���-�� (� � ������ ������� �������� ����������� ������) — ������� refs, �� ��� �� ���� �� ��������������� �������� ntfs � �������� ������������� �������.

     
     
  • 5.110, ������ (90), 13:14, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    > ������� �� ��� � ext4 ������� ������ � �� �� �� ����� — ��� ��� ���������� �������������� ���������.

    ����������� ��������� ����, ��� ������� «������ �����», � ��� «���������� ��������» ��, ����������, ���������� �� �����. ��� � ����� ������������ ��� ����, ��� � ext � hpfs/|ntfs ��������� ������ ��������� �����, ��� ���������� �� ��� ����� �� ��������������.

    � ��, «�� ����� ������ ������» ��� �� � ����� ������ ����. ���������� ������ ��������� � ������� �� ���������, � �� � ���������� �������, � ������ ������� ntfs ��� ����. �������, ��� ��� ����� ��, ������� �� ��������� ������� ���������� ������������� ��� ���� ���������� ������, ����� �� ��� �*� �� �������� ����.

     
     
  • 6.275, ������ (), 01:44, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –2 +/

    ������ ������� ��������� ��� ��� �������� ������, �������� �� ��������, �����… ������� ����� �ף����, ��������

     
  • 5.145, AleksK (ok), 15:17, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ����� � ����� ������������� ntfs �������� cow?
     
     
  • 6.149, ���. (?), 15:30, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +3 +/
    � ��� ������ �� �������������, �� ��� ������ ������. ����� ���� ��� ���� � ���� �����, ������������� �� ���.

    ������ �� �������� ���������� ��������� ��� ������� ������ (������ btrfs � ��������� ��� ������ ��� ������� ��� ���� ���������� �����������) �� ������ ����� � ������������ ��������.

    ��� �� ���� cow �� ���� �� �������� ���-�� ������� � ������.

    (� ��, 64x write amplification � ��������� � �� ���� �������)

     
     
  • 7.152, AleksK (ok), 15:44, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –2 +/
    > � ��� ������ �� �������������, �� ��� ������ ������.

    ��� ��� ������ � ������ 90-� � ��� �������� ��� � ��������.

     
     
  • 8.156, ���. (?), 15:59, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –3 +/

    ��-��, �������-������� ����������� �-��-������� — ������ ���� ���� ������� ���… ����� �ף����, ��������

     
     
  • 9.163, AleksK (ok), 16:21, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    � ����������� ���� �� ����� ��� �������� ������� �� ��� ����� ����������� � btrf… ����� �ף����, ��������

     
     
  • 10.171, ���. (?), 16:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ��-�-������������ ��������� ����� � refs ������ ��� microsoft … ����� �ף����, ��������

     
     
     
  • 12.185, ���. (?), 17:19, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � �� ��������� ������� ����� ������ ���� �������� — ������ ��� ���� ������ ���… ������� ����� �ף����, ��������

     
  • 7.219, ������ (), 21:18, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ���� ��� �� ����� ������� ����-����� �������� �������� ��� ���������� ����… ������� ����� �ף����, ��������

     
     
  • 8.255, ���. (?), 23:22, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    �� ��� ����� ����� � ������ ��� ���� ���� — ������� ����� ��������� — � refs ���… ������� ����� �ף����, ��������

     
     
  • 9.265, ������ (), 00:12, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� �� � ����������� ��� NTFS ������ ����, �������� ����, ������������ � � �����… ������� ����� �ף����, ��������

     
     
  • 10.268, ���. (?), 00:37, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ��� ��� ���� � ���������� ����� ��� ���������� � ���� ��� �������� ������ �����… ������� ����� �ף����, ��������

     
     
  • 11.272, ������ (), 01:22, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� � ��� ���������� ����� ��� ����������, ���� �� �� �� ����� �� � ��������… ������� ����� �ף����, ��������

     
     
  • 12.377, ���. (?), 09:48, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ������� ������ �� �� ����� �� ���� ������ ������ ����� ��� ����� ����� �� � ��… ������� ����� �ף����, ��������

     
     
  • 13.397, ������ (), 18:37, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����, �� ���� ������� �� ������ POSIX ������, �� ���������� ��� �������� … ������� ����� �ף����, ��������

     
     
  • 14.400, ���. (?), 20:06, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    �� ��-6�� �� ����� ���� �������� ���� ������� posix link — � ��� ���������� ��… ������� ����� �ף����, ��������

     
     
  • 15.438, ������ (436), 02:17, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ������ �� ������ ��������������� �������� unshare �� ���� ���������� ������ … ������� ����� �ף����, ��������

     
  • 3.214, ������ (), 21:01, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� ���� ������ �������� ��� ��� �� ��� _��������_ � �� ��� ������� ������.

    ������� � btrfs ���������� ����������� ����� � ��� � ���. ������� ���� ��� ������� �� 20 �� ��������, � ��� ��� ����� ��� �� ������ ������������� � �������� ������. � ������ ������ ��� �� ������ ���� EXT4.

    > ��� ������� ������������ ����� ���������� ntfs. ��� � �� ext4 �� ����� 74�� ����.

    �������� � �������������� ���������� ��� �� ������� ����� ������ ����. � ��� �� NTFS ��� ���� ��������� ���� ������ 90� �� ������ ����������. �� ������ ���� — �������� �� btrfs � _����_ ������� � ������ �������� vs ntfs � ����� ���� ������ � ��� ����� ����������� � ���� � 100� � ����� ������ �� ��������. ������ ����������� �������� �������� � ��������� ������ — �� NTFS ��� ������ ���� � ��.

     
     
  • 4.222, ������ (324), 21:25, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    ������ ��� �� �����-������ ��������� � � ������ ������ ����� ������� �� ���� «������������ ����� � �������, � �� � ���� �����c � �� �� ����� �� �� ���� �������� ������ ��� ����� ������� �������»
     
     
  • 5.266, ������ (), 00:23, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� �� ����� �� �� ���� �������� ������ ��� ����� ������� �������»

    ��� �� � � ��� ���� ������� ��������� ���� ������ ������� �� � ����� � �������� �� ���� �� �������� � �������� ����. ������������� ����, ��� � ����� ������� ��� ����� NUL (0x0) � «/». ������� «c:\trololo» — �������� ��� ����� � linux. � ������ ���������� ��� � ����� ������ � ����� �������, �����.

     
     
  • 6.269, ������ (324), 00:39, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ��� �� � � ��� ���� ������� ��������� ���� ������ ������� �� � ����� � �������� �� ���� �� �������� � �������� ����.

    �� �����? ���� �����-�� �������� ������� ����� «������ ��� ����»? ������ ��� �������, �� ������� ������ �����ce���� ������� � ��������: �� �������� ��� �������������� ������������, ������� ����� ���� ������ �������� �� ������� � �����, ���� ����� ������ ����� ��� ������ � ��� ��������� ����������� ���������� �����.

    > ������������� ����, ��� � ����� ������� ��� ����� NUL (0x0) � «/».

    ���� ‘?’ � ‘*’ ��� ���?

     
     
  • 7.276, ������ (), 01:55, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������������ �������� � ������ ������ ������ ��� �� �� ������ ����� ��� ��� ���… ������� ����� �ף����, ��������

     
     
  • 8.287, ������ (324), 02:52, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ������������, ��������, — ����� ������ ������� � 8 3, � ������ ������ � �����-��… ������� ����� �ף����, ��������

     
     
  • 9.292, ������ (), 03:39, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ���� ����� ������� �� ������� � ����� ������� ����� �����, � ������ — ���… ������� ����� �ף����, ��������

     
     
  • 10.323, ������ (324), 14:55, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ��������� �����c ������, ����� ��� ��� �������� �� ��������� ����������� �… ������� ����� �ף����, ��������

     
     
  • 11.336, ������ (), 20:47, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    �� �� �� ��������, �� �� ������������ � �������� ��������� �����-������ ���, ��… ������� ����� �ף����, ��������

     
     
  • 12.348, ������ (324), 21:41, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��, �� �� � ���� ������ ������������ WM DE ���� ������� ����������� � ��� ��… ������� ����� �ף����, ��������

     
     
  • 13.363, ������ (), 02:58, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �������������, �� ���� ��� �� �������� ���� �������� ��� ������������� �������,… ������� ����� �ף����, ��������

     
     
  • 14.387, ������ (324), 14:01, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������-�� � �������� ��� ����� ����� �� ����� ����� � � ����� � ���������� 1005… ������� ����� �ף����, ��������

     
     
  • 15.421, ������ (), 01:26, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ��� �� �������� �� ���� �� ���, ������������ ��������� �����, ���� ��� ���… ������� ����� �ף����, ��������

     
     
  • 16.426, ������ (324), 02:48, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ����, ��������� ���������� � ��������� ������ ������� � CDE, � � �����co��� … ������� ����� �ף����, ��������

     
     
  • 17.439, ������ (436), 03:18, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��� ��� ��� ������ ����� ������� ����� ��� ������� � � ������� � �����… ������� ����� �ף����, ��������

     
  • 11.369, maximnik0 (?), 05:19, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ����������� ���� �������� � ���� ����� �� ����� ������ ������,���� � ���� ���… ������� ����� �ף����, ��������

     
     
  • 12.386, ������ (324), 13:13, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    df -i �� ������ ������� ��� �������� 0 � ����� ������ ������ ��������� � �����… ����� �ף����, ��������

     
  • 9.339, ���. (?), 20:59, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ��� ����� ������������ �������� �������� ��� ��������� � �� — ������ ���� ������… ������� ����� �ף����, ��������

     
     
  • 10.352, ������ (324), 22:08, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ���� ���� ��� �� ����� usr include linux limits h � ��� NAME_MAX �� ��� — ��… ����� �ף����, ��������

     
     
  • 11.354, ���. (?), 22:26, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ������������� ����� ��� ��, ������, �� �������� ������� �� ��������� � ��… ����� �ף����, ��������

     
     
  • 12.368, maximnik0 (?), 04:47, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����������� �� ���� ������� �� �������� ����� ������� � VFS ������� �� ��������… ����� �ף����, ��������

     
  • 9.401, ���. (?), 20:12, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���������� �� ���� �� ������ ������ ��� ������ � �� �������� — �� ������ ���� �… ������� ����� �ף����, ��������

     
  • 9.407, ������ (407), 20:35, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � �� ����������� � ������� ������ ������ ����� ����� ������-�� ������� ��������… ������� ����� �ף����, ��������

     
     
  • 10.410, ������ (324), 21:36, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� �������� ��������� ��������� ��� ��, ��� ���� �� ������� � ������ ������� … ������� ����� �ף����, ��������

     
     
  • 11.414, ������ (407), 23:37, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ���� ������� ��� ������ ������ ��� ������ ���-��� ������������, ������� � �… ����� �ף����, ��������

     
     
  • 12.416, ������ (324), 23:46, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ��� ������� �������� ����� ��� �������� ���� � �� ������, � ���� ������ ����… ����� �ף����, ��������

     
  • 11.415, ������ (407), 23:45, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � LibreWolf � Ungoogled Chromium � Flathub � �ӣ �������� ������, � � Firefox… ����� �ף����, ��������

     
     
  • 12.418, ������ (324), 23:50, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ������ ����, ������� ������ ������, ������, �������, ���� ��� ���� � ���� ��… ����� �ף����, ��������

     
  • 8.300, soarin (ok), 07:47, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    � � �� ���� � ��� ��� ���� ������ �� ���� 9757 ���� 129320 � � ��� … ����� �ף����, ��������

     
  • 7.403, ������ (407), 20:24, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    bin bash touch rm �� ���� ������ � ����� — ������� � ������� ����… ������� ����� �ף����, ��������

     
     
  • 8.411, ������ (324), 21:49, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���� ���-�� ������ �������� ������ � ����� ��������, �� ��� ���� ���� �� �������… ������� ����� �ף����, ��������

     
     
  • 9.441, ������ (436), 03:54, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ������ ����, �� ���� ��� � ���-�� ������� 100� ������ � 1 ����, ������ ��� ���… ������� ����� �ף����, ��������

     
  • 6.375, maximnik0 (?), 09:07, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >� ������ ���������� ��� � ����� ������ �

    ���������, ��������� ����.������ � �������������  �� � ��������� posix.� � ��������� � 7 �� �������.� 95-�� ��� �� ��������.���� ������� ���� ���� ������������. �������� � nt4 �� ����� ����� ���� ����������� ������ ������� ����� �����.

     
     
  • 7.402, ���. (?), 20:14, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������������. �������� � nt4 �� ����� ����� ���� ����������� ������ �������

    > ����� �����.

    ����� backup api ������� �� ��� ��� �����. � ����� ������� ������������� ���� �� ������������� ������ ��� ����� ���� ������.

     
     
  • 8.413, maximnik0 (?), 22:17, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���,� ���� � ���� posix ��� ��� ���� �� ����� � ����� ������ � ��������� �� ����… ����� �ף����, ��������

     
  • 5.349, maximnik0 (?), 21:45, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >������ ��� ����� ������� �������»

    � ��������� ��� Posix �������������. � btrfs ���� ����������� � ���-�� ���� �� ��� ����� ����� ���������.� ���� ���������� � �� ���� �� -ntfs � exfat  �� ������� � ������� ���.���� ���� �� ������� ����� ������������ ������� �����,�� ������ ��������� � ��������� ����������� -������.

    ���� ���� ���� ������������� posix �����������,255 �������� ������ �����,��� ����� Unix . ������ ��� ����� ��������� utf-16.� ��� 2 ����� �� ������.� � linux �� ��� ��� 8 ������ ��������� �ͣ�.

     
     
  • 6.355, ���. (?), 22:32, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > . ������ ��� ����� ��������� utf-16.� ��� 2 ����� �� ������.�

    unicode16

    � utf16 ��� �� �� ����� ��� � utf8, ��� ��������� ���������� ������ — �� ����������� ����� ������� — ��������. � ���� �������������� ��� ��� ������� �� ������. (��, ��� �…����� — ��� _���������_ ������������� ����������� ��������� ��� �� ��������� �������� ������ ���� ���� ������� � ������� �������������� ������������� ��� ��� ���� ��� ���� �������.)

     
     
  • 7.364, ������ (), 03:05, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ������� �������������� ������������� ��� ��� ���� ��� ���� �������.)

    �� ��� ��������� ��, � ���������� � ���� � ������� � UTF8 ���������� ����� ���� 99.9% �������� ������� �� ����� ������� 1-�������. � � ��� ��� ��� ���������� � 4 ���� �������, �� �������.

     
  • 4.260, ���. (?), 23:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������ ����� ���� — �-����� � ��������� �� ����� ������ � ���������� ����� �-��� ���� �� ��������� �������� ���� ��.

    � �������� ��������� ��������������� ����������� — �� ������.

    ������ �� ������ ����. � �� �� 4 �� �� ������ ��� — �� ������. write amplification, ���. ��� ��� ������������ ������� ��.

    > �������� � �������������� ���������� ��� �� ������� ����� ������ ����.

    ������, �� ��� �� ����� ����� ���� ������� �� �������� ������ � ����� ��������.  � ������� �� ���� ��� �� ��� ����� ������� ������.

    ���, � �������� ������ ������ ��� ������ ���������. � �� �� ��� �����-�� ����������� 10G �����. ��������� � ������ ������ (����� �������� ������ 10G)

     
     
  • 5.267, ������ (), 00:34, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������ ��� �������, ���, �� �� ������, �� ���������� �������� ���������� SSD �� … ������� ����� �ף����, ��������

     
     
  • 6.271, ���. (?), 00:53, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� �-��� — ��� �� �������� ������ �������� linux kernel — ��� �������� ������� … ������� ����� �ף����, ��������

     
     
  • 7.277, ������ (), 02:05, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ���-�� �� �������, ���� ��� �������� �� 10G ����� ��� ��� �� ��� ���, ���� � … ������� ����� �ף����, ��������

     
     
  • 8.341, ���. (?), 21:12, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    �� ������ ������ ������� �� ��������� �� ��������� ����� ����� �� ������� �����… ������� ����� �ף����, ��������

     
  • 2.359, mumu (ok), 23:36, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������� ��� ���������� � ������� �����. �� �������� ��� ���-�������� �� � ���� ������ ������������ ������: ��� ��� ntfs ������ �������� � ����� �� ������, refs ����������. ��� �������� ��� sql � ������� hyper-v �������� ����� ���� ����������. �� �� ��������� ������ ������ — ���� ����� ��� ������������.
     
  • 1.5, ������ (5), 08:02, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +1 +/
    >��� ����������� �������� ��������� Quibble.

    � ������ �� freeldr � �� �� XP?

     
     
     
  • 3.26, ������ (26), 09:36, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ��������� ���������� ������. ���� �����������, �� ������� XP �� �ģ�.
     

     
  • 2.12, n00by (ok), 08:33, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +5 +/
    ���������, ������� �������� � � ����� ������� ��������� �� ZFS ���� ������� ������ Linux.
     
     
  • 3.18, maximnik0 (?), 08:58, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � � ��� ��������? ��� �� ���� ���������� ������� ������� ����� ������ ���,������� ���������������.
     
     
  • 4.30, ���. (?), 09:47, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    � ��� ��� ������� �������� ������� �� �������� — �� ��� ������, �� � ��� �� ����� ������� � ������� ������ ����� ������ ����������.
     
     
  • 5.45, maximnik0 (?), 10:15, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������ ��� ��������� � �� ��� ��� ����  � �������. � ������ �� �������������, ����������� � �� �� UEFI ������ ���.���������� root, �������������� �  ZFS,�������.�������� ��������� � �����. ��� �����������,��������.�������� ��������� �� ���� �� ������,������� ����� ,�������� �� ��������� ���� ����������.�� ���� �������� ��������� ����� � ���������� ��������� ,�� ��� �� ���� BTRFS ,������� ������� �������.
     
     
  • 6.48, ���. (?), 10:23, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –3 +/
    ��������� ���-��� �� ����� ��� �������, �� ����.

    ������ �-�� ��� ������ ������� — �� ��� �� � ���� ��������� �� uefi � /boot � ����� ����� — ���� �� ����������������� �����������.

     
     
  • 7.53, maximnik0 (?), 10:37, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� uefi � /boot � ����� ����� — ���� �� �����������������

    > �����������.

    ����������� �� 15 ����� ����� ������������� � ������.� ��� �������� ?

     
     
  • 8.58, ���. (?), 10:49, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ������ ��������������, � ������ ���������� ������ �� ������� ext4 ������ ��� … ����� �ף����, ��������

     
  • 7.76, bOOster (ok), 11:32, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    FreeBSD �� ZFS �� ��������� �������� — � ������ �� �����.
     
     
  • 8.83, ���. (?), 11:48, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ��� � �� �� ��������� �������� ����������� � ������� �����, � �� � ��� ����� � �… ����� �ף����, ��������

     
  • 8.104, n00by (ok), 12:54, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������ �����-�� ����� ������ �� ���� � 1 �� ��� � 4 �� ���������� ���-�� ����� … ����� �ף����, ��������

     
     
  • 9.106, ���. (?), 13:01, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ��������,� ���� ������� � ��� �� ��� �������� — � ������ � �� � �������� — �… ������� ����� �ף����, ��������

     
     
  • 10.114, ������ (114), 13:27, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���������� ��� ZFS ����� 2 Gb ������ ������������� 4 Gb ������� ������� buildwor… ����� �ף����, ��������

     
     
  • 11.131, ���. (?), 14:42, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���� ������ ����� ���� zfs ��� �������� ��� ��� ���� ��� ��� ������ ������ ��… ������� ����� �ף����, ��������

     
  • 11.278, ������ (), 02:07, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� � btrfs � �� �������� �������� �� ������� � 64 Mb RAM �� ��� �������� �� ���… ����� �ף����, ��������

     
  • 10.128, n00by (ok), 14:26, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ������ �������� �����, ��� ������ ���� � 15-�� ���� ������� ��� ���� ���� �… ����� �ף����, ��������

     
     
  • 11.132, ���. (?), 14:44, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ���� ���� ������ ������ � ������� �� � �������� �� � ��������� ������� ��� … ����� �ף����, ��������

     
     
  • 12.297, n00by (ok), 07:11, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � � �������, ��� ���� ������� — ��������� ������ ��������� ����� ��� ������ ���… ����� �ף����, ��������

     
     
  • 13.317, ���. (?), 11:05, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ���� ���� �� �� ����, � � ��� ��� � ����-�� �� ����� ���������� ������� ��… ������� ����� �ף����, ��������

     
     
  • 14.326, n00by (ok), 16:56, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ����� ��������� �����������, ��� ��� 4 �� ����� � ���� 901, ������� ��� ��-��… ����� �ף����, ��������

     
     
  • 15.330, ���. (?), 18:26, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �, �����, ��� ��� ����� ���� ����� ���� �� � �� ���������, ������ ��� � ���� ��… ����� �ף����, ��������

     
  • 6.49, ������ (49), 10:29, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    zfs �� �� ����� ����� ������ ���������? ������ �� ���� � ����� ������ ����� ��� ���, ����� ����� �������
     
     
  • 7.63, ���. (?), 10:53, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ����� � ������� ���������� �������� ������������� �� ����� �����, � �� ��� ��� ��� ���������� � ��������� � ������������� �������� �� ���� � ������ ��� �������� ���� ��� �� — ���� �� ��� � ��������.

    �� ��� � ��� �� �������� — � �����-�� ������� ������������� �� ������������ ���������������, �������� ��, ������-���������� ���� � ��������. ��� �������� � ������ ������ �� ���������.

    ������, ��������� �� thin lvm � �� ���������������. ���, ��� � ������� ��������� � ����������, ��� ���� � anakonda-ks ������ �����������. ������ ������ ������ �� ��������� (� ���������� ������� ��� �� � ������� �������� ����������) — ���� ����������, ������������ �����.

     
     
     
  • 9.279, ������ (), 02:09, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    �� ��� ������ �� ���-�� ���������� �� ����� ������ ���� � ��� ������ �� ���� … ����� �ף����, ��������

     
  • 7.77, bOOster (ok), 11:33, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ZFS �� � �������� �� �������� � ��������� «���� ��� ��������� ������». ������� ���� — ��� ����������.
     
  • 6.103, n00by (ok), 12:50, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ���������� root,

    > �������������� �  ZFS,�������.

    �� �� � ��� �� �������? ��� ���� ������� ���, � � ��� �������. �� � ������ ����� ����������.

    > �������� ��������� � �����.

    �� ���� � legacy ������? �����? ��� ��ϣ ������������ ��.

     
     
  • 7.108, maximnik0 (?), 13:09, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� � ��� �� �������? ��� ���� ������� ���, � � ��� �������. �� � ������ ����� ����������.

    �� ,����������� 1 ������,� ���� �� �� ���� � ������������� ������������.�� � ���� ������ ���.�� ������ �����,�� �����������. �� ������� ��� �� ������ ������,��������� ��������,�� ��� ������� ������� ������ ��������� ������� �� �������� �� ������ �����.�� � ����� ������ ��� ��������� ����� ������� ���������������. ������ �������� ��������� �������� �� ���������,������� ������� �������.

     
  • 7.150, ���. (?), 15:36, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� ���� � legacy ������? �����? ��� ��ϣ ������������ ��.

    �� ���! � ��� — ��… �� ��������… (�� ����� � ��� ���������� �������� ������ ������ by-id, � ��� ��� ���� ��������� ���� ��� ������ ����� �����������, �� ��� � �� ������ ���� ���… ����, �-�, �������…)

     
     
  • 8.299, n00by (ok), 07:43, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � �� �����, ����� ��� ��� ��� ���� ������� ������, �������� �� ������ �� �����… ����� �ף����, ��������

     
     
  • 9.316, ���. (?), 10:50, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �������� � ������������ grub �� ����� � ����������� zfs, ��� ����� ��� �� �����… ������� ����� �ף����, ��������

     
     
  • 10.327, n00by (ok), 17:10, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    grub � ������ ��� ������� � libzfs ������� �������������� ��� ���������� zfs �… ����� �ף����, ��������

     
     
  • 11.329, ���. (?), 17:52, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ������ �� �������� ����� — ��� ��� ������� libzfs, ���� ��������-�����������… ������� ����� �ף����, ��������

     
     
  • 12.374, n00by (ok), 09:02, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ������ gentoo — �� ���� ������ �� ������ �������, � ������ ���� USE libz… ������� ����� �ף����, ��������

     
     
  • 13.383, ���. (?), 12:27, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ������ �������� �� �� ���� ������� � ����� ���������� ������������ ������ ��� … ������� ����� �ף����, ��������

     
     
  • 14.392, n00by (ok), 16:51, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ��ۣ� src grub grub-core osdep unix , � �� ������ src grub util � �� ���� ���… ������� ����� �ף����, ��������

     
  • 14.393, n00by (ok), 17:01, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� � ����� �� ���� ���-�� ����� boot override — ��� ��� ����������� ������ … ����� �ף����, ��������

     
     
  • 15.404, ���. (?), 20:25, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���� ��� ����� ������ ����� ������ ���� efi shell ����� ������� ��������� � �� … ������� ����� �ף����, ��������

     
     
  • 16.430, n00by (ok), 07:45, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ���� ���������� ��� ����, ��� ������������ ����� ���� ����, ��� ������ �������… ����� �ף����, ��������

     
     
  • 17.432, ���. (?), 09:30, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ���, ��� ��� ������ — ���, ����� ����� ������ ������� ����� ��������������, ���… ������� ����� �ף����, ��������

     
     
  • 18.444, n00by (ok), 07:43, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��� � ���� ������� �������� ������������, ����� �� ������������ ��� ���� �… ������� ����� �ף����, ��������

     
  • 10.338, ������ (), 20:55, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    Btrfs ��� — �������� ��� ��, ����� �� ������ � ����� ������ ������� �������� ��… ����� �ף����, ��������

     
     
  • 11.384, ���. (?), 12:37, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������� �� ���� ��� � ���� �����������, �� � �� ���� �� ����� ������������ �� ��… ����� �ף����, ��������

     
     
  • 12.422, ������ (), 01:59, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ���-�� �������� ���������� boot � zstd ��������� GRUB �������� � ������ unk… ������� ����� �ף����, ��������

     
  • 3.29, ���. (?), 09:47, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –3 +/

    ���, � ��� ������ � https openzfs github io openzfs-docs Getting 20Started — … ������� ����� �ף����, ��������

     
     
  • 4.41, ������ (49), 10:03, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ��� ���� �����-�� �� ���������� ���� ��� ���. �� ������� �� ��� �� ��������� � �����, �� ��������� ����� ���� ���� ���������. ����� �������� ��� ���������� ������� ��� ��� ����� � ������� �� ���������� (�������� ���� ������ �������������, ���).
     
     
  • 5.50, ���. (?), 10:29, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    �� ������ �� ��������� ��� ��� — �-�� �� ������� � ���������� �� �������, ������… ������� ����� �ף����, ��������

     
  • 5.80, bOOster (ok), 11:41, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� �� ���� ����� ����� ��������. ������������ GPART�� ����������� � ���������������. � ���������������. �������� � TrueNAS ������ ������ ����������� ������ — �������� ����������� �������.

    ������� SSD, ������ ��� �� 3 ������� — boot, cache, ZIL.

    �� boot snapshot/export/import — �� ����� ���� � readonly UFS ��� �������, cache � ZIL ������������� �������� ��� L2ARC � ZIL — ��� ���������� � ������.
     
     
  • 6.85, ���. (?), 11:54, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    > �� �� ���� ����� ����� ��������. ������������ GPART�� �����������

    ��� ���� � ��� �����. � ��� � ���������-�� diskpart ����.

    ������ �� � ��� ����!

    sgdisk -a1 -n1:24K:+1000K -t1:EF02 $DISK

    ��������� ����� — ��� ��� ��� �� ��cep � ������ ������ ���� ������� ���������-��? (� $DISK � ��� ���� ��������� — ��� � ���� ��� �� ���� ������������ ����� ����� ���� �� ���� ����� ����, � ���-�� ���� ������ �������������)

     
     
  • 7.119, ������ (114), 13:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >������ �� � ��� ����!

    >sgdisk -a1 -n1:24K:+1000K -t1:EF02 $DISK

    ���������� — ��� ������� ������� ������� � ���������� ������� ������� ��� ������������� ������������.

    ���� �� �� ������� �������, �� ���������� ����� ������� ������.

    ������� ��������� — ��� ����� �� ���� ��� ����������� ������� ������ �����������.

    �� ��� ���.

    ������� �� �������� ������ ��� �������.

    � ����������� �� ���� �������� — ����� �� ������ ����������.

    � ���������� ���� �� ������ ������ ���� ������.

    �������� ��� ���������� ������ ������������ ��� dual boot

     
     
  • 8.135, ���. (?), 15:04, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +3 +/

    ��, � �����������-�� ����� �� ���� � ��� ��� ����� — �� ��������� �� � ��, ��… ������� ����� �ף����, ��������

     
     
  • 9.173, ������ (?), 16:58, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � � Jl������ ����� ��������� ���� �� ��� ������ ��� ��� �� ����� ����� �� �����… ����� �ף����, ��������

     
     
  • 10.188, ���. (?), 17:33, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � � ������ — � ��� ���������� ����� �������� ���� ����������� disk by-id � �����… ������� ����� �ף����, ��������

     
  • 9.370, ������ (370), 05:51, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� sgdisk ������ EF02 BIOS Boot Partition gdisk internal code 0xEF02 ����… ������� ����� �ף����, ��������

     
     
  • 10.385, ���. (?), 12:43, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    �� ���� ��� ���������� ������������ �������� �� �������� ���� ������ ������ ����… ����� �ף����, ��������

     
  • 4.117, ������ (114), 13:49, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ��������

    https://openzfs.github.io/openzfs-docs/Getting%20Started/Ubuntu/Ubuntu�

    ���������� �������

    �� ������ ������� � ��� ���

    ���������� ��� ������� ��� ������� ������� �������, ������� ���� bpool, zpool.

    � ����� ������� ���������� ������� Ubuntu.

    ��� �� ��� ��������� ���������� ��� ��������� � legacy BIOS, UEFI bios. ��� ����������� �������.

    � ��������� ���������� ����� �����.

    �����-�� � FreeBSD �� ���� ������������ ������� ������ ������� � ������ �� ZFS.

    ���� ������� ����������.

     
     
  • 5.136, ���. (?), 15:07, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    «�������» ���������� ��� ��� ��������� � ������� �������. � ��� ������� ���� ����������� ����������� ���� �������� � ���������������� �������.

    ������ ��� � ��� � ��������� ����������, � ������� ��������� ������ ��������, � ��� �������� �� ���������� ������������ ������� ������ ������� �������� � ����������� �������.
     
     
  • 6.227, ������ (), 21:35, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    ��� �� ������� �� ������ ����, ����� �� �� ��������� � �������� ��� �� ���������… ������� ����� �ף����, ��������

     
     
  • 7.235, ������ (225), 21:50, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    � � ���� � ��� — ����������� � � �� ����� ������ ���� CODE u-boot-nanopi… ������� ����� �ף����, ��������

     
     
  • 8.280, ������ (), 02:18, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    � ��� �� � ����� ���������� �������� ��������� ������� ����� � ����� ���� ���� … ������� ����� �ף����, ��������

     
     
  • 9.318, ������ (225), 12:06, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � � ������� ���������� ����� ����, ��������� ������������� ���� — ����, � ��� … ������� ����� �ף����, ��������

     
     
  • 10.340, ������ (), 21:04, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    ��� ������ ����� ��� ������� ��������� ���� � ��� ����� ������� ��� ������� ��… ������� ����� �ף����, ��������

     
     
  • 11.356, ������ (225), 22:34, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��, ����� ������������� �� ��������� � ������������� ������� ����� — ��� �����… ������� ����� �ף����, ��������

     
  • 4.126, Kuromi (ok), 14:25, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� ���� ����� ��� ������� ���������� �� �������� ���������� �� btrfs ������ ��, «�����������» zfs ������ �������.
     
     
  • 5.137, ���. (?), 15:08, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ��� �����, ��� ����, ��� ����. ����� ��� ������������� ����� ������.

    ������ �������� �������� — ������� ������� ���� ��� � �� �������, �� � ������� ����� ��� ���� ��� �����.

     
     
  • 6.162, Kuromi (ok), 16:15, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ��� �����, ��� ����, ��� ����. ����� ��� ������������� ����� ������.

    > ������ �������� �������� — ������� ������� ���� ��� � �� �������, ��

    > � ������� ����� ��� ���� ��� �����.

    �� �� �� ������, � ��� �� ��� ���� ������� �������� �� �������. � ���-�� ��� ����� ��� ���� ��� ������ �����. � ZFS ��� ������� ���������� �����, � btrfs �� ��� ��� «����������, �� ��� ��������».

     
     
  • 7.189, ���. (?), 17:36, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� �� �� ������, � ��� �� ��� ���� ������� �������� ��

    > �������. � ���-�� ��� ����� ��� ���� ��� ������ �����. �

    �������� ������� — btrfs �� ������ � ��������-��-����������-������, ���� ������� ����������� ��� ��������� �� zfs �������� ����� ������.

    > ZFS ��� ������� ���������� �����, � btrfs �� ��� ��� «����������,

    > �� ��� ��������».

    ��� ����� � ���� ���� ���-�� � ���������. ��� ����� (�� ��� ���� ���� ������� ��� � ���� ������) — ���� � ���������, ���� ������ ����������� x64 WA. �� � lvm �� ������ ����� ��.

    � �������� ����� �������. ������� sds ���� ���� ��� �� ����.

     
     
  • 8.213, Kuromi (ok), 20:59, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ��� ������� ������������� �������, ��� ���������� — ������ ����� ��������… ����� �ף����, ��������

     
     
  • 9.259, ���. (?), 23:44, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ������ �� ���� ������� �������, � ������� ����� … ����� �ף����, ��������

     
  • 8.281, ������ (), 02:20, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    �������� ����������� �������� ������ � �������������� �� ����� ��� ����� �������… ����� �ף����, ��������

     
     
  • 9.325, ���. (?), 16:50, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � ������ � ������������� ��� ������� ��������, ������ �� ������ ����� btrfs — ��… ����� �ף����, ��������

     
     
  • 10.342, ������ (), 21:13, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ����� ����� �� ��� �� ������������� ������ ��� ��������� ��������� �� �������… ������� ����� �ף����, ��������

     
  • 3.146, AleksK (ok), 15:19, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � Ubnutu ������� ���������� ����� ��������� ţ �� zfs. ������ ����� ��� ����?
     
     
  • 4.286, Kuromi (ok), 02:40, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � Ubnutu ������� ���������� ����� ��������� ţ �� zfs. ������ ����� ���

    > ����?

    ��� ������ � ���������, � ����� �� ������ ������. ��������� ZFS ������ ���� �� ���x���� «is very low priority».

     
     
  • 5.298, AleksK (ok), 07:29, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ������ �� ������� ��� ������� btrfs ������ ����� �� ����� ��� ������� zfs � ţ ��������� � ��������� ���������. ����������� ��� Ubuntu �� ������� �� btrfs ��-��������� ����� �� ������� � �����.
     
     
  • 6.343, ������ (), 21:16, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������ �� ������� ��� ������� btrfs ������ ����� �� ����� ��� �������

    > zfs � ţ ��������� � ��������� ���������. ����������� ��� Ubuntu ��

    > ������� �� btrfs ��-��������� ����� �� ������� � �����.

    �� ���� ������ ��������� �� ��������� ������ �� btrfs ������ ������ � ��� ���� �� ������� �������� �������� ��������� ������, � ������� ����������� �� 1 ������� ���� / � ���������� subvolumes ��� ������� � ������, ��� ��� ����� ���������� ���������� «system» � «user data». �� �� �� ������ �������� ������ ������ ������ � ��������, ���? :)

    � ������ ��� ������ �� ������ � ���� � ����. ������� ��������� ��� �� ���. ���� ������ ����� ��������� ���������� ����, ������ ���.

     
     
  • 7.358, AleksK (ok), 23:17, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ���� � ����, ��� ��������� �� ��������� ����������� ������ ��� � ext4 ��� ���� ����������� ������� � zfs. � ��� ������� ������������ btrfs ���, ���������� ������� ���������.
     
  • 3.191, ������ (191), 17:57, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    >���������, ������� �������� � � ����� ������� ��������� �� ZFS ���� ������� ������ Linux.

    ���� �� ���� ��������. ������, ��� ��� ��� ��� �������.

     
  • 3.223, ������ (), 21:25, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � �������� � 1 ������� ��������� �� ������ ZFS ��� ����� �� ������, ������� ���… ������� ����� �ף����, ��������

     
     
  • 4.306, n00by (ok), 08:57, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    >> ���������, ������� �������� � � ����� ������� ��������� �� ZFS ���� �������

    >> ������ Linux.

    > � �������� � 1 ������� ��������� ��.

    «����, ��� ���������� ������������� �� ����������?» (�)

     
     
  • 5.344, ������ (), 21:18, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > «����, ��� ���������� ������������� �� ����������?» (�)

    ��� �� �����, � ����� ������ ��� �� ���� ������� ��� � �� �� ���� ��� ��� ����� �������� �����. � ���� ��� ������������� ����� ��������� ���������� ��������� �������, ���������� � ������� �� ���� �� ������������. ������� ��� �������������� �������� ��������� ��� ����� �� ������� ���� ��������.

     
     
  • 6.405, ���. (?), 20:33, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> «����, ��� ���������� ������������� �� ����������?» (�)

    > ��� �� �����, � ����� ������ ��� �� ���� ������� ��� �

    > �� �� ���� ��� ��� ����� �������� �����. � ���� ���

    > ������������� ����� ��������� ���������� ��������� �������, ���������� � ������� �� ����

    > �� ������������. ������� ��� �������������� �������� ��������� ��� ����� �� �������

    > ���� ��������.

    ����� ����, ����������. ���������� — ������ �� �� ������� ������� ���������, � ��� ������ �������� � �������. � �� ���-��� ���� ��� ����������� � �� � init=bash �� ������. �� ������ ������ ��� ������� � �� ������ �� � ��� �� ��������� ������� ��������. ���� ������������������� � ������.

     
     
  • 7.424, ������ (), 02:10, 25/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ����, �����, �� ������ ����� �������� ������ ���������� ��� ���� ���, ����� ���� � ������� ���� ����� �� ����.

    init=/bin/bash ��� ���������� ���� ����� � �������� ����� � ������ �����-������������ ������ ��������. ������� ��� ��������� ������ � ��� ����� ����� �������� ���� ��������� ���� ������ ����� ���������� ����. � ������ ��, ���� ��� ���������� ��� ������� ������ �� ������ ����� ���� ��� � ������ ����, ��� ������, ��� ����� ���� ������ �� ��������� � ���� ����� �������. �� �� ���� ������ ������ ����� ���� ��� ������ ��� ������� :)

     
  • 6.406, ���. (?), 20:33, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> «����, ��� ���������� ������������� �� ����������?» (�)

    > ��� �� �����, � ����� ������ ��� �� ���� ������� ��� �

    > �� �� ���� ��� ��� ����� �������� �����. � ���� ���

    > ������������� ����� ��������� ���������� ��������� �������, ���������� � ������� �� ����

    > �� ������������. ������� ��� �������������� �������� ��������� ��� ����� �� �������

    > ���� ��������.

    ����� ����, ����������. ���������� — ������ �� �� ������� ������� ���������, � ��� ������ �������� � �������. � �� ���-��� ���� ��� ����������� � �� � init=bash �� ������. �� ������ ������ ��� ������� � �� ������ �� � ��� �� ��������� ������� ��������. ���� ������������������� � ������.

     
  • 1.9, n00by (ok), 08:27, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +3 +/
    ����� �����. ���������, ����� ����� �������� ��� Microsoft. ���� ��� �� � ����� — ��� � �� ������ �� Open Systems Resources ����� ��������� ������ � �������� �������� �� �����������. ������ ��� ������� �� BtrFS �������� Windows, � ������ ������ ��.
     
     
  • 2.22, maximnik0 (?), 09:23, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    >BtrFS �������� Windows, � ������ ������ ��.

    �������� ���������� ������ ���.� ������ MS ��� ������ ���������.

     
     
  • 3.109, n00by (ok), 13:14, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������ ��� ���������� �������� ������� �������� �������. � �� ����������� ��� � ������-���������. � ����� ���������, ������ ��� Linux � BSD ��������� �������� �� ����� � ������, � � NT ������ �� ������� btrfs.sys ���� ��� ���� (� ����� � ������, ���� ��������).
     
     
  • 4.113, maximnik0 (?), 13:24, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >������ �� ������� btrfs.sys ���� ��� ����

    v1.0.1 (2017-10-15):������ ������ ��������� v0.1 (2016-02-21):

    ��������� �����-�����.v1.0 (2017-09-04):������ �� ����-�����!

    ��� ��� 2 ���� ? ������ � ���� ������� ����� ������ ����� ���������.� ��� ������ ���� �� ����������,2 ���� �� ������.

     
     
  • 5.122, n00by (ok), 14:12, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    >>������ �� ������� btrfs.sys ���� ��� ����

    > v1.0.1 (2017-10-15):������ ������ ��������� v0.1

    > (2016-02-21): ��������� �����-�����.v1.0

    > (2017-09-04):������ �� ����-�����!

    > ��� ��� 2 ���� ?

    � 2016-02-21 �� 2017-10-15 ������ 1 ��� � 8 �������. ��� � ���� ����� ��� ����. ����������� �������� 17%.

    > ������ � ���� ������� ����� ������ ����� ���������.

    ��� ���� �� ����� ���� ����� ���. ���������� �������� ��� ���� �������, ����� ���������.

     
  • 2.42, ����� (??), 10:10, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ������� � ����� � ����� �������� �� ������ ������. ��� ����� ����� �ݣ ������ ��� ������ �� ��������. ��� ���� ��� �� btrfs �������� ������ wsl2  ��� ��� ��� LXD, ��������.
     
     
  • 3.51, ���. (?), 10:31, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    > ������� � ����� � ����� �������� �� ������ ������.

    �� �����, ��� ���, ������������ �� ������� �� ������? ������ ������ ������. ���� �� ������� ���������� ���������� �������� ������� �������.

     
     
  • 4.67, ����� (??), 11:00, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –2 +/
    ��������� ���������� ������� ��� � ���� �����, � ��� �� WSL ����� (�� ��������):

    Once you have identified the partitions you want to mount, run this command on each partition:

    wsl —mount <DiskPath> —partition <PartitionNumber> —type <Filesystem>

    ��� �������� — btrfs � ����� ( /dev/loopXXX ��� ��� �ӣ) ������ ����� ��� LXD ������ ����� WSL2 Ubuntu 22.04 (����� �������!)

     
     
  • 5.71, ���. (?), 11:15, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ��� ������ wsl ����� �� ������ � ����� �����. ������, ���-�� � ������ �������� ������ �…�����, ����� ����������� ���� dokany — ��� ��� ������ ������� ��� �������� ������ ������� � �����.

    �� �� ����, ���� ���� ������ ��������� �������.

     
     
  • 6.193, ����� (??), 18:38, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ��������, �����. ���������� /usr/share/doc ����� ��� �����

    https://1drv.ms/i/s!AtSkSDII0UXe023EBPd0LpJPKjCj?e=F437a6

    ❯ fgrep /dev/loop1 /proc/mounts

    /dev/loop1 /data btrfs rw,relatime,compress=zstd:3,space_cache=v2,subvolid=5,subvol=/ 0 0

    ❯ compsize /data/usr_share_doc

    Processed 3809 files, 1136 regular extents (1137 refs), 2677 inline.

    Type       Perc     Disk Usage   Uncompressed Referenced

    TOTAL       64%       14M          22M          22M

    none       100%      9.4M         9.4M         9.5M

    zstd        39%      5.2M          13M          13M

     
     
  • 7.245, cheburnator9000 (ok), 22:31, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� ��, �� ��. ����� ����� ��������� ����������� ����� ��� ����� ����� ��� ������ Flatpak ��������� � �������.
     
  • 3.107, n00by (ok), 13:04, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +4 +/
    ����� ��� �������� � wsl2 — ��� ��� �� �� ��������, ������ ��� �������� �� �������� ������� � ���, � �� � �����������.
     
     
  • 4.121, ����� (??), 14:09, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ����� ��� �������� � wsl2 — ��� ��� �� �� ��������, ������

    > ��� �������� �� �������� ������� � ���, � �� � �����������.

    � �� ����� ���� �����, ����� �������� � ����������� ��������, � ��� ������ ����? �������� ������� ����� � btrfs ��� � ��� ��? ���� ��� �� ���� �� ������� �� ���

     
     
  • 5.147, ������ (147), 15:24, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������ ��� M$ �����, ����� ���������� ������������ ������ �� ��. ��� ������� ��������� � ��� ��� �������� ��� ��������������.

    �� �������������� �������� �� �������� ������������� �� ����� ����������.

     
     
  • 6.164, ������ (164), 16:28, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    �� ����� ��������, � ���� ������� �� �����.
     
  • 6.172, ����� (??), 16:57, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    > ������ ��� M$ �����, ����� ���������� ������������ ������ �� ��. ��� �������

    > ��������� � ��� ��� �������� ��� ��������������.

    > �� �������������� �������� �� �������� ������������� �� ����� ����������.

    ���? �� �����, ���� ������� �� btrfs ��� ��� ������ ��?

     
  • 6.175, ����� (??), 17:02, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������ ��� M$ �����, ����� ���������� ������������ ������ �� ��. ��� �������

    > ��������� � ��� ��� �������� ��� ��������������.

    �� ���������� �����, � ��������� ������ ����� ������� ��� �������  — ������ ��� �����������, �� ����� ��������� � ������� wsl. �������� ������� ���������� ��������� � ���������� ������� �������������.

     
     
  • 7.183, ������ (147), 17:17, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    � ��������� ��� ���������, ��� �� ������ ����������� ��� ������ �� M$, �� ������ � ����.

    �������, ��� ���� �� ��� ������.

     
  • 7.184, ������ (184), 17:18, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ���c���c� ������ ���������� ������� ���� � ������. � MS ���� ���� ��������� � ��� ������ �����, ��� ������.
     
  • 5.302, n00by (ok), 08:02, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � �� ��������� �� ������ � ��� ������ �� Open Systems Resources , ������ ������… ������� ����� �ף����, ��������

     
     
  • 6.307, ����� (??), 08:59, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    > � �� ��������� �� ������ � ��� «������ �� Open Systems Resources»,

    > ������ �������������� ���

    �� ����� � �� ������ ��������, ��.

    > � ��� �� �������� ������� �������� ������� �� � ���� �������. � ����,

    > ��� � ���� ������, ��� ��� ��� ��� � ��������� —

    > �� ����� ����� �ӣ ��������� � ��������� ��������� ��������������. ��� ��������

    > ��� ������� ���̣�, ������� � ������ � ������, ��� � ���

    > �� ��� ��������. �� �������� �������� ����� ��������, �� ���-�� ��

    > ����� ������� �������� ������.

    � ���� ���, �� ��� ������, ���� �� �� ����� CEO MS?

     
     
  • 7.328, n00by (ok), 17:30, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � �� CEO MS, � ����� �������������� � �� ��������� �������, � ���� � ������ ������ ����� ��. ��� ��� �������� ����������� �� ����ģ�. � ������ ������� ����� �����������, ��� ��������-������������� ������������ ������� ����� ţ �������������� �� ���������.
     
     
  • 8.357, ����� (??), 22:56, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    � ������� ��� ��� ������������ ������, �������� � ����� ��� ��������� ������ �� … ����� �ף����, ��������

     
     
  • 9.372, n00by (ok), 08:08, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/

    ��� �� ������ ������������� ��� ��� ������ ������� ��ϣ ����� �� ��, ��� ������… ����� �ף����, ��������

     
     
     
  • 11.390, n00by (ok), 16:21, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ��� ��� ������ ������� ����������� �������, � ��������� ��� � �������� �� �����… ����� �ף����, ��������

     
     
  • 12.391, ����� (??), 16:37, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ��������� ���, ��� �� ������� ���� ������� ����������, �������, �� ���� … ����� �ף����, ��������

     
     
  • 13.431, n00by (ok), 07:49, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� �� � ������� ��������� ���� ��������, ��� ��������� �� �����������, ��� �… ����� �ף����, ��������

     
  • 3.182, ������ (177), 17:16, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������� � ����� � ����� �������� �� ������ ������. ��� ����� ����� �ݣ ������ ��� ������ �� ��������. ��� ���� ��� �� btrfs �������� ������ wsl2  ��� ��� ��� LXD, ��������.

    �� ����� ��� ��, ������� � ����� � ��������. ����� ��� � ������.

    � ���� �� ������� ���� ���2, �� ���� ��������� ������ ������ �� ��������. ��������, ��� ����� 17 ���. ��������������� ���� ������ ��������, �� ������� ������� �ݣ ������ �� �����.

     
     
  • 4.367, soarin (ok), 04:21, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    �� �������. �� �������� 2% � ����� ����������.
     
     
  • 5.408, ���. (?), 20:36, 24/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� �������. �� �������� 2% � ����� ����������.

    �� ��������� 2% ��� ��������� �������� ��� ������ �� ������. � �� ��� ������ �����������. ������.


    ��������-�� �� ������ ��������� �� ���� �� ������.

     
  • 2.226, ������ (324), 21:33, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    >  ������ ��� ������� �� BtrFS �������� Windows, � ������ ������ ��.

    � �����.

     
  • 1.11, ������ (11), 08:31, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • –1 +/
    �����, �������� ������� ������ ������� �������������� �� ���������, ����� ��������� ����������.
     
     
     
  • 3.24, �� (??), 09:32, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ���� ��� ������ ����� ������, � �������� ������ ������������ �� �����, �������.
     
  • 3.34, ���. (?), 09:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    �� ��� ����� ���������-��… �� ����� ���������� � ��� ��������.

    � �� �� ��, ������� �������� �� — ������-�� ���.

     
  • 2.31, ���. (?), 09:51, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� ������� � �����0���. � ������� �������� native windows snapshots, �� ��������� ������ ��������� ������.

    � ��, ������������.
     
     
  • 3.43, ����� (??), 10:12, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    ��� ���������  ��� � ������ ����� ��� ���� ���, ����������� ���������� ���, � ���� �������.
     
     
  • 4.52, Tron is Whistling (?), 10:35, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ��� ���������. � ������ ����� ���� ��, ��� ���� � ������ �����, � ��� � ������ ���� �������� ����� � ���� �� ����� ������ �����. � ��� ��� ��� ���Σ��� — ��� ��� ������? ������ �������������? ��� ������ �� ������� �������, ���-��. � ����� ���� �� ���Σ��� — ������ ��������� ���-��. �� � ����? � ���������? ��� � ��������, �������� ��� ��� ������ — ���� � ��, ��������� ������� — ��, �� ������.
     
     
  • 5.55, ���. (?), 10:42, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > � ��� ��� ��� ���Σ��� — ��� ��� ������?

    ��� — �������� ������. ������ ��� ����� ������ � ��������������� � ��� ������ ����� �� ��� ������ ������������ — �������.

    � ������� — ������ �����.

    �, �� ���� — ����������� �������� ����� ������ — ��������� �����-������ atomic heart ��� �������� ������� ������� ������, � ������ ����� ��������������� � ����� ���� ��������. ���������� — ��� ��� ����������, ���� ��� ��������� �����.

     
     
  • 6.59, ����� (??), 10:49, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> � ��� ��� ��� ���Σ��� — ��� ��� ������?

    > ��� — �������� ������. ������ ��� ����� ������ � ��������������� � ���

    > ������ ����� �� ��� ������ ������������ — �������.

    > � ������� — ������ �����.

    > �, �� ���� — ����������� �������� ����� ������ — ��������� �����-������ atomic

    > heart ��� �������� ������� ������� ������, � ������ ����� ��������������� �

    > ����� ���� ��������. ���������� — ��� ��� ����������, ���� ��� ���������

    > �����.

    � �� ���������, ��� ����� ������ �� ������� ����� ����� ������, �� ������� ��� ������ ������� ������� ��� ����� � ��� ������. ������ ��� ����� ���������� ������� 20-30�� ����� ������� � ������ ��� ����� ���������� �����.

    ��� ����������� ���������� — ����� ����������.

     
     
  • 7.66, ���. (?), 10:58, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    �� ���, ��� ��� ��� ������� �������� — ������� �������� (������� ����� ��������� � ����� ������������ ������, ������ �� �������� ����� ������ �� ����� ������ � ����) � �������� ������� ��������, ��� ����������� �� ����� ����� � ��� ���� ����� � �������� ����-����� ����� �� ������.

    �� ����� � �� ���� ��������� ����� ��� � ����� �������� ������ ��� �� ���� ����� ������ �� � ���������. � ��� �� � �� ����� — �� � ��� ������ ��� ����������.

     
     
     
  • 9.159, ���. (?), 16:10, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� � ��� ����������� � ������� ��� ����������, ��� ����� ��� �� ��������… ����� �ף����, ��������

     
  • 5.64, ����� (??), 10:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    � �� ����� ��� ��� ���� � ������ �������� BTRFS, ��� ����� �������� ����� �� Σ�… ������� ����� �ף����, ��������

     
  • 4.54, ���. (?), 10:38, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –2 +/
    ���� � ������ ������ �����, ����������� ���������� ������ (�������� ���������� ����������� sds �� ���� storage direct � ��������� ������ ������������ ���������� ����� � shared disks — c fault tolerance, �������) — ������ ��� ������� ���� ��� ����, ����� ���-�� ����� ��������� — ������� � ���� ��� �������� �� ���������, � �� ����������� ������ ���������� � ����������� �� ����� ��� �������. � ��� � ��������� ������� ��� ���������� �������.

    �� �� ���� �������� ������� �� �������� ������� — � ����� ����� ����������, ��� ���-�� �������� ��������.

     
     
  • 5.65, ����� (??), 10:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ���� � ������ ������ �����, ����������� ���������� ������ (�������� ���������� �����������

    > sds �� ���� storage direct � ��������� ������ ������������ ���������� �����

    > � shared disks — c fault tolerance, �������) — ������ ���

    > ������� ���� ��� ����, ����� ���-�� ����� ��������� — ������� �

    > ���� ��� �������� �� ���������, � �� ����������� ������ ���������� �

    > ����������� �� ����� ��� �������. � ��� � ��������� ������� ���

    > ���������� �������.

    > �� �� ���� �������� ������� �� �������� ������� — � ����� �����

    > ����������, ��� ���-�� �������� ��������.

    ������ ��� �ӣ ��� ������ � ���������, �� ������� �� ��������� � btrfs ���� �������� ������

     
     
  • 6.68, ���. (?), 11:02, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –3 +/
    �� ���� ������ ���������� — �� ������ ��������� — �� � ����� � ��� �������� ������ �������� ������ — �������� �� 64 ���� �� ���� ��������� � ������ �� � ��� ���������. ��������! 65� �������� ������ ��� �� �����������, ������ ������ �� �������.

    ������ �������� ����� — �� � �� � ������ ����� ��������� ���������� ���� ��������, � �� ������� ������� �� ������, � ����� ��� ���� �����. �� ������� ������� �� �������� ��������� �� 64 ���� ����� � �� �� ������ ��������� ��� �� ��������.

    ������� �������� ���� �� ������� �������� ������, ���� �� �� ������� ���� ������ ������ � ������. �� �� ����� �� �� ���� ���������.

     
     
  • 7.192, ������ (192), 18:23, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �������� �� �� 3 �����? ���أ���, �� ������ ������� �������� �� raid6 ��� �� ���� ����� 6 ������ ��������. �� ����, ��� �� �������� �����, �������� ����� ����� 15 ������ �������� ������� � ������ ������.
     
     
  • 8.198, ���. (?), 19:58, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �����, �� ��� ���� ������� ���� ��� ����� � ��� �������� �������� � ��� ����� �… ������� ����� �ף����, ��������

     
  • 5.72, ������ (72), 11:16, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    > � ��� � ��������� ������� ��� ���������� �������, ������ ����� — � ��������.

    �� �� �ӣ� �����ģ��� �������. ������ � �������� �����.

     

     
  • 2.142, ������ (ok), 15:13, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +8 +/
    �����-�� �������� � ReactOS ������� ��������� ������ ��� ������ ����� ����� �������� — ����� ����ף�.
     

  • 1.23, ������ (23), 09:27, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • –2 +/
    ���� ��� ����� btrfs ������� ���������� �������� ������� �� ���������.
     
     
  • 2.82, bOOster (ok), 11:46, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� ��, ����� ��������� � ���������� ZFS — btrfs ����� ������� � �� ����� �����… ������� ��� ��� � ZFS ����.
     
     
  • 3.86, ���. (?), 11:57, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    > �� ��, ����� ��������� � ���������� ZFS — btrfs ����� ������� �

    > �� ����� �����… ������� ��� ��� � ZFS ����.

    �� ������� ���� ��� ���. ������ ��� ������ zfs — � ��������� ���� ������ �� ��� ������.

    � ��� ���� ���-�� �� �������� �������� ���� ��������, ����� � ��������� �������.

     
  • 3.230, ������ (), 21:39, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� ����� �����… ������� ��� ��� � ZFS ����.

    v2 ���� ������ ���������� ����� ��� v1. � zfs ���� ��������� ���������� �� ����. � CoW �������� ��������, �������� �� �����, � ���� �� ���� XFS ����������� ��� ��� ���� ������ �������� �� ������. �� ��� ����� �� ������ ��� ������� ��� ����� ����. �� ������ ������ ��� �����.

     
     
  • 4.232, bOOster (ok), 21:47, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> �� ����� �����… ������� ��� ��� � ZFS ����.

    > v2 ���� ������ ���������� ����� ��� v1. � zfs ���� ��������� ����������

    > �� ����. � CoW �������� ��������, �������� �� �����, � ����

    > �� ���� XFS ����������� ��� ��� ���� ������ �������� �� ������.

    > �� ��� ����� �� ������ ��� ������� ��� ����� ����. ��

    > ������ ������ ��� �����.

    �� ��� ��� ���� ��� � ���������� �������� ��������� �� ����� — �������� ��� ��� ����� — �� ����������� ������.

     
     
  • 5.283, ������ (), 02:27, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > �� ��� ��� ���� ��� � ���������� �������� ��������� �� ����� —

    > �������� ��� ��� ����� — �� ����������� ������.

    ��� ������ �� ���� ��������� ������ ���������� ������. ������ ��� ���-�� ��� ������������ — ������, ��� ������� ���� ��������������… ���� ����� ������ ������� ������ ���� � ���, � ��� ��� ������ ������ ��� ������� ������ � ������������� ������ ����� ������ ������ �����������.

    � ��� ��� ������� ����������� ������� ��������� ���� ������������� ��� � ��� ������ �����������, ��������� ������ � ����� ��� ������. ������� ��� ���� ����-�� �� ����� ���������� �������.

     
     
  • 6.304, bOOster (ok), 08:28, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �������������� ���� ��������� �� ������������, �������� Panasas, QNAP � � � — �… ������� ����� �ף����, ��������

     
     
  • 7.346, ������ (291), 21:27, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > �������������� ���� ��������� �� ������������,

    ����� �� �� ��� ��� �� �������� �������� ��� ���� ���� — ���� ������������, � ���� ���� ������, �� ������ ��������������� �������������� :)

    > �������� Panasas, QNAP � �.�. — ���������/��������� �� FreeBSD/ZFS � ����� ��� ��������.

    ��� ���� �, ��� �� � ����� ����? ��������� ����� �� �������? �� � ���. � �� �������� — ��� ��� �� ����� � ����������� ������. ������� ����� (������ ��� ��������� �������) �������� � ����� � ��� ����� � � ����. ��� ��� ��� 6.4 ������������� ������ scrub �� 10 ���������, ����� ��� ��� ��� ������� ������. ����� � ��� ����������.

    > � btrfs ���������� � ���������� ������ �� ������� ������ ��������� �������� �����������.

    ���� �� ���������� �� ����� ����������.

     
  • 5.310, ���. (?), 09:37, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/

    �� ���� — ��������, ����� �������� �� � ����� ����-����� � �� � ���� ��� ��� �… ������� ����� �ף����, ��������

     
     
  • 6.347, ������ (291), 21:29, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    Synology ���� ���� ��� ������ ��������� ����� �����-�� ����� ���������, � �� � ������� �����. ��� ��� �� ������ ����������, ���� ���-�� ������� ���������� ��������.
     
  • 4.236, bOOster (ok), 21:50, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> �� ����� �����… ������� ��� ��� � ZFS ����.

    > v2 ���� ������ ���������� ����� ��� v1. � zfs ���� ��������� ����������

    > �� ����. � CoW �������� ��������, �������� �� �����, � ����

    > �� ���� XFS ����������� ��� ��� ���� ������ �������� �� ������.

    > �� ��� ����� �� ������ ��� ������� ��� ����� ����. ��

    > ������ ������ ��� �����.

    � ������ ��������� — ��������� ������ �������� ����������� �� ���������� �������� �������. ��� posix ����� �������, � ������ ������� ��� �� ��������������.  

     
     
  • 5.264, ���. (?), 00:10, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ������ ��������� — ��������� ������ �������� ����������� �� ���������� �������� �������.

    ������-�� ��� ��� ���������� — �� ���� cow. � ������� �� xfs ��� � ���� ��� ����� (�� � ��� ���� �� �����).

    ������� ������ ���-�� ������� ��� zfs ���� (������ ��� ���� ���������� � � ����� ������ �� ������ �������� ��� ���� �� ���������� — ����� �� ���� ��������� ����� ���� ���� ��� ������������ ����� ���� ������)  — �� �� ��������, ��������� — �� ��� ��� �� 33 ��������.

    ������� ������: � ������������� ����� ��������� ��� ������ � ��������� ������.

    ������ ����� �� ���� ������� �� ������ ������ — �� ������� ���.

     
     
  • 6.285, ������ (285), 02:38, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��� ����������, ���� ���������� �� ������� ���������� ������ �����, ���������… ������� ����� �ף����, ��������

     
  • 5.284, ������ (285), 02:32, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � � ���� ��� �� ����������� ��������� �� ������� ����� 1 ���� ���� �� ������ ��… ������� ����� �ף����, ��������

     

  • 1.25, ���� (?), 09:35, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    � ����� ��� ���� ���������� �� ����� ���� Btrfs, ���� ������� ������ ��� �� (������, ������������, ������ � ��������)? ���� ���, �� � ޣ� ����� ����� ����������� ��� � ����?
     
     
  • 2.27, ������ (27), 09:40, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ������ ��� �������� — � ������� ���� ������� ������� ntfs, grub2 ntfs ���� ������������, ����� ������� ������ � ntfs �������.

    � ��� lvm2 � ����� � ����� ���.

     
     
  • 3.32, ���. (?), 09:53, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    > ������ ��� �������� — � ������� ���� ������� ������� ntfs, grub2 ntfs ���� ������������, ����� ������� ������

    > � ntfs �������.

    ����� — ������ �� �� ����������.

    �������� ���� ��� ���������������� �������� — ������.

     
     
  • 4.37, �� (??), 09:57, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +5 +/
    ��� �� ����� ����������� ��� ��� � ���������� ������������. ���� ���������. �������� ���������.
     
  • 4.194, ������ (191), 18:38, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �����������. ������ ��� ���� /home ���� �� NTFS, �� �������� ���-���� ������ �� �ţ �������� ������������, ������ root �����. ������� chown, chmod �� ��������.
     
     
  • 5.208, U202204161753 (?), 20:49, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ACL ? �� �������� ������ ������?

    (

      ������� ������������� ����� � �� OS � ���� ������������������ ( root).

      ��� ��������� home �� ��. ������

    )

     
  • 4.211, U202204161753 (?), 20:52, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������?

    ���-�� � ��������� ����� HowTo ��� Linux �� NTFS.

    ����������? � � ����� �����?

    ����������� ���-��. ������ �� ��, ��� ����������� �������.

     
     
  • 5.243, ���. (?), 22:19, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    >  ������?

    ��� ������� ��������� ��� ��������� �����

    >  ���-�� � ��������� ����� HowTo ��� Linux �� NTFS.

    � ������� ��� �������� ��� �� ������. ������ � ����� ���� ��������� �� ��������, ������ ��� ��� ���� fuse.

    �� ��-������������� ������� �� ���� ����� ���������� ����� �� �� ����� �����������. ��� selinux, �������� � ������� ������� ���� �� �����-������ ��������, ��� ���������� ��� ���������, �� � �������� — �����.

    � �����-������, 25 ��� ����� �� � � fat ����� ����������� (������ ����� ������ �� ����� ��� ��� ��������).

    > ����������� ���-��. ������ �� ��, ��� ����������� �������.

    ������� �������?

     
  • 4.231, ������ (), 21:43, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > ����� — ������ �� �� ����������.

    ����������, ��������. Linux ������ ����� ��������� � ���� ������, ���� � �������� �������, ���� �� ��� ���������� ������ ����� � ��� ������������ � �������.

    > �������� ���� ��� ���������������� �������� — ������.

    �� ��������� ������� ���� ��� ��� initrd �� � ������? �� _�����_ ����� �������� ������ ��� ��� ���� ���-�� ����������� ��� �� � ������. ���� FUSE ��� ������� �� ������. ����� ������ ������������� ���� ����� ����������� �������� ��������� ��� «pivot root» — � ���.  ������ ����� ����� �������� ��� ������ � ���� ����� � �� ����� ��� ��� ������ ����������� ���� ��� ��������������.

     
     
  • 5.244, ���. (?), 22:24, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    >> ����� — ������ �� �� ����������.

    > ����������, ��������. Linux ������ ����� ��������� � ���� ������, ���� � ��������

    ����� — �����. ��� ����� ���� ������������ initrd (������ ����������� ������� ��� ���� ����� �� ����� ������ �����������) — ������� ���� � grub � �� ������� ��� �� ������� ��� zfs, ������� �� ��� ����� ���������. ���� ��������� ������.

    > ������. ���� FUSE ��� ������� �� ������. ����� ������ ������������� ����

    > ����� ����������� �������� ��������� ��� «pivot root» — � ���.  

    > ������ ����� ����� �������� ��� ������ � ���� ����� � ��

    �� �����.

    �� ������ ������ — ������� �����������.

    ���������� ���6������ ����� ���6������.

     
     
  • 6.289, ������ (285), 02:55, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    � �������� ������ ��� �� �������� ����� ���� ������ �� ����� ���� �� � ������ �… ������� ����� �ף����, ��������

     
     
  • 7.312, ���. (?), 09:47, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ��� ������ � �������� ������� �� ����� ������� � ��� ��� ��� — ��������� ���… ������� ����� �ף����, ��������

     
     
  • 8.350, ������ (), 21:49, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ����� ������� — �������� ������ ���� � ������ �������� �������� ���� ��� ���� … ������� ����� �ף����, ��������

     
  • 3.56, ����� (??), 10:42, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ��� lvm2 � ����� � ����� ���.

    ���� �� ��� ����� � ������� ��������, � �� ��������� ��������������, ����������, ����� �ģ�� — ����� ��� ���� ����?

    � ���� ��� � 2009-2010�� ���� ������, ����� ���-�� ������� ��� ����� �� ����������, � ������ ���� �� ������� — «�����» ��. ��������� ��� 6-7 �������� �������� ���� ��� � ��������� ���-�� ����������� ������.

    ��������� ��� ����� �� ������ ���� ����� ��������� Linux Mint ������ ��������, �� ���������� — �� ����, shrink �� �������� ������, ������ ����� ��� ������ � �ӣ. ����� ��� �� ����� ����� � ����� LVM.

     
     
  • 4.69, ���. (?), 11:05, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� ���� � �������, ��������.

    ������, ������� ����� ������������ ����� ����. ������, ����������, �������� ����� �������� ��� ���� � ���� �������.

     
  • 4.148, ������ (148), 15:29, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    LVM Thin �� ���������� � ������������� ���������� ������������ ����� ��������� — ��� �������� �������� �� ��������� � ntfs �� ���
     
  • 2.60, maximnik0 (?), 10:50, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ����� ��� ���� ���������� �� ����� ���� Btrfs, ���� ������� ������

    > ��� �� (������, ������������, ������ � ��������)? ���� ���, �� �

    > ޣ� ����� ����� ����������� ��� � ����?

    ������������ �� ���������������.������,������������,�������� ����������� ,�������������� -��,��������� ����.��� ���� ���������� ��� ��� ������ ���� ������� ��� ���� �����:https://4pda.to/forum/index.php?showtopic=1053844

     
     
  • 3.111, ������ (225), 13:18, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > ������������ �� ���������������.������,������������,�������� ����������� ,��������������

    > -��,��������� ����.��� ���� ���������� ��� ��� ������ ���� ������� ��� ����

    > �����:https://4pda.to/forum/index.php?showtopic=1053844

    ��� ��� � � «��������» ������� ����� ��� ���� � ���� �� ����� ����� ������. �� �����, ���  �������, ����������� ������ � ��������� ������ — ����� ��������� �� ������� � ����������� (� �� ��� �� ��������� — ��� ������ �� �������� ��� ������, �� ������).

    ������ ��� ������ � ��������� � ������� ����� � ��������-������ ��� ��������� �� ��� �����-�������� ���-�� �� �����, ��� ��� ��� …

     
  • 3.115, ������ (115), 13:28, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    > ������������ �� ���������������

    ����� ��������� �� ����� ��������� ������� — ������ ���� �����, ������� ���� ��������� � ������������!

     
  • 2.99, ������ (99), 12:36, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ���� �� �����, ��� ����� �������������� �������� ��������?

    ����� — ��������, ������� ���������� ��� ��������, ����� ������� ����… � ���������� ��������� �������� ����-���������. � ��������� ������� �����.

     
     
  • 3.253, maximnik0 (?), 23:08, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ���� �� ���������� ��������� ��� � ����.>Getting and setting of Access Control Lists (ACLs), using the xattr security.NTACL

    Btrfs ������������ ����������� �������� � ������� �� ���������� ����� ������� — �� ������ NFS4.�.� ������� ��������� ������� ����,��� (����� ��������) � posix ����� ����� ����������. � ���� ��������� ��� �������������,���� ���� ntfs ���������� ������,� ��� ������ ���������.� ������������ ���������,�������� ����������� � BTRFS ��� ��� ��.������ ��� ����� �������� ��� ���������� � �������������� ����� ��� ��� ����.

     

  • 1.33, �������� (?), 09:54, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    ������ wsl2 �� ��������. ��� �� � ������� ����. � ��������� ��� ������ ��� ������� ������ ����� �����-������.
     
     
  • 2.91, ������ (99), 12:20, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +3 +/
    WSL2 — ��� ���������� ���������. ��� � �� ���� ������������ �� �� ����� ţ  ����������.

    ���� ������� ������ � ������ — ���� ����� �� ����� �� ���������. �� ����� ����� ������� ����� �����. � ���������� SSD �������. � ����������� ����� ���������� � �� �������� � ����(!) ���� ������� ������ �����������.

    � ��� ����������� ����� ������� ����� � ����� �� ���� ����� ������. �������!

     
     
  • 3.158, ������ (184), 16:06, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >  �� ����� ����� ������� ����� �����. � ���������� SSD �������.

    ��, ����� 10-15 �� 64-������ �������. � 2023 ���� ����� SSD ����� �������.

     
     
  • 4.203, U202204161753 (?), 20:30, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ������ �����, 18 — 24 Gb ��� Windows Server.

    �����, ��������� ��������� ����������� hotfix, ����� ������������� ( ��� ����� 3 ������ — ������ �������) ������� ������ ��� «������» �� ���������� hotfix

     
     
  • 5.242, ���. (?), 22:15, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >  ������ �����, 18 — 24 Gb ��� Windows Server.

    ��� ��� � ��� ������ ��������� �������-�� :-(

    �� � ���� �� ���� ������� ����������� �� ��������� ������. (������ ��� � ������ ������ ���� _����_ ��������� ���������.)

    ��� ��� ���������. only.

     
  • 3.303, n00by (ok), 08:15, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ��� ����������� ����� ������� ����� � ����� �� ���� ����� ������.

    > �������!

    � ����� ��������, ��� ��������� � ������ ����� � �������. ��� ��� ����� �������������� ����������� �� ����� �� ��������.

     

     
  • 2.38, �� (??), 09:57, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ���� ������ ������������� �� ������.
     

  • 1.61, ������ (72), 10:51, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    > ���������� ������������������ ����������� �������� W

    �����������, ���!

     
  • 1.62, ����������� (?), 10:52, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    ���� Quibble ����� ����� WinBtrfs, � ����� ��� �����. � ����� ������� ����� ������ GPT4. ������ ��� � ��������� ��������, ��� ��� ��� ntfs2btrfs �� �������� ���������, � ���������� ������ � ������ �������� ��������.
     
  • 1.73, �� (?), 11:24, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    ��� ������ ����� ���� ��� ��������/�������������� ������ ����� �� ������ «��������» ��������� ������…

    � ��� ����� ������� �� HDD ����� ��������
     
     
  • 2.95, ������ (99), 12:31, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ���� ����������� ������� ������ — ����, ��� ���������� �����.

    ����� ����� ���� ���� � �������, �� � ����� ���� ��������� �����������.

    ��� ������� — �� ����� ������ ������ ����������� ����. ��� �������, � ��� �����������. ���� ������ �� ������, �� ������� �� ����� �� ������� �� �����������.

     
  • 2.233, ������ (), 21:47, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > � ��� ����� ������� �� HDD ����� ��������

    ���� ������� HDD — ��������� DUP ��� ����� ��������, ������. ��� ���������� �� ��� �� �� ������� �� 1-�������� ���� ������ ��� �������� �� ������. �������� ������ ��� DUP ������ ������� ������������, ���� ��� ������ �������� � ����� ���� «CSUM error, corrected» �� ��������� �����, � ��� ����� �� ���� ������. ��� ��� �� ������������ ������ ��� ��� ����� � �� �����������, � NTFS ��� � ����� �� ����� ������������, �� �� ����� � read error � ����������, �� ���� ������ ��������� ����� ������ ���. ��, ����� ntfs.sys � ���� �� �������� ���� �� ���������, ��������.

     

  • 1.74, ������ (192), 11:28, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    �������, ��� ��� �� ���� �������? �ݣ � � ������ ����������. ��� 10 ����� ����������������� �������� ������ 10 ����� � btrfs ������ ntfs.
     
     
  • 2.169, ������ (90), 16:37, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ��� ����� ���� �������� � btrfs, � �� ��������� ������/������?
     
     
  • 3.254, maximnik0 (?), 23:19, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � ����� ��� ��� ������� ���� � ����.��� Ms ���� ����������������� �����,��� ���� ������� ��������� 10 � Btrfs ,������ ����������� ��������� � �������������.�� ��������� �� �����������,������� ����.� �� �������� ��� ����� NDA ������ � ������ ������ ���� � ���� ������.
     

  • 1.78, ������ (78), 11:34, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    > ��� ��������� ����� ���������� � ����� ����� �� ��� ������������� ��������� ��������

    � �������� ������������? �����?!

     
     
     
  • 3.251, ������ (249), 22:59, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ���� �� ���� �� ������� — ����� ���� ��������� ����� �� �������. ������ ��� ���� �� � ��.
     
  • 2.93, ������ (99), 12:26, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ��-�� ����� �� ��������� ������� ����� ��������� ��������� �������� ��.

    ��������. ���� ��� ����������� ���������� � ����� ��������� ��������, ���� ����� ����� �������� �������� � �� ��������� ���� ������������ ���������.

     
     
  • 3.120, ������ (120), 14:09, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �������� ���������� ���� ���� � ���������� � ����� ������ ���� ����� ����, � �� ��������� �e����� � ��������� ��������
     
     
  • 4.141, ������ (141), 15:13, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    �� ����������, ��ģ����, ������� ��ߣ�� — ������ ��� � ����������. ���� ����� ������ �������� (40���.), ��� (20���.) � ���.��������� (5���.) �� ������� ������ �� �� ���. ���������� 15 ���. � �����.

    ��������.

    ���� ������.

     
     
  • 5.154, ���. (?), 15:53, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������������� �� ������ ��� ������� �� 10 �����, �����, ����� ���� 15 ����� �… ������� ����� �ף����, ��������

     
  • 5.294, ������ (294), 04:27, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ������ ��� ������ ������ ������ ������� �� �������� ���� �������� � ����� ������� ����������, ��ģ���� � ������� ��ߣ��! �� �� ���� ����� hdd �� 5 �������.

    ����� ���������� � ���������� ���� ���� ���� �� ����� ������ ��������, ����������� �� �������. ����� ���� �� �����������, �� ������� ����� ������� ������ �������. �������, ����� ������ �������� ���������, ���� �� ������ �� ������.
     
  • 2.246, kusb (?), 22:47, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    � �������� ������, �� ����� ������ �� ����� ������ ��������� ����, � �� ������������ � �.�. ����� ���������� �������� �����.
     

  • 1.88, ������ (88), 12:00, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +3 +/
    �� �� ����, ������ �����-������������ ������� �� ������ ������ � ������, �� � ������ � ��������? �������!
     
     
  • 2.92, ������ (99), 12:24, 22/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    ��� ����� ����� �� ���������� �������� ������� �������. ������ ��������� � �.�.

    ���� ����� — ��������, �� ��� �� ����� ������� ���أ�. ���� ��� �������� — �� � ��� ������ �� �������, �.�. ����� �� ���������� ������ �� �� ������ �� ������.

    ��. �� ��� � ���� �ӣ.

     
  • 2.140, ������ (184), 15:12, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    ������-������������� ������� ���� �� �������� �������. �� � ��� ���������������� /home � ext* ��������� ���������.
     
     
  • 3.151, ������ (148), 15:37, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� ���� �� �� ����� ��� btrfs ��� ������� ��� �� ����� ��������������� ����, �� �� �������� ��� ������������� ����� ����� ������������ � ��������� ���������� ��������…
     
     
  • 4.160, ������ (184), 16:12, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    > �� ���� �� �� ����� ��� btrfs ��� �������

    ����������, ��� fread � fwrite ���������� ���������� ������ �������� �������. ������, ����� �� ���� �� �����������, ��� ��������� C?

    > ��� �� ����� ��������������� ����

    �� ��, ������ �� � ��������� ������ ����� �� ���� �����.

     
     
  • 5.220, ������ (148), 21:20, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ������ ����� fwrite? ����� ��� �� ����, ��� ����� ����� ������������ �� ��������� � ��������� ������� ��� ����� �� ������ �������� ���� ���������. ��, � ������������ � ������ ���� ����� ������ � �������� ����������, �� � ���? � �������� �� ��������� ������ ����� ���� �� ������ ����������, ����� ��� btrfs � �� �������� � �� ������ ����� ����� �� ���������� ����������, ����� ��� ���-�� ��������� ����� ����������� � ������ ����������������.
     
  • 3.155, ���. (?), 15:55, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������-������������� ������� ���� �� �������� �������. �� � ��� ���������������� /home

    > � ext* ��������� ���������.

    �� �� �����. ����������� ������ ������ ���� �������� �� .net � ���������� �������� ������-��� ��������� (������ ���� ����� �� ���� � ����)

    ���� ��� ����, ����������� ����� ���… �� � �� ������ ������� ���������, � ������� ������.

     
  • 3.247, kusb (?), 22:49, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    �� ����� �� ��������� ������ �������. ����� ����� ���� ����� ���������� � ����� �� ��������� btrfs ����� �� �� ����� � Linux.

    ��� ��� ����� ������ ����������?
     

  • 1.94, ������ (99), 12:27, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    � ���� �� 11-� �����? ����������� �� 11-� ���� �������. ���-�� �� �������� ���?
     
  • 1.123, ����� (??), 14:18, 22/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +1 +/
    ���� �������

    >  I forgot to take screenshots but it was the AMD stuff from the Microsoft Store failing to launch. This takes us into the one downside (or feature depending on how you see it). «Windows 10 apps», basically things you would get from the Microsoft Store don’t work. Your first thought might be «who cares nobody gets anything from the Microsoft Store» but this means that Windows Terminal doesn’t work and you’re stuck with the shitty default powershell and command prompt apps and I can’t play Minecraft Bedrock.

    ����� ���� � �����-�� ��ϣ� ������ � ������ ��������������� ��� MS Store

     
     
     
  • 3.168, ���. (?), 16:37, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ��������. �� ����� ���������� �� ������������ — ��� �������� ��� ����� � ���� ����� ���� _�����������_! � ��������, ��� ��������, ������ � ����.
     
     
  • 4.190, ������ (130), 17:52, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ��� �� �� ����������, �ݣ Windows xp ����� ���� �� BTRFS ���������, � �� ����� Windows 7 ������� ����������� �ݣ ������.
     
     
  • 5.207, ���. (?), 20:45, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ��� �� �� ����������, �ݣ Windows xp ����� ���� �� BTRFS ���������,

    > � �� ����� Windows 7 ������� ����������� �ݣ ������.

    ������� — ��, ������ ��� ������ ����������� �������. �� ���� �� ���� ��� ��� ������� ���������� — ��� �����������, �� �� �������� ������ �� ��������, ����� ���� — ����� ����� ����� ��������� …. ��� �� ������� ��� �����. ����������, ��� ��� ������ ���� ���������

     
     
  • 6.256, ��������� (?), 23:29, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +2 +/
    ���� jira  ��� �����������, ����� ��� — ��������� ���������, ����� � ����� ���� ����� �� ������. � ReactOS, �ӣ ������� ����������� �� ���������� 4-� ��� ������ � BTRFS, ���� ����� EXT2 (����� ���������� ������). �� ������ ��� �����, �� �� ���� �� �������������� ������ , ������ ������������ ����������� ����� ���������. � �� �������� ������� � ������ ��������, ������ �� ������� ��, ��� �� ����� ���� ����� ����� �������� � ReactOS — BTRFS ������� � ���� ������ � NT �����, ������� ������� ���������� � windows 2003. ��� �������� ����������, �� ������ �������� , ������ ���� ��������� �������� � wine , ����  ��������� (windows 2003)� wine �� ��������, �� ������ ����� �� �������� � � ReactOS.
     
     
  • 7.261, ���. (?), 00:00, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    > ���� jira  ��� �����������, ����� ��� — ��������� ���������, ����� �

    ��� ��� ����?

    ����� ����� � ����, ���������. �� ������� ��� �� ����� ���������. ��� ��� ���� ����� � �� ������ � � ��� ���� � �� ������������� ������� ������������ ���� ��������� ��������.

    > ������). �� ������ ��� �����, �� �� ���� �� �������������� ������

    ��, ���� ���-�� ���������� �� ���������� �������� ���������� ������ �� ��������� �� � �� ����� ������������.

    �� ������ ��� �� ������� �� ����������, �� ������ ������ «�����������!»

    ���� ��� ����� ����������� 2003� ����� — � ������ ������� �� ��������� 2003� �����, ���-�� ��������� ��������. �� ������� �� ����, ���� �� ������ � � ��� ��� � ����� ���������.

     
     
  • 8.315, ���� (?), 10:35, 23/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� �� ����� � ���� ��, �������, ����������, �� �� ��������� �������, ����� ����… ����� �ף����, ��������

     
  • 8.425, ������ (), 02:25, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �������� ����, ���� ��������� � ���������� �� ���������� ������� ��� ����� ����… ����� �ף����, ��������

     
     
  • 9.433, ���. (?), 12:58, 25/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    �� ����� ��� ������ ��� btrfs �� ��� ��� �� ������� � raid, � ��� storage direc… ����� �ף����, ��������

     
     
  • 10.440, ������ (436), 03:38, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/

    ������� ������ 2010 ��� ���������� �� �� ��� �� � ����� ����� ������������ ��… ����� �ף����, ��������

     
  • 2.197, ������ (191), 18:53, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ��, �� ������ � ���������. ���, �������, � � NTFS �����.
     
     
  • 3.262, ���. (?), 00:02, 23/04/2023 [^] [^^] [^^^] [��������]  
  • –1 +/
    > ��, �� ������ � ���������. ���, �������, � � NTFS �����.

    ��� ����� ������� ��� �� ������ — ��� �� �����-�� �������� ������ (������ ������� � ��� �����) �� ������� ������� ����������. � ���������, � ���� ����� ������ ���, ������� �� ���� �� ������������, �� ����������� ��� �����������. ������� ������ � ��������� ������.

     

     
  • 2.167, ���. (?), 16:35, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +1 +/
    ���������� �������� ��� — � EA �������.

    ���� �� ����� ���� ��������������, ���� � ���� �� ����� ���� ���� �� �������� �� ���� ������� — ��������� ������� ������ ���.
     
     
  • 3.248, kusb (?), 22:51, 22/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    ����� ������ ���� ���� — �������������� ����.
     

  • 1.290, ������ (290), 03:01, 23/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    �������� � ���������� ��� ��� ���� �������. ��, ��� �����-�� ������� ������� �� ��� ���� ������ � ����� �������� ���� — �� ����� ��� �������.
     
  • 1.321, ������ (321), 13:16, 23/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    � ��� ��������� ������������, ��� ��? �� ����, �������� ������� �����������������?
     

  • 1.434, nc (ok), 14:35, 25/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    � ���, �������� ��-��������. ��� �� ������ andLinux ���������� (���� �� ��� �������), ����� ���� �� ��������� ������ ��� ������� ����� ����� � �� �� �������� �������.
     
  • 1.435, ������ (?), 18:00, 25/04/2023 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    ������ ����� ��������: � �� ������ ���������� ����� � ������ � ������� ������� ��� �������� �������, ������� ����� ����� ������, ��������� �����, �� � ������ ������� ������. �� ���� ��������� ������, ������� �������� �������. � �� ����� ������� � ���� ���ģ��� ������� ���������, ��� ������.
     
     
  • 2.442, ������ (436), 04:02, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > ������ ����� ��������: � �� ������ ���������� ����� � ������ � �������

    > ������� ��� �������� �������, ������� ����� ����� ������, ��������� �����, ��

    > � ������ ������� ������. �� ���� ��������� ������, ������� �������� �������.

    > � �� ����� ������� � ���� ���ģ��� ������� ���������, ��� ������.

    � ������� ��������� ��� ����� �� ��������� ����� ������ ���� ��������� ������. ��� ��� ���� ���, ����� ��� ���� ��������.

     
     
  • 3.445, n00by (ok), 07:59, 26/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    >> ������ ����� ��������: � �� ������ ���������� ����� � ������ � �������

    >> ������� ��� �������� �������, ������� ����� ����� ������, ��������� �����, ��

    >> � ������ ������� ������. �� ���� ��������� ������, ������� �������� �������.

    >> � �� ����� ������� � ���� ���ģ��� ������� ���������, ��� ������.

    > � ������� ��������� ��� ����� �� ��������� ����� ������ ���� ��������� ������.

    > ��� ��� ���� ���, ����� ��� ���� ��������.

    �� �������� ������ ����������� ������ ��������� ������� �������� ������ ����ԣ� FAQ �� ��������� ������, ��� ������ ������� �������� ��� ����������� ������ � LD_PRELOAD.

     
     
  • 4.448, ������ (), 00:47, 27/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    LD_PRELOAD ��� �� �������� ����� ��������������. �� � �������� ����� � ������� �������� ������ ��� ���������� �� ��������.
     
     
  • 5.450, n00by (ok), 06:55, 27/04/2023 [^] [^^] [^^^] [��������]  
  • +/
    > LD_PRELOAD ��� �� �������� ����� ��������������.

    ���, ������ ������ ��� ����.

    > �� � �������� ����� � �������

    > �������� ������ ��� ���������� �� ��������.

    ����� ��� �������� ���� �������, ������� ������ �������������� ����� ���������� ��������� �����.

     

  • Драйвер canon mf232w windows 10
  • Драйвер broadcom netxtreme gigabit ethernet драйвер windows
  • Драйвер bluesoleil generic bluetooth driver для windows 10
  • Драйвер canon lbp 1210 для windows 7 64 bit
  • Драйвер bluetooth для windows 7 для samsung