similar to: parted - is there a problem

Displaying 20 results from an estimated 8000 matches similar to: "parted - is there a problem"

2007 Sep 22
2
fstab problem after a failed drive
Everyone, I installed a sata drive on a SuperMicro with SCSI drives. No problem with the installation. Everything went as expected as the os recognized the drive and assigned /dev/sdc to the new 300 gig Seagate drive. I had planned to use this drive for backup tarballs. The drive had been functional for about a week with no problems. Apparently it went out today when I tried to reboot the
2014 Feb 20
2
Growing HW RAID arrays, Online
We add disks to an LSI raid array periodically to increase the amount of available space for business needs. It is understood that this process starts with metal, and has many layers that must each adjust to make use of the additional space. Each of these layers also says that it can do that 'online' without interruption or rebooting. But making it happen is not that easy. When the HW
2016 Apr 22
7
[OT] disk utility showing message "the partition is misaligned by"
greetings. centos 6.7 [current] 'disk utility' has started showing message; WARNING: The partition is misaligned by 2560 bytes. This may result in very poor performance. Repartitioning is suggested. for sdc5 - /home partition. /dev/sdc5 302243312 156348604 130534968 55% /home /dev/sdc7 80854912 57088 76683952 1% /hdd/c/07 other than time involved to backup
2013 Mar 08
4
Cannot mount 3TB MyBook USB HD
Hello, new Linux user here and I cannot mount a new (empty) WD MyBook Essentials 3TB USB external hard drive (Model WDBACW0030HBK-NESN). I'm only about 3 weeks into this linux thing and so please forgive me if any of my syntax is off My linux OS is CentOS 5.4 x86-64 running on a dedicated HP z400. The WD MyBook is to back up the large data files we are creating on the HP400 (it's
2013 Sep 10
2
large SCSI RAID, replacing server
I have a system running CentOS 6.3, with a SCSI attached RAID: http://www.raidweb.com/index.php/2012-10-24-12-40-09/janus-ii-scsi/2012-10-24-12-40-59.html For disaster recovery purposes, I want to build up a spare system which could take the place of the server hosting the RAID above. But here's what I see: # fdisk -l /dev/sdc WARNING: GPT (GUID Partition Table) detected on
2013 Apr 10
4
Formatting a USB Drive
Hi All, I have a Drobo, connected to a CentOS 6.4 box. The box sees it as /dev/sdg. I want to format it ext3 (as they dont support ext4) but when I try I get: # fdisk -u /dev/sdg WARNING: GPT (GUID Partition Table) detected on '/dev/sdg'! The util fdisk doesn't support GPT. Use GNU Parted. WARNING: The size of this disk is 17.6 TB (17592186044416 bytes). DOS partition table
2013 Mar 17
2
mount exited with exit code 18
Hey Y'all, I'm trying to mount a USB drive with an NTFS file system on it. I need the drive in a win-7 virtual box instance. Error Dialog is: Error mounting: mount exited with exit code 18: Error opening '/dev/sdc1': Read-only file system Failed to mount '/dev/sdc1': Read only file system [root at mushroom /]# ls -l /dev/disk/by-id | grep usb lrwxrwxrwx. 1 root root
2007 Nov 13
1
sdc1 without the sdc
So I'm working with the iSCSI Initiator and an EqualLogic SAN. I'm not sure when this might have happened, but it appears that the /dev/sdc device is missing, yet the /dev/sdc1 partition exists AND is mountable. Is there a method to re-create the /dev/sdc device? I cannot dd or fdisk it, obviously, but I can mount the /dev/sdc1 partition and it works just fine. Not having the /dev/sdc
2016 Sep 27
1
Am I crazy (parted)
I swear I've done this dozens of times: a new server, going to install (CentOS 7, in this case), and I manually partition the disk before the install using parted, and do mkpart pri 0.0GB +1.0GB Except now it appears to be saying it doesn't like the +1.0GB, I *think* it's the plus sign. mark
2013 Jan 18
8
migrate from physical disk problems in xen
I''ve been trying to migrate a win nt 4 machine to a xen domu for the past few months with no success. However, on my current attempt, the original hardware no longer boots, so I''m trying to resolve the issues with xen properly, or else take a long holiday... Anyway, the physical machine had a 9G drive (OS drive), a 147 G drive (not in use) and a 300G drive (all SCSI Ultra320 on
2002 Aug 25
2
2 root disks sdb1,sdc1; if set "root=/dev/sdc1", mtab lies saying sdb1 is root!?
I have 2 SCSI disks each w/a RH 7.3 ext3 root filesystem: /dev/sdb1, and /dev/sdc1. /dev/sda1 is an old RH4.2 root filesystem. (sdb1 was created as an image of sdc1 using dd.) I have no problem booting from a SYSLINUX 1.52 floppy with SYSLINUX.CFG containing "append initrd=initrd.img root=/dev/sdb1". When I alter SYSLINUX.CFG with: "append initrd=initrd.img root=/dev/sdc1".
2010 Nov 01
2
[LLVMdev] Identify recursion in a call graph
On Oct 30, 2010, at 4:38 AM, Duncan Sands wrote: >> Is there any facility in LLVM to identify recursion in a call graph? ... > use the facilities in SCCIterator.h, or declare your pass to be a > CallGraphSCCPass in which case it will work one strongly connected > component at a time. Converting my ModulePass to a CallGraphSCCPass doesn't seem feasible, so I'll use
2015 Feb 27
2
OT: AF 4k sector drives with 512 emulation
Chris Murphy wrote: <snip> > The emulation implementations don't come into play if the alignment is > correct from the start. The better implementations have significantly > less pathological behavior if alignment is wrong, but that's > anecdotal, I don't have any empirical data available. But I'd say in > any case you want it properly aligned. You really,
2014 Mar 17
1
Slow RAID resync
OK todays problem. I have a HP N54L Microserver running centos 6.5. In this box I have a 3x2TB disk raid 5 array, which I am in the process of extending to a 4x2TB raid 5 array. I've added the new disk --> mdadm --add /dev/md0 /dev/sdb And grown the array --> mdadm --grow /dev/md0 --raid-devices=4 Now the problem the resync speed is v slow, it refuses to rise above 5MB, in general
2010 Nov 02
0
[LLVMdev] Identify recursion in a call graph
Hi Trevor, > Converting my ModulePass to a CallGraphSCCPass doesn't seem feasible, so I'll > use llvm::scc_iterator. Here's what I have so far: > > bool MyModulePass::isRecursive() { > CallGraphNode* rootNode = getAnalysis<CallGraph>().getRoot(); > for (scc_iterator<CallGraphNode*> SCCI = scc_begin(rootNode), E = > scc_end(rootNode); SCCI != E; ++SCCI)
2013 May 17
2
F18: Create a USB install of CentOS 6 from iso
Hi all, On a F18, I installed livecd-tools-18.15-1 I downloaded CenOS6.x minimal .iso and with livecd-iso-to-disk the resulting USB is never bootable: the computer doesnt boot on it. Tested on many computers. The fact is I succeded to install CentOS on a Netbook (no CD/DVD tray), but I dont remember how I invoked livecd-iso-to-disk. I tried with many combinations (/dev/sdc is the USB
2010 Apr 05
1
Kernel Panic, Server not coming back up
I have a relatively new test environment setup that is a little different from your typical scenario. This is my first time using OCFS2, but I believe it should work the way I have it setup. All of this is setup on VMWare virtual hosts. I have two front-end web servers and one backend administrative server. They all share 2 virtual hard drives within VMware (independent, persistent, &
2006 Jan 03
1
Large partition problem
I really hope someone has a clue on this one.... :) I've got a 2.2TB array mounted on a 3ware 9500 controller. I installed it last week ensuring that LBA was enabled and using gpt with parted to get the full size available on one array. I also think I chose reiserfs for the array. We then moved ALOT of data to the array. Problem now is that after a reboot LBA doesn't seem to be in
2012 Mar 19
16
LV resize encrypted volume
Hi, dom0: Debian Lenny 2.6.26-2-xen-amd64, domU: same. Xen 3.2-1 After resizing a LV on dom0, Xen is not reporting the new extended size to the PV domU even though dom0 is well aware of the new size. I''ve rebooted domU (not dom0 yet as that''s running a lot of other domU''s). The LV I tried to resize is encrypted. Resizing unencrypted volumes works as expected. dom0:~#
2010 Nov 02
2
[LLVMdev] Identify recursion in a call graph
Hi you basically need to find a cycles in the call graph. Do do this just search google for a graph algorithm, then make it for your problem. See http://en.wikipedia.org/wiki/Cycle_detection. Jeff Kunkel On Tue, Nov 2, 2010 at 4:27 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Trevor, > > > Converting my ModulePass to a CallGraphSCCPass doesn't seem feasible, so >