Search results for query: Read file name

  1. The following words were not included in your search because they are too short, too long, or too common: name
  1. cracauer@

    Solved Making FreeBSD my primary operating system

    I would rather trust the in-kernel ext2fs than the fuse exFAT. Not to speak of performance.
  2. lgrant

    Solved Making FreeBSD my primary operating system

    I really like #1. In theory, ext2fs can read ext4 drives, but I have always been nervous about using an operating system to to read (and even worse, to write) another operating system's filesystem. Yes, they say ext2fs can access ext4 filesystems (actually, the man page says "It currently...
  3. Maturin

    Solved A reliable backup strategy for a newbie

    You asked VladiBG but let me answer it: You can do 1:1 copies of drives and partitions with dd. I did it several times myself, and it works. BUT: You may save any drive to any other, as long as it's equally large, or larger. But with GPT partition scheme the copy will only work (being not...
  4. Maturin

    Solved A reliable backup strategy for a newbie

    No. As I said, the efi partition is not the MBR. But don't bother about the MBR too much. As an ex-Windows user I feel the need with you to be able to save and restore the MBR. Too many times I have also seen the MBR was killed by wrong bootloader installations, and above all Windows itself...
  5. Maturin

    Excitement and opportunity for the future of FBSD

    You are right about techniques how to gain popularity, how to grow customers. And we don't need to argue about that more users are better. No question. But just growing - raise the number of users, only - alone will not do good. Especially not, if the growth is too fast. You need to grow...
  6. VladiBG

    Solved A reliable backup strategy for a newbie

    You didn't make any mistake by choosing the UFS. In fact it's much it's preferred file system when you have hardware raid controller or when you use a single disk or virtual machine. Anyway here's a little guide how to create a full back of the UFS using dump on locally attached dedicated hard...
  7. cracauer@

    Solved Diskless (PXE) boot stuck

    You can wrap it in (...) and redirect to a file. Of course that requires a read-write mounted filesystem. Maybe it is easiest to use a USB stick and mount it right there in the script. Don't forget about the -x option, which might come in handy here.
  8. cracauer@

    Solved Diskless (PXE) boot stuck

    Yeah I forgot about filesystem mount and remount ordering. dmesg only shows kernel printed messages. Userland startup is not captured.
  9. B

    Solved Diskless (PXE) boot stuck

    I did as you suggested but nothing appeared. Maybe there was no write permission. I'll try something else just to make sure. Just trying again noticed that a message about 'read only file system' so rc.initdiskless is actually being executed. For some reason the message does not show up when...
  10. MG

    Solved A reliable backup strategy for a newbie

    I do that with the dd command. 1 disadvantage may be that it breaks on any failure. dd if=<input device/partition> of=<output file> bs=100M Make sure to read "man dd" and test a backup recovery procedure. You can also recover specific content inside a backup file by loading it with mdconfig and...
  11. C

    Solved A reliable backup strategy for a newbie

    I finally figured how to format a USB thumb drive with UFS, I've been able to copy some of my important system directories to that USB, but now I'm wondering if a fresh installation of FreeBSD will have permission to even read it? So, my plan is to test my backup strategy by doing a fresh...
  12. bsdmaddy

    [Bluetooth-audio] How to connect and use Bluetooth headphones on FreeBSD

    Success! Here is my working setup script (to be run as root). Q32 is the name of my bluetooth headphones. service bluetooth stop ubt0 service bluetooth start ubt0 hccontrol -n ubt0hci create_connection Q32 hccontrol -n ubt0hci write_authentication_enable 1 virtual_oss -B -S -C 2 -c 2 -r 44100...
  13. T

    Solved Diskless (PXE) boot stuck

    I don't see how different custom NFSROOTDIR rc.conf of the same PXE root file system can be used by different clients. The documentation of diskless and /etc/rc.initdiskless doesn't mention such an option. You can find that script here. The script creates a partial clone of the host system in a...
  14. B

    Solved Diskless (PXE) boot stuck

    This manpage says: but no such file exists on my installation of 15.0. Where could I get it from?
  15. DtxdF

    jails infrastructure as code and orchestration tools : ansible vs iocage vs (appjail + director + overlord)

    toddg Unfortunately, no. All my Ansible-related files are private. I recommend that you consult the documentation for the specific module that solves your problem, but I also think you should read up on the basics, such as variables, templates, files, playbooks, tasks, plays, etc. The good...
  16. J

    Solved A reliable backup strategy for a newbie

    Use caution with rsync -a. If used by a normal user, it doesn't get permissions quite right. Having spent quite a while trying to get rsync to do everything exactly the way I want, here are my options for its use. I'm just showing the options I use here, not providing a complete script: #...
  17. P

    etcupdate: Restore /etc from backup and merge into a new installation

    Having read etcupdate and looked at the source in /usr/sbin/etcupdate makes me asking for help. Confusion is about a bunch of named directories and being unsure what to use as I fail to succeed. The task is restoring /etc from backup and merge it with the untouched new /etc in a fresh...
  18. C

    Solved A reliable backup strategy for a newbie

    Well, the process of using rsync -a to back up certain directories seemed to go very well, but I had to make a minor adjustment for my home directory. See below. mkdir -p /backup/boot mkdir -p /backup/usr/local mkdir -p /backup/home (New line) rsync -a /boot/loader.conf /backup/boot rsync -a...
  19. Phishfry

    dnsmasq logging

    When I am using a program and I am unsure of the options available I use the built in help facilities. dnsmasq --help Usage: dnsmasq [options] Valid options are: -a, --listen-address=<ipaddr> Specify local address(es) to listen on. -A, --address=/<domain>/<ipaddr>...
  20. B

    diskless

    According to diskless:- I don't have anything in this directory /usr/share/examples/diskless/ I'm running FreeBSD 15.0. Should I expect to have something in this directory?
Back
Top