search for: parided

Displaying 20 results from an estimated 59 matches for "parided".

Did you mean: paride
2020 Jun 19
1
Amd es1000
...rt by trying this on the grub2 kernel line: nomodeset xdriver=vesa > > Paride > > Il ven 19 giu 2020, 14:58 Johnny Hughes <johnny at centos.org> ha scritto: > >> On 6/18/20 3:47 PM, John Pierce wrote: >>> On Thu, Jun 18, 2020 at 11:04 AM paride desimone <parided at gmail.com> >> wrote: >>> >>>> The throuble is the radeon driver. I've already tried to install the >> gui, >>>> but the system hung on start gui. >>>> The es1000 is a shit gpu. >>>> >>>> >>> >>...
2020 Jun 19
2
Amd es1000
On 6/18/20 3:47 PM, John Pierce wrote: > On Thu, Jun 18, 2020 at 11:04 AM paride desimone <parided at gmail.com> wrote: > >> The throuble is the radeon driver. I've already tried to install the gui, >> but the system hung on start gui. >> The es1000 is a shit gpu. >> >> > > those are just intended to provide a minimal VGA for initial installation &...
2020 Jun 18
3
Amd es1000
...radeon driver. I've already tried to install the gui, but the system hung on start gui. The es1000 is a shit gpu. I hate ati video card. Paride Il gio 18 giu 2020, 18:56 Gianluca Cecchi <gianluca.cecchi at gmail.com> ha scritto: > On Thu, Jun 18, 2020 at 6:50 PM paride desimone <parided at gmail.com> wrote: > > > I have installed in graphic mode, but I have not install gui. > > I try to install X afterward, because I have buied the Sander Van Vugt > > book: "red hat rhcsa 8 ex200". In this book, Sander, write that the exam > > ex200 is in g...
2020 Jun 17
2
Amd es1000
Hi, i have a proliant dl380 g5, with an amd as1000. I try to install centos8 with gui, but when try to start the new installed system, the xserver don't start. There is a throuble with the amd es1000 driver. This grafic card, seems not supported more from amd. I need a minimalistic gui for study for rhcsa certification. The gui is mandatory for the exam. Any help? Paride
2020 Jun 17
2
Amd es1000
Uhm, X dont't start :-( Il mer 17 giu 2020, 15:34 Gianluca Cecchi <gianluca.cecchi at gmail.com> ha scritto: > On Wed, Jun 17, 2020 at 1:56 PM paride desimone <parided at gmail.com> wrote: > > > Hi, i have a proliant dl380 g5, with an amd as1000. I try to install > > centos8 with gui, but when try to start the new installed system, the > > xserver don't start. There is a throuble with the amd es1000 driver. This > > grafic card,...
2020 Jun 18
2
Amd es1000
...hat the exam ex200 is in gui mode and not in text. Ok I try to reinstall and pass your information to grub. Amd is a nightmare for the gpu in linux. Il mer 17 giu 2020, 18:27 Gianluca Cecchi <gianluca.cecchi at gmail.com> ha scritto: > On Wed, Jun 17, 2020 at 6:13 PM paride desimone <parided at gmail.com> wrote: > > > Uhm, X dont't start :-( > > > > > I overlooked your post... my suggestions was for installation phase, but > you did install apparently.. did you install in graphic mode or by other > text based means (kickstart, pxe, ecc)? Or perhaps...
2016 Aug 17
0
[PATCH 15/15] block: Add FIXME comment to handle device_add_disk error
Done with coccinelle: @@ expression e1, e2, e3; identifier rc; @@ ( rc = device_add_disk(e1, e2, e3); | + /* FIXME: handle error. */ device_add_disk(e1, e2, e3); ) Signed-off-by: Fam Zheng <famz at redhat.com> --- arch/m68k/emu/nfblock.c | 1 + arch/um/drivers/ubd_kern.c | 1 + arch/xtensa/platforms/iss/simdisk.c | 1 + drivers/block/DAC960.c
2016 Aug 17
20
[PATCH 00/15] Fix issue with KOBJ_ADD uevent versus disk attributes
This is an attempt to fix the issue that some disks' sysfs attributes are not ready at the time its KOBJ_ADD event is sent. The symptom is during device hotplug, udev may fail to find certain attributes, such as serial or wwn, of the disk. As a result the /dev/disk/by-id entries are not created. The cause is device_add_disk emits the uevent before returning, and the callers have to create
2016 Aug 17
20
[PATCH 00/15] Fix issue with KOBJ_ADD uevent versus disk attributes
This is an attempt to fix the issue that some disks' sysfs attributes are not ready at the time its KOBJ_ADD event is sent. The symptom is during device hotplug, udev may fail to find certain attributes, such as serial or wwn, of the disk. As a result the /dev/disk/by-id entries are not created. The cause is device_add_disk emits the uevent before returning, and the callers have to create
2020 Jun 17
0
Amd es1000
On Wed, Jun 17, 2020 at 1:56 PM paride desimone <parided at gmail.com> wrote: > Hi, i have a proliant dl380 g5, with an amd as1000. I try to install > centos8 with gui, but when try to start the new installed system, the > xserver don't start. There is a throuble with the amd es1000 driver. This > grafic card, seems not supported more...
2020 Jun 19
0
Amd es1000
What is the name of the vesa driver, or what is the name of the package that contains it? Paride Il ven 19 giu 2020, 14:58 Johnny Hughes <johnny at centos.org> ha scritto: > On 6/18/20 3:47 PM, John Pierce wrote: > > On Thu, Jun 18, 2020 at 11:04 AM paride desimone <parided at gmail.com> > wrote: > > > >> The throuble is the radeon driver. I've already tried to install the > gui, > >> but the system hung on start gui. > >> The es1000 is a shit gpu. > >> > >> > > > > those are just intended to...
2016 Jun 30
17
[PATCH v2 00/12] gendisk: Generate uevent after attribute available
The race condition is noticed between disk_add() and disk attributes, on virtio-blk hotplug. Userspace listens to the KOBJ_ADD uevent generated in add_disk(). At that point we haven't created the serial attribute file, therefore depending on how fast udev reacts, the /dev/disk/by-id/ entry doesn't always get created. As pointed out by Christoph Hellwig in the specific fix [1], virtio-blk
2016 Jun 30
17
[PATCH v2 00/12] gendisk: Generate uevent after attribute available
The race condition is noticed between disk_add() and disk attributes, on virtio-blk hotplug. Userspace listens to the KOBJ_ADD uevent generated in add_disk(). At that point we haven't created the serial attribute file, therefore depending on how fast udev reacts, the /dev/disk/by-id/ entry doesn't always get created. As pointed out by Christoph Hellwig in the specific fix [1], virtio-blk
2017 Jan 28
6
make SCSI passthrough support optional
Hi all, this series builds on my previous changes in Jens' for-4.11/rq-refactor branch that split out the BLOCK_PC fields from struct request into a new struct scsi_request, and makes support for struct scsi_request and the SCSI passthrough ioctls optional. It is now only enabled by drivers that need it. In addition I've made SCSI passthrough support in the virtio_blk driver an optional
2017 Jan 28
6
make SCSI passthrough support optional
Hi all, this series builds on my previous changes in Jens' for-4.11/rq-refactor branch that split out the BLOCK_PC fields from struct request into a new struct scsi_request, and makes support for struct scsi_request and the SCSI passthrough ioctls optional. It is now only enabled by drivers that need it. In addition I've made SCSI passthrough support in the virtio_blk driver an optional
2020 Jun 17
0
Amd es1000
On Wed, Jun 17, 2020 at 6:13 PM paride desimone <parided at gmail.com> wrote: > Uhm, X dont't start :-( > > I overlooked your post... my suggestions was for installation phase, but you did install apparently.. did you install in graphic mode or by other text based means (kickstart, pxe, ecc)? Or perhaps you installed xorg related package...
2020 Jun 18
0
Amd es1000
On Thu, Jun 18, 2020 at 6:50 PM paride desimone <parided at gmail.com> wrote: > I have installed in graphic mode, but I have not install gui. > I try to install X afterward, because I have buied the Sander Van Vugt > book: "red hat rhcsa 8 ex200". In this book, Sander, write that the exam > ex200 is in gui mode and not in text....
2020 Jun 18
0
Amd es1000
On Thu, Jun 18, 2020 at 11:04 AM paride desimone <parided at gmail.com> wrote: > The throuble is the radeon driver. I've already tried to install the gui, > but the system hung on start gui. > The es1000 is a shit gpu. > > those are just intended to provide a minimal VGA for initial installation and configuration of a server, they...
2020 Aug 01
1
Boot failed on latest CentOS 7 update
I use debian buster on my old notebook, an asus f3ja and I have not grub throuble. I try a virtual mschine with testing and unstable, and both boot regularly Il dom 2 ago 2020, 00:42 Mike McCarthy, W1NR <sysop at w1nr.net> ha scritto: > It appears that it is affecting multiple distributions including Debian > and Ubuntu so it looks like the grub2 team messed up. See > > >
2020 Jun 18
2
Amd es1000
On 6/18/20 3:47 PM, John Pierce wrote: > On Thu, Jun 18, 2020 at 11:04 AM paride desimone <parided at gmail.com> wrote: > >> The throuble is the radeon driver. I've already tried to install the gui, >> but the system hung on start gui. >> The es1000 is a shit gpu. >> >> > > those are just intended to provide a minimal VGA for initial installation &...