DaemonForums  

Go Back   DaemonForums > OpenBSD > OpenBSD Installation and Upgrading

OpenBSD Installation and Upgrading Installing and upgrading OpenBSD.

Reply
 
Thread Tools Display Modes
  #1   (View Single Post)  
Old 11th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default openBSD 6.2 Problem kelnerage fault trap Code=0

first trouble during installation.Have any knowledge what would be my installation problem.After installation I got some noticed after start openBSD 6.2 .First time I have this issue 6.1 worked fine.I got iso from website and install Opebsd by internet.

I can't do nothing because after system start then stop and stop wait .When I reboot the situation is the same.This is a New installation 6.2
Code:
Problem kelnerage fault trap Code=0
Stopped at uvm_pmr_get1 page+0x380:movl%ecx,0(%edi,%eax,1ddb{0}>

Last edited by ocicat; 13th October 2017 at 05:49 PM. Reason: Please use [code] & [/code] tags when posting screen output.
Reply With Quote
  #2   (View Single Post)  
Old 11th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

When the failure occurs, the kernel debugger ddb(4) tries to explain the problem.

The first message: I am hopeful that it told you "kernel: page fault trap" and that the output on screen was clear, and not how you typed it in your post above. If the message had mixed up characters, this tends to indicate hardware trouble.

The second message indicates where in the kernel the page fault occurred. A problem report to the OpenBSD project would need a backtrace and a dmesg(8) at minimum. The crash(8) and ddb(4) man pages can help with this.

It might be possible to successfully boot the GENERIC kernel in single-user mode. If so, you could obtain and share a dmesg(8) that way.

boot> -s

If not, a dmesg() from the RAMDISK kernel may stilll have value. Select the shell at the Install, Upgrade, Shell prompt. Output the dmesg to a file on a manually mounted USB stick.

boot> bsd.rd
Reply With Quote
  #3   (View Single Post)  
Old 12th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

Hi I can't install my stick usb .When i tried use command .
mkdir /mnt/pen
mount /dev/sd0i /mnt/pen
and copy by cp dmesg /mnt.pen after it I didn't see this file on my stick .I probably should use monunt msdos -t but shell see problem.
#######################################
I write what i saw during start openbsd 6.2
I have Nividia card and my Intel i7 has also one card on processor .But I have never had a this issue happened.

Vga1 at pci1 dev 0 function 0 Vendor NVIDIA unknow produt 0x1402 rev 0xa1
azalia 0 :no supported codecs inteldrom 0 at pci0 dev 2 function 0 intel HD Graphics 3000 rev 0x89


and system stop and wait .

What is """azalia 0'''' this is NSA product maybe .???

My graphic card work fine .And what I can do without Ubuntu stick .
Reply With Quote
  #4   (View Single Post)  
Old 12th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

I install again my old openbsd 5.9 and works .Then I upgrade for 6.2 and situation is the same.
Conclusion.
I suppose Openbsd 6.2 has some problem
https://ftp.openbsd.org/pub/OpenBSD/.../install62.iso

or Openbsd 6.2 doesn't support my graphic card or something else .
Reply With Quote
  #5   (View Single Post)  
Old 12th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

  1. Your dmesg(8) issue

    Your cp(1) command failed because you assumed "dmesg" is a file. It is not. It is program. An application. A command. It outputs the kernel message buffer, which often goes by the same "dmesg" name, which has confused you. It has a man page: dmesg(8).

    Here is an example of mounting a USB stick defined as sd0, containing a single FAT filesystem at virtual disklabel partition "i" and using the dmesg(8) command to send the buffer to a file in the mounted filesystem.
    Code:
    # mount /dev/sd0i /mnt
    # dmesg > /mnt/my.dmesg
    # umount /mnt
  2. Your earlier crash is now an apparent hang

    You first reported a repeatable kernel page fault trap. Now, you are reporting an apparent kernel hang. Whatever was happening previously that was repeatable, is now no longer repeatable. Something changed. What?

    It is not clear to me if your first post with the scrambled text was exactly what was displayed on your console. Your post in the announcement thread was different than what was posted above.

    I (and anyone else here) can only see the information you post.
Reply With Quote
  #6   (View Single Post)  
Old 12th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

I have time to answer your last question:
Quote:
What is """azalia 0'''' this is NSA product maybe .???
Remember those man pages I keep recommending? See azalia(4). Manuals are available online, too. Here's a link:

http://man.openbsd.org/OpenBSD-6.1/azalia
Reply With Quote
  #7   (View Single Post)  
Old 12th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

Now from Windows .I will be try again install openbsd 6.2 and put this outcome on my stick and update on this forum.For my is surprise why this mistake isn't on Old version 5.9

all what i copy us my keyboard I see when OpenBSD 6.2 start and stop(blue color).This second information was before previous.
Reply With Quote
  #8   (View Single Post)  
Old 12th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

Code:
# mount /dev/sd0i /mnt
# dmesg > /mnt/my.dmesg
# umount /mnt
I did this command but I don't see this file on my usb pen .I see only my windows file .

How to send it from shell console maybe it is possible .
This file is not at my stick.

Last edited by ocicat; 13th October 2017 at 05:50 PM. Reason: Please use [code] & [/code] tags when posting commands.
Reply With Quote
  #9   (View Single Post)  
Old 12th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

What kernel are you running? GENERIC in standalone mode? RAMDISK in shell?

When you type all three commands, did you get ANY error messages or did you just get a new "#" prompt?
Reply With Quote
Old 12th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

When openbsd 6.2 start before start I write how you said me
boot bsd.rd and next start Shell
all command mount and copy .I see this file dmesg at /mnt
But USB stick don't have this .When I use my Ubuntu to see this stick.USB pen is empty.
Reply With Quote
Old 12th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

Now I see this information
Warming R/W mount of /mnt denied filesystem is not clean run fsck mount ffs /sev/sd0i on /mnt mount read-only


WHo said OpenBSD is very easy system to use .I can't start
########################
GENERIC in standalone mode? RAMDISK in shell?
###########
I use boot bsd.rd boot -s standing and stop during system run .The same situation.
only bsd.rd
Reply With Quote
Old 12th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

I'm sorry we continue to have problems communicating. At least I have now learned you are using the RAMDISK kernel. But that is almost all I have learned.

My best guess, from the information you have been able to provide: your mount command is not successful.

If my guess is correct:
  1. The mount fails, so there is nothing in the /mnt directory.
  2. When you issue # dmesg > /mnt/my.dmesg instead of writing a file in the filesystem, it writes the file into the /mnt directory in RAM.

Here is a test you can make yourself, to confirm if my guess is correct:
After booting bsd.rd and selecting the shell, insert your USB device. If the device is recognized, you will see kernel messages when the device is inserted. Look for a umass(4) driver message and the assignment of an sd(4) device number for the inserted drive. It might be sd0, but it may also be sd1, or sd2, or sd3 ... If it is a device number OTHER than sd0, that will explain why your mount fails.

The RAMDISK kernel does not have a complete set of device nodes in /dev, due to resource restrictions. If the device is OTHER than sd0, you will need to create its device node with MAKEDEV(8). For example, if the device is assigned to sd3, you would need to issue:
Code:
# cd /dev
# sh MAKEDEV sd3
You will next want to learn if there is a FAT filesystem at virtual disklabel partition "i" on that assigned device number. If the device is sd4, you would do this with # disklabel sd4 - and then look to see if there is an MS_DOS filesystem at partition "i". If not, the USB device does not have an MBR or GPT partition table with a FAT partition defined.

---

I have a second guess, but that involves having a different sd0 drive with a mountable "i" partition. If that is the situation, then you have been ignoring the device number messages the kernel provides to you when you insert the USB device. And you have not issued ls(1) commands to confirm the correct filesystem is mounted.

Unfortunately, I have no idea which of my two guesses is correct. They might both be wrong, but I can only work with the limited information you have provided.

---

I have asked several questions that you have been unable to answer. I will ask them again.
  • Which version of the kernel page fault message you posted is correct? a) The one in this thread? b) The one in the installation thread? c) Neither of them? d) The kernel page fault message was broken in a different way each time you booted and crashed?
  • What change did you make that changed the repeatable crash into a hanging system?

Last edited by jggimi; 12th October 2017 at 07:56 PM. Reason: typos, clarity
Reply With Quote
Old 12th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

Answered you for last issue .Openbsd 6.2 was by me correct installed.After reboot system start but not finish and stop during chck hardware (blue color we cans see)..in my case BSD after check hardware stop in the half check after few second .And not finish his check .

Now I still fight with Stick/USB//PEN

I see unmass sd1
I made
sh mkedev sd 1
I made
dislabel sd 1

I see 2 particion I and c msdos
Now this issue
mount_ffs /dev/rsd1c /mnt Block device required
Reply With Quote
Old 12th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

I see three commands with three errors.

1. The MAKEDEV program is called in upper case: MAKEDEV, not makedev.

2. There should be no whitespace between sd and 1: sd1.

3. You selected the wrong partition. "c" is the physical disk drive, "i" is the filesystem.

These first two commands must have generated errors. But you have not reported any.

Try these three commands. Pay attention to the commands you enter, and actually note any errors.
Code:
# cd /dev
# sh MAKEDEV sd1
# mount /dev/sd1i /mnt
If you get an error message from any of these commands, READ it.

If you get no error message, try # ls /mnt

If you see files and directories you recognize from your USB device, you will now have finally successfully mounted the device. Now, you can reissue your dmesg(8) command, and route the output to a file on the device. Then, you can unmount it, and share the dmesg buffer with the world.
Reply With Quote
Old 12th October 2017
LeFrettchen's Avatar
LeFrettchen LeFrettchen is offline
Marveled user
 
Join Date: Aug 2012
Location: France
Posts: 405
Default

Quote:
Originally Posted by jggimi View Post
Try these three commands. Pay attention to the commands you enter, and actually note any errors.

(...)

If you get an error message from any of these commands, READ it.
I'd also add :

After you noted error message, please report it.
And if you note it manually, be careful to the exact syntax.
Or take a picture with a camera (i.e. smartphone), it'll be possible to share it.

You could also take a picture of your problem, when OpenBSD hangs while booting...

------------------------------------------------------------------------------------

Can I make some guess too ?

Quote:
Originally Posted by pawkolor View Post
NVIDIA (...) 0x1402 rev 0xa1
Looks like your video card is a GTX 950, right ?

Quote:
Originally Posted by pawkolor View Post
azalia 0 :no supported codecs inteldrom 0 at pci0 dev 2 function 0 intel HD Graphics 3000 rev 0x89
Looks like you've also got a second video card, an integrated Intel HD 3000.


My guess : you have hybrid video.

Could you please tell exactly what is your computer ? the brand, the model...

And if I'm right about hybrid video, remember your first thread... back in 2015...
Obviously not the same computer and not the same problem, but shep's advice is still relevant...

http://daemonforums.org/showthread.php?t=9100#post54694
__________________
ThinkPad W500 P8700 6GB HD3650 - faultry
ThinkStation P700 2x2620v3 32GB 1050ti 3xSSD 1xHDD

Last edited by LeFrettchen; 12th October 2017 at 11:23 PM. Reason: Clarity
Reply With Quote
Old 13th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

Hello this is my second day fight .OpenBSD isn't for everyone.
jggimi this works !!!!!!!!!!!!!!!!!!!!!!!!!!
Code:
# cd /dev
# sh MAKEDEV sd1
# mount /dev/sd1i /mnt
LeFrettchen this issue was diffrent my OpenBSD works .Problem was with KDE I can't change resolution .I like low resolution because my fan from my computer work slow and not make noise.And the Graph card was different .Now I have new one Gforefce GTX 950 Processor Intel i7.And I have 4 core .Disc SSD .Intel i7 has his own graphics card .But this card is not good .
#################
Now this my.dmesg
Code:
OpenBSD 6.2 (RAMDISK_CD) #165: Tue Oct  3 20:05:31 MDT 2017
    deraadt@i386.openbsd.org:/usr/src/sys/arch/i386/compile/RAMDISK_CD
cpu0: Intel(R) Core(TM) i7-2700K CPU @ 3.50GHz ("GenuineIntel" 686-class) 3.51 GHz
cpu0: FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,POPCNT,DEADLINE,AES,XSAVE,AVX,LAHF,PERF,ITSC,SENSOR,ARAT
real mem  = 3375058944 (3218MB)
avail mem = 3301220352 (3148MB)
mainbus0 at root
bios0 at mainbus0: date 05/03/12, SMBIOS rev. 2.7 @ 0xee7f0 (26 entries)
bios0: vendor American Megatrends Inc. version "P2.90M" date 06/09/2015
bios0: ASRock Z77 Extreme4
acpi0 at bios0: rev 2
acpi0: tables DSDT FACP APIC FPDT MCFG SSDT AAFT HPET SSDT SSDT SSDT BGRT
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: apic clock running at 100MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.1, IBE
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (P0P1)
acpiprt2 at acpi0: bus 2 (RP01)
acpiprt3 at acpi0: bus -1 (RP02)
acpiprt4 at acpi0: bus -1 (RP03)
acpiprt5 at acpi0: bus 3 (RP04)
acpiprt6 at acpi0: bus 4 (RP05)
acpiprt7 at acpi0: bus 5 (RP06)
acpiprt8 at acpi0: bus 6 (BR40)
acpiprt9 at acpi0: bus -1 (RP07)
acpiprt10 at acpi0: bus 7 (RP08)
acpiprt11 at acpi0: bus 1 (PEG0)
acpiprt12 at acpi0: bus -1 (PEG1)
acpiprt13 at acpi0: bus -1 (PEG2)
acpiprt14 at acpi0: bus -1 (PEG3)
acpiec0 at acpi0: not present
acpicpu at acpi0 not configured
"INT3F0D" at acpi0 not configured
"pnp0c14" at acpi0 not configured
"PNP0C0C" at acpi0 not configured
"INT33A0" at acpi0 not configured
bios0: ROM list: 0xc0000/0xe600
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
pchb0 at pci0 dev 0 function 0 "Intel Core 2G Host" rev 0x09
ppb0 at pci0 dev 1 function 0 "Intel Core 2G PCIE" rev 0x09: apic 2 int 16
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 vendor "NVIDIA", unknown product 0x1402 rev 0xa1
vga1: aperture needed
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
vendor "NVIDIA", unknown product 0x0fba (class multimedia subclass hdaudio, rev 0xa1) at pci1 dev 0 function 1 not configured
"Intel HD Graphics 3000" rev 0x09 at pci0 dev 2 function 0 not configured
xhci0 at pci0 dev 20 function 0 "Intel 7 Series xHCI" rev 0x04: msi
usb0 at xhci0: USB revision 3.0
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1
"Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16
usb1 at ehci0: USB revision 2.0
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
"Intel 7 Series HD Audio" rev 0x04 at pci0 dev 27 function 0 not configured
ppb1 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: apic 2 int 16
pci2 at ppb1 bus 2
ppb2 at pci0 dev 28 function 3 "Intel 7 Series PCIE" rev 0xc4: apic 2 int 19
pci3 at ppb2 bus 3
ahci0 at pci3 dev 0 function 0 "ASMedia ASM1061 AHCI" rev 0x01: msi, AHCI 1.2
ahci0: port 1: 6.0Gb/s
scsibus0 at ahci0: 32 targets
sd0 at scsibus0 targ 1 lun 0: <ATA, ADATA SP900, C3G> SCSI3 0/direct fixed naa.0000000000000000
sd0: 61057MB, 512 bytes/sector, 125045424 sectors, thin
ppb3 at pci0 dev 28 function 4 "Intel 7 Series PCIE" rev 0xc4: apic 2 int 16
pci4 at ppb3 bus 4
bge0 at pci4 dev 0 function 0 "Broadcom BCM57781" rev 0x10, BCM57765 B0 (0x57785100): msi, address bc:5f:f4:4b:63:3e
brgphy0 at bge0 phy 1: BCM57765 10/100/1000baseT PHY, rev. 4
ppb4 at pci0 dev 28 function 5 "Intel 7 Series PCIE" rev 0xc4: apic 2 int 17
pci5 at ppb4 bus 5
ppb5 at pci5 dev 0 function 0 "ASMedia ASM1083/1085 PCIE-PCI" rev 0x03
pci6 at ppb5 bus 6
ppb6 at pci0 dev 28 function 7 "Intel 7 Series PCIE" rev 0xc4: apic 2 int 19
pci7 at ppb6 bus 7
xhci1 at pci7 dev 0 function 0 "ASMedia ASM1042 xHCI" rev 0x00: msi
usb2 at xhci1: USB revision 3.0
uhub2 at usb2 configuration 1 interface 0 "ASMedia xHCI root hub" rev 3.00/1.00 addr 1
ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 23
usb3 at ehci1: USB revision 2.0
uhub3 at usb3 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
pcib0 at pci0 dev 31 function 0 "Intel Z77 LPC" rev 0x04
ahci1 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3
ahci1: port 3: 1.5Gb/s
scsibus1 at ahci1: 32 targets
cd0 at scsibus1 targ 3 lun 0: <TSSTcorp, CDDVDW SH-222BB, SB00> ATAPI 5/cdrom removable
"Intel 7 Series SMBus" rev 0x04 at pci0 dev 31 function 3 not configured
isa0 at pcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard, using wsdisplay0
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
uhidev0 at uhub0 port 1 configuration 1 interface 0 "Logitech G100s Optical Gaming Mouse" rev 2.00/82.00 addr 2
uhidev0: iclass 3/1
uhid at uhidev0 not configured
uhub4 at uhub1 port 1 configuration 1 interface 0 "vendor 0x8087 product 0x0024" rev 2.00/0.00 addr 2
uhub5 at uhub3 port 1 configuration 1 interface 0 "vendor 0x8087 product 0x0024" rev 2.00/0.00 addr 2
softraid0 at root
scsibus2 at softraid0: 256 targets
root on rd0a swap on rd0b dump on rd0b
umass0 at uhub4 port 3 configuration 1 interface 0 "TOSHIBA TransMemory" rev 2.10/1.10 addr 3
umass0: using SCSI over Bulk-Only
scsibus3 at umass0: 2 targets, initiator 0
sd1 at scsibus3 targ 1 lun 0: <TOSHIBA, TransMemory, PMAP> SCSI4 0/direct removable serial.09306545E0C070020486
sd1: 7446MB, 512 bytes/sector, 15249408 sectors

Last edited by ocicat; 13th October 2017 at 05:51 PM. Reason: Please use [code] & [/code] tags when posting command output.
Reply With Quote
Old 13th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

Thank you, Pawkolor, for posting a dmesg buffer! These are of interest:
Code:
OpenBSD 6.2 (RAMDISK_CD) #165: Tue Oct 3 20:05:31 MDT 2017
deraadt@i386.openbsd.org:/usr/src/sys/arch/i386/compile/RAMDISK_CD
This is an i386 architecture kernel. OpenBSD/i386 is a 32-bit OS, limited to 3GB of RAM. It will run on 64-bit processors, but is not recommended for use on them.
Code:
cpu0: Intel(R) Core(TM) i7-2700K CPU @ 3.50GHz ("GenuineIntel" 686-class) 3.51 GHz
cpu0: FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,P GE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE, SSE2,SS,HTT,TM,PBE,NXE,LONG,SSE3,...
The "LONG" attribute means this is a 64-bit capable CPU. and the i7-2700K Intel processor is a Sandy Bridge, 4-core / 8-thread CPU. The proper OpenBSD architecture to install is amd64.
Code:
real mem = 3375058944 (3218MB)
avail mem = 3301220352 (3148MB)
3GB is the maximum for the i386 architecture, as I noted above. It doesn't matter how much is actually installed.
Code:
vendor "NVIDIA", unknown product 0x0fba (class multimedia subclass hdaudio, rev 0xa1) at pci1 dev 0 function 1 not configured
"Intel HD Graphics 3000" rev 0x09 at pci0 dev 2 function 0 not configured
As LeFrettchen guessed, you have a Hybrid video system, with both NVIDIA and Intel graphics.

My recommendations:
  • Disable the NVIDIA graphics in your system's BIOS, and only use the Intel graphics card. Hybrid graphics do not function on OpenBSD, and NVIDIA graphics hardware is not supported.
  • Do not install OpenBSD/i386. Use OpenBSD/amd64 instead.

Last edited by jggimi; 13th October 2017 at 02:11 PM. Reason: clarity
Reply With Quote
Old 13th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

Ok I fully understand you .For my surprise is question why old Openbsd work on this both card but new one Openbsd 6.2 doesn't.
###########
and the last question if I would like install Gnome Package .Do you know how to doing it.I install usually KDE full package from website and command start KDE .How to do it with Gnome.
Thanks
Reply With Quote
Old 13th October 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,975
Default

Quote:
Originally Posted by pawkolor View Post
...why old Openbsd work on this both card but new one Openbsd 6.2 doesn't....
There were changes to the OpenBSD kernel to support updates to the Mesa graphics drivers.
Quote:
I would like install Gnome Package ...
  1. # pkg_add gnome
  2. READ the pkg-readme file, and follow its guidance.

Last edited by jggimi; 13th October 2017 at 02:30 PM. Reason: typos
Reply With Quote
Old 13th October 2017
pawkolor pawkolor is offline
Fdisk Soldier
 
Join Date: May 2015
Posts: 53
Default

I have some additional question .AMD64 works in my computer.

1.When I tried install use ftp system don't see it

2.i386 ISO file install well from internet they know link for file and conform SHA256.sig

3.AMD64 didn't connect me thru http .I gave number 7 server in Alberta but don't see. I can install from CD .CD pack file didn't conform SHA256.sig

4.Now I can't connect for packages.What way is correct in your opinion.

http://ftp.OpenBSD.org/pub/OpenBSD
https://ftp.openbsd.org/pub/OpenBSD/6.2/amd64/ ---shell can't do https

may be this:
ftp.openbsd.org/pub/OpenBSD/6.2/amd64/
https://ftp.openbsd.org/pub/OpenBSD/6.2/packages/amd64/
ftp.openbsd.org/pub/OpenBSD/6.2/packages/amd64/
Reply With Quote
Reply

Thread Tools
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
why does this simple assembly program abort trap? billy_bazooka Programming 1 26th July 2017 04:45 AM
PF dynamic adding of ips to table (booby trap port) irukandji FreeBSD Security 8 5th December 2013 12:09 AM
New Open DRM code for OpenBSD shep News 0 22nd March 2013 02:32 AM
opera bug in openbsd 5.1 release with Abort Trap message daemonfowl OpenBSD Packages and Ports 2 26th May 2012 06:42 AM
Fatal trap 12: page fault while in kernel mode sixshot FreeBSD General 11 18th July 2008 12:53 AM


All times are GMT. The time now is 09:31 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content copyright © 2007-2010, the authors
Daemon image copyright ©1988, Marshall Kirk McKusick