Am Mi., 11. Nov. 2020 um 07:28 Uhr schrieb hw :
> [...]
> With this experience, these controllers are now deprecated. RAID
> controllers
> that can't rebuild an array after a disk has failed and has been replaced
> are virtually useless.
> [...]
HW RAID is often delivered with quite limited fun
On 10/11/2020 17:18, Leon Fauster via CentOS wrote:
> Hi folks,
>
> years ago I had no problem installing CentOS7 on my
> iMac workstation (iMac Late 2015). The installation
> worked out of the box. Today I wanted to upgrade to
> CentOS8 and while configuring the partitions I get an
> error that t
On Wed, 2020-11-11 at 11:34 +0100, Thomas Bendler wrote:
> Am Mi., 11. Nov. 2020 um 07:28 Uhr schrieb hw :
>
> > [...]
> > With this experience, these controllers are now deprecated. RAID
> > controllers
> > that can't rebuild an array after a disk has failed and has been replaced
> > are virtual
Hi all;
I'm trying to setup an ssh tunnel so I can run firefox on a remote
laptop and have the display locally.
I have 2 laptops
local = CentOS 7
remote = mac OSX 10.15.7
I want to create an ssh tunnel on the local CentOS 7 laptop, then run
firefox on the mac with the display showing up
I do it all the time.
make sure you forward X11, on the ssh server side, and login with
ssh -X me@myhost.whatever
start firefox with:
/usr/bin/firefox -no-remote if you don't want the remote pages ending
up in your local browser
or if you don't care, just run firefox without -no-re
I can ssh -X myuser@theremote-mac
but I cannot run /usr/bin/firefox.
I can run "open -a Firefox" on the mac but then it just opens firefox on
the mac
Thoughts?
On 11/11/20 3:45 PM, R C wrote:
I do it all the time.
make sure you forward X11, on the ssh server side, and login with
you can't run it? or can't find it?
if it doesn't want to run, it probably is because you're not forwarding
X11 in your server, in this case your mac. the ssh server nees to
do/allow that
what about executing it remotely :
ssh -X myuser@theremote-mac "open -a Firefox" ?
if that doesn'
On Wed, 11 Nov 2020 at 17:45, R C wrote:
> I do it all the time.
>
>
> make sure you forward X11, on the ssh server side, and login with
> ssh -X me@myhost.whatever
>
> start firefox with:
>
> /usr/bin/firefox -no-remoteif you don't want the remote pages ending
> up in your local browser
>
yeah .. it would need to run X11
On 11/11/20 4:04 PM, Stephen John Smoogen wrote:
On Wed, 11 Nov 2020 at 17:45, R C wrote:
I do it all the time.
make sure you forward X11, on the ssh server side, and login with
ssh -X me@myhost.whatever
start firefox with:
/usr/bin/firefox -no-remote
On Nov 11, 2020, at 2:01 PM, hw wrote:
>
> I have yet to see software RAID that doesn't kill the performance.
When was the last time you tried it?
Why would you expect that a modern 8-core Intel CPU would impede I/O in any
measureable way as compared to the outdated single-core 32-bit RISC CPU
On Wed, Nov 11, 2020 at 3:38 PM Warren Young wrote:
> On Nov 11, 2020, at 2:01 PM, hw wrote:
> >
> > I have yet to see software RAID that doesn't kill the performance.
>
> When was the last time you tried it?
>
> Why would you expect that a modern 8-core Intel CPU would impede I/O in
> any measu
> On Nov 11, 2020, at 6:00 PM, John Pierce wrote:
>
> On Wed, Nov 11, 2020 at 3:38 PM Warren Young wrote:
>
>> On Nov 11, 2020, at 2:01 PM, hw wrote:
>>>
>>> I have yet to see software RAID that doesn't kill the performance.
>>
>> When was the last time you tried it?
>>
>> Why would you e
> On Nov 11, 2020, at 5:38 PM, Warren Young wrote:
>
> On Nov 11, 2020, at 2:01 PM, hw wrote:
>>
>> I have yet to see software RAID that doesn't kill the performance.
>
> When was the last time you tried it?
>
> Why would you expect that a modern 8-core Intel CPU would impede I/O in any
>
> On Nov 11, 2020, at 5:38 PM, Warren Young wrote:
>
> On Nov 11, 2020, at 2:01 PM, hw wrote:
>>
>> I have yet to see software RAID that doesn't kill the performance.
>
> When was the last time you tried it?
>
> Why would you expect that a modern 8-core Intel CPU would impede I/O in any
>
On 11/04/2020 10:21 PM, John Pierce wrote:
> is it RAID 0 (striped) or raid1 (mirrored) ??
>
> if you wrote on half of a raid0 stripe set, you basically trashed it.
> blocks are striped across both drives, so like 16k on the first disk, then
> 16k on the 2nd then 16k back on the first, repeat (repl
On Nov 11, 2020, at 6:37 PM, Valeri Galtsev wrote:
>
> how do you map failed software RAID drive to physical port of, say,
> SAS-attached enclosure.
With ZFS, you set a partition label on the whole-drive partition pool member,
then mount the pool with something like “zpool mount -d
/dev/disk/
in large raids, I label my disks with the last 4 or 6 digits of the drive
serial number (or for SAS disks, the WWN).this is visible via smartctl,
and I record it with the zpool documentation I keep on each server
(typically a text file on a cloud drive). zpools don't actually care
WHAT slot
On Wed, Nov 11, 2020 at 5:47 PM Valeri Galtsev
wrote:
> I’m sure you can reflash LSI card to make it SATA or SAS HBA, or MegaRAD
> hardware RAID adapter. Is far as I recollect it is the same electronics
> board. I reflashed a couple of HBAs to make them MegaRAID boards.
>
you can reflash SOME me
On Nov 11, 2020, at 7:04 PM, Warren Young wrote:
>
> zpool mount -d /dev/disk/by-partlabel
Oops, I’m mixing the zpool and zfs commands. It’d be “zpool import”.
And you do this just once: afterward, the automatic on-boot import brings the
drives back in using the names they had before, so when
> On Nov 11, 2020, at 8:07 PM, John Pierce wrote:
>
> On Wed, Nov 11, 2020 at 5:47 PM Valeri Galtsev
> wrote:
>
>> I’m sure you can reflash LSI card to make it SATA or SAS HBA, or MegaRAD
>> hardware RAID adapter. Is far as I recollect it is the same electronics
>> board. I reflashed a couple
On November 11, 2020 8:58:02 PM EST, H wrote:
>On 11/04/2020 10:21 PM, John Pierce wrote:
>> is it RAID 0 (striped) or raid1 (mirrored) ??
>>
>> if you wrote on half of a raid0 stripe set, you basically trashed it.
>> blocks are striped across both drives, so like 16k on the first disk,
>then
>> 1
> On Nov 11, 2020, at 8:04 PM, John Pierce wrote:
>
> in large raids, I label my disks with the last 4 or 6 digits of the drive
> serial number (or for SAS disks, the WWN).this is visible via smartctl,
> and I record it with the zpool documentation I keep on each server
> (typically a text
>
>
>> On Nov 11, 2020, at 6:00 PM, John Pierce wrote:
>>
>> On Wed, Nov 11, 2020 at 3:38 PM Warren Young wrote:
>>
>>> On Nov 11, 2020, at 2:01 PM, hw wrote:
I have yet to see software RAID that doesn't kill the performance.
>>>
>>> When was the last time you tried it?
>>>
>>> Why wou
23 matches
Mail list logo