LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Other *NIX Forums > *BSD
User Name
Password
*BSD This forum is for the discussion of all BSD variants.
FreeBSD, OpenBSD, NetBSD, etc.

Notices


Reply
  Search this Thread
Old 12-10-2019, 09:03 AM   #16
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574

Original Poster
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453

I found something interesting in another post:
Quote:
Originally Posted by jggimi View Post
When OpenBSD is first connected to a disk drive, and there is no on-disk OpenBSD disklabel already present -- OpenBSD will scan the MBR/GPT partition table and look for any pre-existing, recognized "foreign" MBR/GPT filesystem. It will build a virtual disklabel, pre-populated with any of these recognized filesystems, starting with disklabel partition letter "i". If there is already an OpenBSD disklabel on-disk, it will not scan the MBR or GPT partition table, and will only use what it finds on the on-disk disklabel. Therefore, if you have pre-existing MBR/GPT partitions, OpenBSD will find them when first installed. If you created these MBR/GPT partitions AFTER OpenBSD has written its disklabel, you must add these partitions to the disklabel manually.
I ran one or two partial installs that didn't work because I was trying to copy the sets off a CD that I hadn't booted from. So I had to crash them. That means that on the install that worked, I already had a BSD partition ready to go. So it seems my Linux partitions are probably not registered. I shall need to edit them into the disklabel so that I can mount them and copy stuff over. Then I can send the info the bsd people are asking for.
 
Old 12-10-2019, 09:09 AM   #17
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hazel View Post
but I think I know how to do it. I just have to copy the /etc/rc.conf file to create a local config file and edit that.
It's detailed in the faq11 (see link in above post).

You can either edit /etc/rc.conf.local to enable it, or use the rcctl(8) method described there:

Code:
# rcctl enable xenodm
# rcctl start xenodm
Quote:
Originally Posted by hazel View Post
And the kernel keeps complaining about my usb mouse losing and remaking contact.
grep dmesg for anything usb related. If it's not a loose connection, it's likely a controller/hub problem. Does the mouse work despite this?

Quote:
Originally Posted by hazel View Post
I need to understand how it does networking. In Linux I have only two network interfaces, loopback and the ethernet card, but BSD gives me two more and I have no idea yet what they are. And the device names are weird. I can't see the logic yet.
The device names are actually quite logical. They are the name of the driver plus a numeric ID number:

https://www.openbsd.org/faq/faq6.html#Setup

If you read the documentation it will all become clear...

 
Old 12-10-2019, 09:12 AM   #18
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hazel View Post
I ran one or two partial installs that didn't work because I was trying to copy the sets off a CD that I hadn't booted from. So I had to crash them. That means that on the install that worked, I already had a BSD partition ready to go. So it seems my Linux partitions are probably not registered. I shall need to edit them into the disklabel so that I can mount them and copy stuff over. Then I can send the info the bsd people are asking for.
The project appreciate your dmesg, in order to know what hardware works and what does not:

https://www.openbsd.org/faq/faq4.html#SendDmesg

Once you've created the text file, you can attach it to an email and send it.
 
Old 12-10-2019, 09:19 AM   #19
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574

Original Poster
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
I just checked the Linux /var/log/messages for mouse stuff. Most days, there's just the three initialisation messages. For last Wednesday, there are three sets of these but they seem well spaced out in time. The BSD ones are almost constant. So I don't think this is a loose plug. I think it's the BSD kernel being pernickety.

I shan't know if the mouse works in BSD until I get X up and running. There doesn't seem to be anything like gpm, not by default anyway.
 
Old 12-10-2019, 09:30 AM   #20
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
faq7: https://www.openbsd.org/faq/faq7.html#ConsoleMouse

Refer to wsmoused(8)
 
1 members found this post helpful.
Old 12-10-2019, 09:57 AM   #21
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574

Original Poster
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
There's so much literature! It's like being locked in a library! OK, I'm getting together a list of stuff to do tomorrow.

1) Set up the X display manager.
2) Find where my Linux partitions are and, if necessary, get them recognised so I can mount them.
3) Try out the mouse daemon. btw I was surprised to find out just now from one of your links that scrollback on consoles often doesn't work in OpenBSD. It works on my machine and I've been using it automatically. It's something a Linux user would just assume is there.
4) Learn a bit more about device nomenclature.
 
Old 12-10-2019, 10:08 AM   #22
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hazel View Post
3) Try out the mouse daemon. btw I was surprised to find out just now from one of your links that scrollback on consoles often doesn't work in OpenBSD.
It doesn't. Usually the advice is to use tmux(1) for that kind of thing. I tend to mostly work with terminal emulators within X, so it doesn't bother me so much. If I am using a VT and know output won't fit on the screen and need it to, I will use a pager such as less(1).

//edit: Be aware that wsmoused(8) might conflict with X. If you enable it to see if your mouse is working, you'll probably want to kill it before starting X. I've had problems with this kind of thing with FreeBSD, NetBSD and OpenBSD in the past, so always disable any console mouse support.

Last edited by cynwulf; 12-10-2019 at 10:11 AM.
 
Old 12-10-2019, 10:21 AM   #23
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574

Original Poster
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
Quote:
Originally Posted by cynwulf View Post
//edit: Be aware that wsmoused(8) might conflict with X. If you enable it to see if your mouse is working, you'll probably want to kill it before starting X. I've had problems with this kind of thing with FreeBSD, NetBSD and OpenBSD in the past, so always disable any console mouse support.
Yes, the man page warns you about that. It's a pity in a way because I've grown used to using GPM's middle-button paste in X. It's much quicker that ctrl-C/ctrl-V.

I've found out what one of my extra network interfaces is: enc0. It's a virtual interface for use in VPNs. Not that I've ever used a VPN. They sound like an excellent idea but I wouldn't know how to set one up.

PS: the other interface is a packet logger. I can't imagine ever wanting to use that. I imagine it's for diagnostic purposes if you think you are being hacked.

Last edited by hazel; 12-10-2019 at 10:28 AM. Reason: Added PS
 
Old 12-10-2019, 11:09 AM   #24
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hazel View Post
Yes, the man page warns you about that. It's a pity in a way because I've grown used to using GPM's middle-button paste in X. It's much quicker that ctrl-C/ctrl-V.
Middle mouse works for me in xterm and other terminal emulators. That's not dependent on a console mouse driver.

Quote:
Originally Posted by hazel View Post
I've found out what one of my extra network interfaces is: enc0. It's a virtual interface for use in VPNs. Not that I've ever used a VPN. They sound like an excellent idea but I wouldn't know how to set one up.
The man page for enc(4) explains this.

Quote:
Originally Posted by hazel View Post
PS: the other interface is a packet logger. I can't imagine ever wanting to use that. I imagine it's for diagnostic purposes if you think you are being hacked.
pflog(4) may hold some clues on that, if that's what you refer to? It's part of pf(4), which is OpenBSD's well respected packet filter.
 
Old 12-10-2019, 03:57 PM   #25
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574

Original Poster
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
OK. I enabled xenodm and we'll see if X comes up next time I boot. I managed to bring the files I want to post over to Linux via a usb key with a vfat filesystem on it. It's a good thing I had one! OpenBSD seems to be completely incompatible with ext filesystems. I found all my Linux partitions in the BSD disklabel (hurrah!) but I could only mount them read-only.

In the mean time, here is a sample mouse grumble from BSD's dmesg:
Code:
wsmouse0 detached
ums0 detached
uhidev0 detached
uhidev0 at uhub1 port 4 configuration 1 interface 0 "PixArt Lenovo Optical USB Mouse" rev 1.10/1.00 addr 4
uhidev0: iclass 3/1
ums0 at uhidev0: 3 buttons, Z dir
wsmouse0 at ums0 mux 0
This happens over and over. There seem to be three synonymous devices here. I'll see if I can find out what they are.

PS: It seems that wsmouse is the specific mouse driver, ums is a general input driver (something like evdev I suppose) and uhidev0 must be some kind of even more general usb device, though the name suggests it's definitely for the human interface and not storage. This kind of layering must be a BSD thing; I've never met anything like it in Linux.

Last edited by hazel; 12-10-2019 at 04:09 PM. Reason: Added PS
 
Old 12-10-2019, 05:19 PM   #26
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
FreeBSD got ext fs read write now in ver 12 I do not know how closely OpenBSD is to it.

https://man.openbsd.org/FreeBSD-11.1/ext2fs.5
The ext4 support is read-only.
https://www.reddit.com/r/openbsd/com..._file_systems/
now I know.

Last edited by BW-userx; 12-10-2019 at 05:20 PM.
 
Old 12-10-2019, 10:07 PM   #27
Aeterna
Senior Member
 
Registered: Aug 2017
Location: Terra Mater
Distribution: VM Host: Slackware-current, VM Guests: Artix, Venom, antiX, Gentoo, FreeBSD, OpenBSD, OpenIndiana
Posts: 1,008

Rep: Reputation: Disabled
I have OpenBSD installed as VM client. Though OpenBSD does support VitrualBox, it is easy to set resolution at 1920x969x32 (in my case).
I don't use KDE, rather xfce. The advantage of virtual box is hardware: standard and quite conservative and you can skip EFI. All works without a hitch. File exchange over samba (or nfs) with host. Only missing part is copy/paste buffer between host and client but this is not really a problem.
 
Old 12-11-2019, 06:02 AM   #28
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574

Original Poster
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
Hurrah, I have X! Xenodm puts it up on console 5, not console 4 like startx. Window manager is fvwm, which I used to love but can barely remember now. I think it must have changed a lot since my Red Hat days because I distinctly remember a bottom panel/taskbar but that isn't there any more, not even as a listed module. But the really important thing is that as soon as X comes up, my mouse stops detaching and reattaching itself. So that is definitely a driver problem, not a loose plug.

So far, I've only done a few small things like giving myself sudo/doas access and setting up a left-handed mouse. I've also created a mountpoint for my data partition and put it into fstab so that it will be mounted at startup. Linux ext4 partitions can only be mounted -ro but at least that means I can copy in one direction. And I've twigged how I can do it in the other direction without having to fool around with usb keys: use the EFI system partition as a temporary store. It's vfat so BSD can write to it.

The two most important jobs are to update the software and fix cron so that it does the maintenance jobs when the system is up. It's no good scheduling them for overnight. The problem is that I keep getting distracted by the literature!

Can someone please explain why the startup sequence stops for a long time on ordering libraries. Is this normal?

Last edited by hazel; 12-11-2019 at 09:25 AM.
 
Old 12-12-2019, 06:08 AM   #29
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574

Original Poster
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
Now I've really screwed things up and can't find a way to proceed. Someone give me a hint!

What happened was this: I put my main data partition (/dev/sd0m -t ext4) into fstab for automount on /home/data. That's where I have it in all my linuxen. OpenBSD thinks it's corrupt and won't let the boot go any further unless I fsck it. I don't want to do that because it's never a good idea to fsck a filesystem from an alien OS and I have all my personal files on that disk. So I tried to edit the fstab to comment that line out. But the root partition is mounted read only at that stage of the boot.

So I did what I would have done in Linux: rebooted from an external disk to fix the problem. I have that little usb image that I was trying (and failing) to install from, and I thought I could mount the sd0a partition read-write from there and do the edit. But in that setup, I can't even find the disk! The kernel reports finding the drive as sd0 but there are no sd0 partitions in the /dev directory of the usb.

I rebooted into Linux and fscked the partition from there (it's sda5 as far as Linux is concerned) and there's absolutely nothing wrong with it. I suspect the problem is that OpenBSD treats it as ext2 and is confused by the differences.

What do I do now? The only thing I can think of is to dump the partition, let OpenBSD fsck it (and maybe fsck it up!), edit /etc/fstab to get out of the mess and, if need be, restore the partition under Linux afterwards. But obviously I'd prefer another solution if there is one.
 
Old 12-12-2019, 06:55 AM   #30
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
I do not know how you got OpenBSD to run and not FreeBSD. Isn't OpenBSD somewhat inferior to FreeBSD? it branched off in FreeBSD earlier stages and has been developed slowly from there, whereas FreeBSD has finally gotten ext2 type FileSystem to read and write. Even though I have some problems with auto mounting my on board drives, where they don't auto mount, yet if it were Linux I still see them in my file manager if I open it up, pcmanfm, or thunar.

this just gives me the option there should be one main file system type that everyone can use for people that dual (multi) boot Operating Systems.

nevertheless, it seems to me if you can get OpenBSD to boot, then you should be able to get FreeBSD to do the same, where there abilities to deal with Linux type file system ext2,3,4 appers to be better then OpenBSD obviously does not / is not doing so, by your post in here on this matter. Even though I do have some problems with mounting partitions and USB at times myself in FreeBSD. it is quirky to say the least.

some mount commands for OpenBSD
https://www.cyberciti.biz/faq/openbs...rive-harddisk/
https://www.romanzolotarev.com/openbsd/mount.html
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
OpenBSD: nvidia drivers, screen resolution and FreeBSD binaries on OpenBSD ::: *BSD 2 08-21-2009 04:18 AM
LXer: Fsck errors in the Linux filesystem on my OpenBSD laptop NOT caused by OpenBSD LXer Syndicated Linux News 1 08-31-2008 03:15 AM
LXer: OpenBSD: The OpenBSD Foundation LXer Syndicated Linux News 0 07-26-2007 10:31 AM
OpenBSD - Where can i get OpenBSD 3.7 ISO CD -- Please help me b:z Linux - Software 5 04-08-2005 07:09 AM
OpenBSD - Where can i get OpenBSD 3.7 ISO CD -- Please help me b:z Linux - Software 1 04-07-2005 08:46 AM

LinuxQuestions.org > Forums > Other *NIX Forums > *BSD

All times are GMT -5. The time now is 10:19 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration