Precisely, no, but something look alike.
Unlike python, different versions of cython conflicts each other.
As far as I know, switching default cython to cython3 was planned, and in preparation of it, lang/cython0 that is equivalent with previous...
Giving it a try in my VM. I access my VM via RDP. I downloaded and compiled the program from my local user profile, but it didn't want to run from startwm.sh. I moved the cwm2.bin file to /usr/local/bin, and changed ownership to root:wheel...
Giving it a try in my VM. I access my VM via RDP. I downloaded and compiled the program from my local user profile, but it didn't want to run from startwm.sh. I moved the cwm2.bin file to /usr/local/bin, and changed ownership to root:wheel...
Assuming I have set PACKAGESITE to http://ftp-archive.freebsd.org/pub/FreeBSD-Archive/old-releases/i386/9.0-RELEASE/packages/
how do I install mc? do I need to provide the precise package name, ie...
That works, were you able to export whatever bookmarks and other personal information you had from Firefox? At any rate, it's worth just deleting the entire set of firefox directories in your home directory and do a force reinstall of everything...
Original article here.
Consider this when replying.
FreeBSD, The FreeBSD Foundation, and The FreeBSD Forums are not associated with the content of this article.
That works, were you able to export whatever bookmarks and other personal information you had from Firefox? At any rate, it's worth just deleting the entire set of firefox directories in your home directory and do a force reinstall of everything...
Of course they're going to say that, they're Linux users.
You don't need to be a serious enthusiast to run FreeBSD, the community skews that way primarily because there isn't much awareness outside of that group that it even exists. When I...
FreeBSD allows that feature and as policy FreeBSD never makes fat tools, it uses Unix ways, right tool for the right job.
Yes the package manager could solve the link environment and manage symlinks ala "update-alternatives" so you can...
Yes, unfortunately, pkg upgrade -f didn’t help either.
For now, I think I'll just stick with Chromium, one way or another.
Thanks for your time and the helpful suggestion.
If pkg upgrade -f does not correct the issue, I don't think a fresh install would fix anything. But this is why I have "system disks" and "data disks" so I can separate my home directories and pure data from the system. Makes it a lot easier to...
No, I cannot agree with any of that but I'm not going to dissect and reply piecewise. My issue is calling the tool "pkg" and somewhat advertise it as the pkg alternative. That's just semantics, not important, and I support your efforts.
Here I...
I don't understand the goal. Something must happen while obscured to the operator? Why do "agents" need to control everything somehow more than a logged in root? All can be done by only a program, right?
This section contains general FreeBSD Forums rules which should be followed by all members in order to keep the quality of these forums on a high level.
Though many of the FreeBSD development members read this forum, we cannot always guarantee...
text
How to draw a histogram or a timeline easily. Graphical way is preferred or some simple text file.
I wanted something simple to run in FreeBSD. I'll be working with it a time and would like to trust only the workstation.
Rust does not eliminate memory-related bugs in a kernel context; it merely shifts where and how they occur. The moment Rust code interacts with existing C kernel infrastructure through FFI, shared data structures, or unsafe blocks the language’s...
If Firefox was affected by a power-off bad enough to affect forks and reinstalls of it, I doubt it's the only thing on the whole OS broken (I'd do the reinstall :p)
Given things like rowhammer, not even the hardware is too sure what memory it is to touch and which not.
We can make stuff hard and harder, but 100% is off the menu.
You said you used fsck to repair filesystems? To rule out any potential permissions, maybe:
cd /home
chown -R username:groupname homedirectory
to walk through your home directory and set all the files and subdirectories as owned by you.
A friend of mine said: "Firefox is completely corrupted, maybe something like a bad sector or similar... You'll have to reinstall the operating system again. But honestly, I don't have enough time for that because it would be way too...
Thanks...
I just opened Firefox again, and it closed immediately. I got these errors:
$ firefox:
console.warn: BackupService: "There was an error while trying to get the Document's directory" [Exception... "Component returned failure code...
Is this why I have to remove py311-cython3 manually because it conflcts with another branch? I don't remember exact details but a Firefox build stops if it exists. It's installed as dependency of something else. I added the "make deinstall " for...
I'm beyond what I can help with (this is where a coredump and source code in a debugger becomes necessary), but that seems like something someone could help with.
I tried these steps, but it still crashes.
I remember the main error I kept seeing in the terminal was:
Segmentation fault (core dumped)
It just happened again. After about a minute of browsing and installing an extension in Firefox, it closed...
hw.snd.default_unit merely changes whatever device /dev/dsp points to. If you paid enough attention to virtual_oss, you might have noticed that -d dsp sets hw.snd.basename_clone=0, removes normal /dev/dsp and replaces it with /dev/dsp controlled...
shkhln, you are correct, it is not needed to change default audio device using:
I can use:
And it works like a charm.
In the other hand when I start virtual_oss service I can see:
And -d parameter only indicates the device name:
And nothing...
The fact that all Firefox based browsers have the same/similar issue imply a library used.
Are you starting it from a term window or clicking on a menu item? Try from a term window, there may be a breadcrumb somewhere.
also from a term window...
First off, there's no need for an audio daemon. FreeBSD's OSS implementation can mix multiple clients without any additional software involved. Still it uses the classic OSS interface (consisting of devices like /dev/dsp and /dev/mixer). This...
C++, HML, and inline JavaScript are alive! Take that Qt!! Going to go see if lexbor https://github.com/lexbor/lexbor is in the ports repo so I can add css styling support.
Holy cat crap!! Its actually in there! And it s recent version...
Given things like rowhammer, not even the hardware is too sure what memory it is to touch and which not.
We can make stuff hard and harder, but 100% is off the menu.
The problem is that in a kernel, the unsafe boundary isn’t small or well defined. Hardware, DMA, MMIO, shared buffers, and existing C subsystems all continuously violate the assumptions Rust relies on for memory safety.
If the foundation you’re...
Don’t even get me started on crates.io. In my opinion, it’s a prime target for supply-chain attacks along with nodejs and python packages. People often respond with “but the code is open, you can inspect it,” but the xz-utils incident is a...
Benny Siegert, a well known NetBSD developer, gives some reasons why in his opinion Rust will never make it into the NetBSD kernel:
First of all: I’m not so sure that Rust in the kernel would have been chosen to cater to a younger developer...
This has been created for a general audience in mind. The use case is largely my own. I wanted a wm that would be simple to maintain (if at all) and simple to extend, ie. a fit-and-forget solution. Something that would effectively be coded in...
Indeed. The problem is that the viral hordes don't see that. This complex and unsafe work is hidden in the depths of all the dependencies that these guys just flippantly pull in from crates.io.
I've already tried all of these steps. I completely removed every Firefox-related file from my system, reinstalled it, but it didn't help.
Also, when I ran pkg check -as, the only output I got was:
Checking all packages: 100%
No errors or...
Rust does not eliminate memory-related bugs in a kernel context; it merely shifts where and how they occur. The moment Rust code interacts with existing C kernel infrastructure through FFI, shared data structures, or unsafe blocks the language’s...
There are a few things I would try:
1) Clearing the startup cache. Type about:support in the address bar and find the button in the top-right box.
2) Completely deleting $HOME/.mozilla and letting Firefox recreate it.
3) Check for damage in any...
Can anyone tell me why I am unable to boot from this USB stick which is not partitioned?
file -s /dev/da0
Automount mounts the device and shows me what is on it.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.