Latest activity

  • MG
    MG replied to the thread What is the future of FreeBSD?.
    I have a working X.org with xterm and dependencies in 330MB. That's to me atm the minimal size needed for graphical output on top of the base system.. It's still way too much but it goes in the direction of an independent native graphics driver...
  • Zare
    Zare replied to the thread Boot word definition.
    Depends on what the machine is. Answer post 70s is simple - the CPU knows where to look at. In IBM PC the 8088 CPU has a 'reset vector' of 0xFFFFFFF0, the CPU will execute instruction available at that address, which is bound to BIOS ROM. In...
  • nerozero
    Or maybe even better use a tmux: /etc/rc.local #!/bin/sh tmux_bin="/usr/local/bin/tmux" # Session name tmux_session="startup" export PATH="$PATH:/root/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin" $tmux_bin new-session -d...
  • T
    Solved it, this has been missing: sysctl net.inet6.ip6.forwarding=1 Yippee!
  • T
    tingo reacted to blackbird9's post in the thread Music… with Like Like.
    Fast dots... View: https://www.youtube.com/watch?v=9liUNhzYt8Y I was hoping for at least a jellyfish, but it's mostly just 'fast dots' flying around... View: https://www.youtube.com/watch?v=VOinXr2uruI Dots thots... these guys seem to have a...
  • D
    Hardware failures have nothing to do with the operating system.
  • T
    True, but it's far easier to skim an article than a video. Even with my method of running the video at 2x and just reading the captions, I can get the gist of a written article far more quickly.
  • T
    tingo reacted to AlfredoLlaquet's post in the thread Music… with Like Like.
    Very good rock band. I didn't know them. View: https://www.youtube.com/watch?v=XmpvB8AxZ5c
  • D
    My mother used to ask me, "If everybody else jumped off the bridge, would you?"
  • D
    drhowarddrfine reacted to T-Aoki's post in the thread What is the future of FreeBSD? with Like Like.
    FreeBSD's default is "not using any GUI but old school command line interface". But FreeBSD has a bunch of GUIs (DEs) in ports tree, and even some of them can be installed in-pararrel without conflicts. Admins can choose anything in ports /...
  • freethread
    freethread replied to the thread Boot word definition.
    English words, for english speaking people. Imagine the situation in Italy (for example). We have adopted it in our language and for lot of them `transformed` in italian, like `to grab` -> `grabbare`, `to download` -> `downloddare`, `to boot` ->...
  • freethread
    freethread reacted to blackbird9's post in the thread Music… with Like Like.
    Fast dots... View: https://www.youtube.com/watch?v=9liUNhzYt8Y I was hoping for at least a jellyfish, but it's mostly just 'fast dots' flying around... View: https://www.youtube.com/watch?v=VOinXr2uruI Dots thots... these guys seem to have a...
  • freethread
    Just finished a new Build: Asrock Rack AM5D4ID2 Epyc 4545P Thermaltight AXP90-53 full copper cooler 64GB RAM Radeon pro W6400 Crucial T710 SSD Steinberg UR22 audio interface (the old Mk I model, works great but requires a USB quirk) Silverstone...
  • freethread
    Asus Prime B660M-A D4 NVIDIA GeForce GTX 1650 hw.physmem: 68479336448
  • T
    tingo reacted to bakul's post in the thread Music… with Like Like.
    Ringo Starr - Back Off Boogaloo (1971) View: https://www.youtube.com/watch?v=BXg1AxBXN5g
  • freethread
    The misc/mc viewer (aka mcview) can view a lot of files, PDF too. Just play with F8 and F9 keys while viewing. It also depends on the configuration file /usr/local/etc/mc/mc.ext.ini (and/or its user counterpart in %{HOME}/.config/mc if any)...
  • K
    kjpetrie replied to the thread Forum hack- what happened?.
    I am now receiving spam on the unique address I used to register for the bugzilla, so either the hack has been used to gain access to the bugzilla or that has now also been hacked. Attempting to log in to the bugzilla now fails with a 503 error.
  • tembun
    tembun reacted to blackbird9's post in the thread Solved xterm, tabs, new windows with Like Like.
    I usually just have one xterm per screen session. If it's a remote session, start an xterm for it, ssh to the remote host and attach the screen session. Nested multi-screen screen or tmux sessions gets too confusing. Well, I guess you could...
  • nerozero
    Couple of weeks ago I had similar issue while upgrading from 14.3->15.0, which had issues with firewall. Now I'm doing the upgrade in two steps 14.3 -> 14.4 -> 15.0, but still had some issues with BHyve virtualization on the host. So the issue...
  • K
    kpedersen replied to the thread What is the future of FreeBSD?.
    So that profile is leaning more towards geek. Games consoles and a smartphone would be the more popular approach for normal guys. As soon as you enter closer to "geek", then you are more niche in terms of a market and you need to start putting in...
  • H
    tmux has copy and paste. ^B[ ---------------- Begin copy mode. Begin Select with SP, move as in vi, end with RET ^B] ^B= --------- Paste selected / Select buffer to paste.
  • K
    kpedersen replied to the thread What is the future of FreeBSD?.
    "normal guy" would not be using FreeBSD. Use the right tool for the job. And in that case, its likely Windows. A "normal guy" would certainly be using the Windows OS that came preinstalled on their laptop.
  • T
    T-Daemon replied to the thread Wanting to build 16-CURRENT.
    "buildword" must be build first, then "buildkernel", to assure the toolchain to build the kernel matches the updated source tree. Otherwise it ends up using the running system toolchain. See...
  • T
    There are command line tools which can read PDFs, but without images, no hyperlinks, etc. misc/lesspipe is such a tool. There might be other tools I'm not aware of, or don't recall. There are command line music player in the ports tree, e.g...
  • cracauer@
    I use a shell inside Emacs for such files.
  • T
    T-Daemon replied to the thread NFS exports.
    You don't edit /etc/zfs/exports. It's very clear expressed in the file: # !!! DO NOT EDIT THIS FILE MANUALLY !!! If you do, it has no effect, and any manual modification is overwritten by the next system reboot. The V4: line belongs in...
  • H
    Perhaps things like: You could write a shell script that takes inode number as arg and returns name. Or is there a command for that?
  • T
    T-Daemon replied to the thread NFS exports.
    You are defining the NFSv4 tree root as V4: /var/db/backup but the wrong export directory in the line below. It must be: V4: /var/db/backup /var/db/backup -mapall="root" Mount on client: mount -o nfsv4 192.168.1.250:/ /mnt Why " / " in "...
  • MG
    MG replied to the thread What is the future of FreeBSD?.
    So, the complexity of the drm module prevents implementation of a basic graphical program without depending on Xorg?
  • F
    FreeBSD News posted the thread FreeBSD 15.1-BETA2 Available in Blogs and Newsfeeds.
    Original article here. Consider this when replying. The second BETA build for the FreeBSD 15.1 release cycle is now available. ISO images for the amd64, armv7, aarch64, powerpc64, powerpc64le, and riscv64 architectures are FreeBSD mirror sites...
  • F
    FreeBSD News posted the thread FreeBSD 15.1-BETA1 Available in Blogs and Newsfeeds.
    Original article here. Consider this when replying. The first BETA build for the FreeBSD 15.1 release cycle is now available. ISO images for the amd64, armv7, aarch64, powerpc64, powerpc64le, and riscv64 architectures are FreeBSD mirror sites...
  • Aknot
    Aknot reacted to Machiaveli's post in the thread gitup: process_command: read failure with Like Like.
    Something useful to check if the pulled ports tree is sane and on what branch it is: git -C /usr/ports status And another one to see the last commit log: git -C /usr/ports log -1
  • Aknot
    Thank you guys, everything went smooth 👍 This is the result, since last portmaster -a -x FreeBSD run: ===>>> The following actions were performed: Upgrade of pkgconf-2.4.3,1 to pkgconf-2.4.3_1,1 Upgrade of portmaster-3.33 to...
  • Aknot
    ..and to just prove my point git -v git version 2.54.0 /usr/bin/time -h git clone https://github.com/freebsd/freebsd-ports.git Cloning into 'freebsd-ports'... remote: Enumerating objects: 6930879, done. remote: Counting objects: 100%...
  • MG
    MG replied to the thread What is the future of FreeBSD?.
    In a base system, how can I draw a line on a 1920x1080 screen that both my monitor and graphics card support? (with or without kms driver)
  • Grell
    Grell replied to the thread Music….
    Resonance by HOME progressed by bits Smashing Pumpkins - Try Try Try
  • MG
    MG replied to the thread What is the future of FreeBSD?.
    Period? I have no idea what you're talking about there. My point in short: Why can't FreeBSD show something on a large resolution that the graphics hardware is capable of but X.org can, with a small amount of required data? I'm not complaining...
  • MG
    MG replied to the thread What is the future of FreeBSD?.
    I usually start X.org to an empty screen on max monitor resolution. All open source only. No binary drivers. It doesn't need a lot of information. I think FreeBSD should be able to do this too because it's part of the graphics card capabilities...
  • H
    hedwards replied to the thread Fast charging from a laptop.
    TBH, a battery pack is probably a better option if you do manage to get charging to work fast enough with the laptop, as you're still putting additional stress on the power system and/or battery. If you're plugging in, then just get a decent...
  • H
    hedwards reacted to JohnK's post in the thread Who owns the code Claude wrote? with Like Like.
    Oh ick! A random thought. GitHub uses your stuff to train Ai. Let's say I opt-out of the Ai stuff but someone who didn't opt-out forks my repo, does that mean Ai still digests/uses my stuff? ...but as I type that, it makes more sense that GitHub...
  • H
    hedwards replied to the thread Who owns the code Claude wrote?.
    The issue is that nobody is going through and tracking where the stuff that isn't general is coming from. It's one thing to take the typical way of opening and writing to a file from an AI, there's likely nothing in that which is at all creative...
  • MG
    MG replied to the thread What is the future of FreeBSD?.
    I think the DE is just some external programs but the primary graphics device of a computer should be able to show a pixel on all its display resolutions before the suppprt can be considered complete. Not having a default system DE integrated...
  • M
    martino reacted to Charlie_'s post in the thread pkg upgrade - truncated reply with Thanks Thanks.
    It seems to be fixed.
  • freethread
    freethread reacted to Mayhem30's post in the thread gitup: process_command: read failure with Thanks Thanks.
    This is how I switched from net/gitup to devel/git If there's a cleaner or more efficient method, I'm all ears. I only care about the latest commits (the same way gitup works): git clone --depth 1 https://git.freebsd.org/ports.git /usr/ports...
  • Aknot
    It is perfectly safe to : rm -vfR /usr/src (just backup your kernel config file). It is perfectly safe to rm -vfR /usr/ports Config is in /var/db/ports.
  • Aknot
    Nothing will be lost, configs are stored in /var/db/ports If you just need cloning gitoxide (gix) is a lot faster than git
  • S
    scottro reacted to Mayhem30's post in the thread gitup: process_command: read failure with Thanks Thanks.
    This is how I switched from net/gitup to devel/git If there's a cleaner or more efficient method, I'm all ears. I only care about the latest commits (the same way gitup works): git clone --depth 1 https://git.freebsd.org/ports.git /usr/ports...
  • S
    It is perfectly safe to : rm -vfR /usr/src (just backup your kernel config file). It is perfectly safe to rm -vfR /usr/ports Config is in /var/db/ports.
  • S
    Nothing will be lost, configs are stored in /var/db/ports If you just need cloning gitoxide (gix) is a lot faster than git
Back
Top