How do I regenerate the grub files for a UEFI system ?

2019-06-05 Thread linux guy
How do I regenerate the grub files for a UEFI system to boot from ? Thanks ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-c

Re: How do I regenerate the grub files for a UEFI system ?

2019-06-05 Thread linux guy
Also, what files and symlinks need to be in place for grub to boot on an UEFI system. (I'm trying to get a non booting UEFI system booting again.) On Wed, Jun 5, 2019 at 2:04 PM linux guy wrote: > How do I regenerate the grub files for a UEFI system to boot from ? &g

Re: f29 to f30 and grub config only memtest present

2019-06-05 Thread linux guy
When I get to step #8 (grub2-install --boot-directory=/boot /dev/sda) on this page ( https://fedoraproject.org/wiki/GRUB_2#Create_a_GRUB_2_configuration), it fails with a can't find efi directory error. What am I doing wrong ? ___ users mailing list -- u

Re: f29 to f30 and grub config only memtest present

2019-06-05 Thread linux guy
Should this work to boot my computer from the grub command prompt ? set root=(hd0,gpt6) set prefix=(hd0,gpt6)/boot/grub insmod normal normal I've been booting it another, longer way. On Wed, Jun 5, 2019 at 4:26 PM linux guy wrote: > When I get to step #8 (grub2-install --boot-d

Re: f29 to f30 and grub config only memtest present

2019-06-05 Thread linux guy
Oops... wrong thread. Disregard. On Wed, Jun 5, 2019 at 4:27 PM linux guy wrote: > Should this work to boot my computer from the grub command prompt ? > > set root=(hd0,gpt6) > set prefix=(hd0,gpt6)/boot/grub > > insmod normal > normal > > I've been booting it a

Re: How do I regenerate the grub files for a UEFI system ?

2019-06-05 Thread linux guy
When I get to step #8 (grub2-install --boot-directory=/boot /dev/sda) on this page ( https://fedoraproject.org/wiki/GRUB_2#Create_a_GRUB_2_configuration), it fails with a can't find efi directory error. What am I doing wrong ? Should this work to boot my computer from the grub command prompt ? s

Re: How do I regenerate the grub files for a UEFI system ?

2019-06-05 Thread linux guy
mg grub>boot #ls /system/call/net Find Ethernet adapter. In may case it was enp3s0 #ifup enp3s0 On Wed, Jun 5, 2019 at 4:28 PM linux guy wrote: > When I get to step #8 (grub2-install --boot-directory=/boot /dev/sda) on > this page ( > https://fedoraproject.org/wiki/GRUB_2#Creat

SQL Database Client GUI for Firebird?

2020-05-29 Thread linux guy
Hi people. I have a huge CSV spreadsheet. I need to do a bunch of light duty data manipulation. Sort, total, export, that sort of thing. I could almost do it in the spreadsheet, but it would be too much copy/paste and the combinations of data I want to get out are exhaustive. I'm thinking of im

Re: SQL Database Client GUI for Firebird?

2020-05-29 Thread linux guy
Thank you ! Great answer. This is why I ask these questions here ! LG On Fri, May 29, 2020 at 5:51 PM Suvayu Ali wrote: > On Fri, May 29, 2020 at 11:39 PM linux guy wrote: > > > > Hi people. > > > > I have a huge CSV spreadsheet. I need to do a bunch of light duty

Re: SQL Database Client GUI for Firebird?

2020-05-30 Thread linux guy
e didn't have to resort to that. Now that we have good tools to do this work, we can mine this data any way we want, using SQL and/or Python. Linux rocks ! Fedora rocks ! Thanks for the quick reply late in the day on a Friday. Having finished this up

Re: boot/grub

2020-05-31 Thread linux guy
This has become so complicated. So if I want to change some of the kernel boot parameters in the grub command line, on F32, how do I do it ? ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedorap

Re: boot/grub

2020-05-31 Thread linux guy
https://docs.fedoraproject.org/en-US/fedora/rawhide/system-administrators-guide/kernel-module-driver-configuration/Working_with_the_GRUB_2_Boot_Loader/ ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lis

How do I change the grub kernel boot parameters in F32 ?

2020-06-08 Thread linux guy
I would like to change the grub boot parameters for the kernels installed on my F32 workstation. Specifically, I would like to add the following to the kernel boot parameters: "rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1" How do I do this ? Thanks

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-08 Thread linux guy
Thank you. On Mon, Jun 8, 2020 at 10:07 PM Mike Wright wrote: > On 6/8/20 6:28 PM, linux guy wrote: > > I would like to change the grub boot parameters for the kernels installed > > on my F32 workstation. > > > > Specifically, I would like to add the following to the

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
This is pretty interesting because I am trying to fix a problem caused by transitioning from nouveau drivers to the Nvidia drivers. I installed the Nvidia drivers but my system continues to boot the nouveau drivers. If I blacklist the nouveau drivers, my system boots and runs the Nvidia drivers

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
klist nouveau in kernel params manually, the nvidia driver works fine. On Tue, Jun 9, 2020 at 12:01 PM Jerry James wrote: > On Tue, Jun 9, 2020 at 11:44 AM linux guy wrote: > > This is pretty interesting because I am trying to fix a problem caused > by transitioning from nouveau driv

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
; GRUB_ENABLE_BLSCFG="true" On Tue, Jun 9, 2020 at 12:39 PM Robert McBroom via users < users@lists.fedoraproject.org> wrote: > On 6/9/20 1:43 PM, linux guy wrote: > > This is pretty interesting because I am trying to fix a problem caused by > transitioning from no

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
It appears that the problem is that my machine thinks it is booting in non efi mode but is in fact booting in UEFI mode. How do I fix this ? On Tue, Jun 9, 2020 at 12:49 PM linux guy wrote: > Thank you for sharing that ! Here is my /etc/default/grub. It > blacklists the nouveau

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
# grubby --info=ALL index=0 kernel="/boot/vmlinuz-5.6.16-300.fc32.x86_64" args="ro rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet rd.driver.blacklist=nouveau modprobe.blacklist=nouveau nvidia-drm.modeset=1" root="/dev/mapper/fedora_localhost--live-root" initrd="/boot/initramfs-5.6.16-300.fc

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
So both grubby and /etc/default/grub are set up correctly to run the nvidia driver by blacklisting the nouveau driver. But when I boot and edit the grub menu (with e), the kernal parameter entries lack the blacklisting of the nouveau driver. According to this page https://docs.fedoraproject.org/e

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
-o /boot/grub2/grub.cfg Generating grub configuration file ... Adding boot menu entry for EFI firmware configuration done Also made no difference. On Tue, Jun 9, 2020 at 3:24 PM Mike Wright wrote: > On 6/9/20 1:40 PM, linux guy wrote: > > So both grubby and /etc/default/grub are

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
I've run Nvidia drivers since the RH8 days, back in the early 2000s. Same experience. This is the first time I've had this issue. On Tue, Jun 9, 2020 at 4:31 PM Joe Zeff wrote: > On 06/09/2020 02:40 PM, linux guy wrote: > > So both grubby and /etc/default/grub are set up c

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
Changed GRUB_ENABLE_BLSCFG=true to false. # grub2-mkconfig -o /boot/grub2/grub.cfg Generating grub configuration file ... Found linux image: /boot/vmlinuz-5.6.16-300.fc32.x86_64 Found initrd image: /boot/initramfs-5.6.16-300.fc32.x86_64.img Found linux image: /boot/vmlinuz-5.6.14-300.fc32.x86_64

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
On Tue, Jun 9, 2020 at 6:57 PM Samuel Sieb wrote: > > I think there is a file added to /etc/modprobe.d with the blacklist > entry. You need to install a new kernel or regenerate the initramfs > using dracut for it to take effect at boot. > I've installed several kernels since changing to the NV

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-09 Thread linux guy
c1d3ebaecd08428ba86f4aba3749efca-5.6.16-300.fc32.x86_64.conf as it sits now: title Fedora (5.6.16-300.fc32.x86_64) 32 (Thirty Two) version 5.6.16-300.fc32.x86_64 linux /vmlinuz-5.6.16-300.fc32.x86_64 initrd /initramfs-5.6.16-300.fc32.x86_64.img options $kernelopts grub_users $grub_users grub_arg

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-10 Thread linux guy
On Wed, Jun 10, 2020 at 1:37 AM Stephen Morris wrote: > Also as I understand it /boot/grub2/grub.cfg is the grub config file > used to generate the grub menus for legacy booting, where to get that > structure into the mbr you need to issue grub2-install, and, the > /boot/efi/EFI/fedora/grub.c

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-10 Thread linux guy
On Wed, Jun 10, 2020 at 7:31 AM Jonathan Billings wrote: > First, it's probably worth seeing whether you're booting via a legacy > boot (CSM) or directly to UEFI. > > Does /sys/firmware/efi/ exist and have files in it? Then you've > booted via EFI. If it doesn't? Then you aren't. > # ls -al /

Re: How do I change the grub kernel boot parameters in F32 ?

2020-06-10 Thread linux guy
# blkid /dev/nvme0n1p1: UUID="D76F-0EDB" BLOCK_SIZE="512" TYPE="vfat" PARTLABEL="EFI System Partition" PARTUUID="c2d93266-9038-4fc9-923a-797fb0595aa0" /dev/nvme0n1p2: UUID="39373709-00f2-43a6-8f8d-dae45eb32add" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="d20f2f5b-be53-4714-80ae-2dd675aba973" /dev/nvme0

How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
I can't remember exactly what I did, but I think I copied an F31 install onto an existing F31 install on a hard drive that had Windows 10 on it. I did this in early 2020. Didn't keep notes. :( Now I have a hard drive that will boot Windows 10 fine, via the Windows 10 Boot Manager. When I go in

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
I believe that the files in /dev/sdb5 are the proper boot files.Would it be as simple as moving the files from that directory to the FAT32 partition ? On Tue, Nov 3, 2020 at 1:43 AM Samuel Sieb wrote: > On 11/2/20 10:35 PM, linux guy wrote: > > I can't remember exactly wha

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
.x86_64 vmlinuz-5.4.8-200.fc31.x86_64 The efi directory is empty. Here is what is in /dev/sdb2: ls 6e82390ebac04e6ebc14c7543a31c1e8 EFI mach_kernel System ls EFI Boot fedora Microsoft On Tue, Nov 3, 2020 at 2:00 AM Samuel Sieb wrote: > On 11/2/20 10:50 PM, linux guy wrote: > >

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
I'm looking at it with a live image right now. This is what is in fedora: ls BOOTIA32.CSV fwupia32.efi grub.cfg grubx64.efi shimia32.efi BOOTX64.CSV fwupx64.efi grub.cfg.rpmsave mmia32.efi shimia32-fedora.efi fonts gcdia32.efi grubenv mmx64.efishimx64.efi

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
So the boot process is supposed to find /dev/sdb5 and then mount /dev/sdb2 to the efi directory in it. Then it finds /fedora/root, and mount /fedora/home to /fedora/root/home ? ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
I'm confused. Exactly what do I do ? Thanks for the help, btw ! It's late here. I'll run it in the morning. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Cond

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
/dev/sda is the live USB drive. On Tue, Nov 3, 2020 at 2:39 AM Samuel Sieb wrote: > On 11/2/20 11:30 PM, linux guy wrote: > > So the boot process is supposed to find /dev/sdb5 and then mount > > /dev/sdb2 to the efi directory in it. Then it finds /fedora/root, and > >

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
cat program.log | grep efi 06:41:48,437 INFO program: Running [15] lvm vgs --noheadings --nosuffix --nameprefixes --unquoted --units=b -o name,uuid,size,free,extent_size,extent_count,free_count,pv_count fedora --config= devices { preferred_names=["^/dev/mapper/", "^/dev/md/", "^/dev/sd"] } log {lev

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-02 Thread linux guy
g... grub2-mkconfig -o /boot/grub2/grub.cfg 06:49:24,925 INFO program: Found linux image: /boot/vmlinuz-4.5.5-300.fc24.x86_64 06:49:24,925 INFO program: Found initrd image: /boot/initramfs-4.5.5-300.fc24.x86_64.img 06:49:24,925 INFO program: Found linux image: /boot/vmlinuz-0-rescue-c1d3ebaecd08428ba86f4a

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-03 Thread linux guy
"Try this command and see if it works: efibootmgr -c -w -L Fedora -d /dev/sdb -p 2 -l \EFI\fedora\shimx64.efi" What directory should I run this from ? On Tue, Nov 3, 2020 at 2:55 AM Samuel Sieb wrote: > On 11/2/20 11:49 PM, linux guy wrote: > > I'm running a live inst

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-03 Thread linux guy
efibootmgr -v BootCurrent: 0002 Timeout: 2 seconds BootOrder: 0002,0001, Boot* Windows Boot Manager HD(2,GPT,96f20e7f-6e16-47ff-bf8c-41fab591e17d,0xfa000,0x32000)/File(\EFI\MICROSOFT\BOOT\BOOTMGFW.EFI)WINDOWS.x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-03 Thread linux guy
Remember, I am running on a live USB. I did not boot from the drive that I am trying to fix. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-03 Thread linux guy
Here's the result: efibootmgr -c -w -L Fedora -d /dev/sdb -p 2 -l '\EFI\fedora\shimx64.efi' BootCurrent: 0002 Timeout: 2 seconds BootOrder: 0003,0002,0001, Boot* Windows Boot Manager Boot0001* Hard Drive Boot0002* UEFI: Patriot Memory PMAP Boot0003* Fedora I'm rebooting right now.

Re: How do I fix my messed up F31 boot partition setup ?

2020-11-03 Thread linux guy
IT WORKED ! You guys just saved me hours and hours of time reinstalling and setting up a new install on this computer. Thanks for the help ! Linux rocks. Fedora rocks ! ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an

F33 KDE Plasma - how do I get the activity list/menu/bar to disappear/minimize ?

2020-11-05 Thread linux guy
disappear.How do I make the activity list disappear ? Thanks $ uname -a Linux bigboy 5.8.17-300.fc33.x86_64 #1 SMP Thu Oct 29 15:55:40 UTC 2020 x86_64 x86_64 x86_64 GNU/Lin dnf list plasma* Installed Packages plasma-breeze.x86_645.1

Re: F33 KDE Plasma - how do I get the activity list/menu/bar to disappear/minimize ?

2020-11-05 Thread linux guy
I figured it out. Right Click on Desktop -> Activities. This toggles it to go away and come back. After the first time it appears to work correctly. On Fri, Nov 6, 2020 at 12:17 AM linux guy wrote: > F33 KDE workstation. Dual monitors. > > I have an activity widget on my des

Re: Problems with conflicts on today's updates (f33)

2021-01-08 Thread linux guy
I've got the same issue. Pretty frustrating. I wasn't watching and accepted the packages that would install and now I've got a non operational Plasma desktop. Fedora and Plasma still rock. On Fri, Jan 8, 2021 at 5:15 AM Neal Becker wrote: > I think at this point this is a clean F33 installat

Re: Problems with conflicts on today's updates (f33)

2021-01-08 Thread linux guy
On Fri, Jan 8, 2021 at 5:43 AM Ed Greshko wrote: > > Just to add to this. > > The needed fixes/updates are in "updates-testing" and will eventually get > pushed. > Any idea how long this will take ? ___ users mailing list -- users@lists.fedoraproject.o

Re: Problems with conflicts on today's updates (f33)

2021-01-08 Thread linux guy
I just did too ! LOL. On Fri, Jan 8, 2021 at 3:01 PM Ed Greshko wrote: > On 09/01/2021 05:58, linux guy wrote: > > > > > > On Fri, Jan 8, 2021 at 5:43 AM Ed Greshko <mailto:ed.gres...@greshko.com>> wrote: > > > > > > Just to add to t

Re: Problems with conflicts on today's updates (f33)

2021-01-08 Thread linux guy
Living on the (bleeding) edge ! On Fri, Jan 8, 2021 at 3:09 PM linux guy wrote: > I just did too ! LOL. > > On Fri, Jan 8, 2021 at 3:01 PM Ed Greshko wrote: > >> On 09/01/2021 05:58, linux guy wrote: >> > >> > >> > On Fri, Jan 8, 2021 at 5:43 A

Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
Anyone else finding Firefox to be very slow and laggy ? Typing text into a webpage has lags of up to several seconds ? Is this a Linux/KDE issue or a Firefox issue ? Thanks ! Fedora 33 Workstation, fully up to date. KDE Plasma desktop AMD 3600X, 64GB RAM @ 3600 MHz, NVME SSD Internet

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
3:01 PM Łukasz Posadowski wrote: > W dniu pon, 25.01.2021 o godzinie 14∶51 -0700, użytkownik linux guy > napisał: > > Anyone else finding Firefox to be very slow and laggy ? Typing text into a > webpage has lags of up to several seconds ? > > Is this a Linux/KDE issue or a Fi

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
I'm not sure what is slowing down. Just noticed FF last night. Plasma had a few glitches in the last week, but it seems to be operating fine now. On Mon, Jan 25, 2021 at 3:30 PM Joe Zeff wrote: > On 1/25/21 2:51 PM, linux guy wrote: > > Anyone else finding Firefox to be very

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
I think I found the problem. That battery in my wireless keyboard was low. Interesting thing is... it didn't affect all applications the same. Some were much slower and others weren't really affected. Interesting. On Mon, Jan 25, 2021 at 3:39 PM linux guy wrote: > I'

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
Spoke too soon. YouTube and Reddit are both very slow, esp. for typing. On Mon, Jan 25, 2021 at 4:55 PM linux guy wrote: > I think I found the problem. That battery in my wireless keyboard was > low. Interesting thing is... it didn't affect all applications the same. > Some we

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
Test case... open a Reddit sub in FF and attempt to reply to a post. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
Thanks for testing. I wonder why I have an issue with it ? On Mon, Jan 25, 2021 at 7:22 PM Ed Greshko wrote: > On 26/01/2021 10:12, linux guy wrote: > > Test case... open a Reddit sub in FF and attempt to reply to a post. > > No problem with that either. > > -- >

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
Oops ! It seems to work properly now. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List G

Re: Firefox slow and laggy, esp. typing online ?

2021-01-25 Thread linux guy
Nothing that I'm aware of. I'll post if it slows down again. Thanks for the attention. Fedora rocks ! ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: h

School me on server hard drive management. (Hot swap, SATA channels, LVM, backup, etc.)

2011-09-28 Thread linux guy
I'm building a home server that will run a MythTV backend, zoneminder and a NAS that will stream audio content to various players and images to various viewers, including Digikam users, as well as for general data backup from laptops, etc. Its based on a i5 K2500 processor in a MB with an H67 6 ch

Re: School me on server hard drive management. (Hot swap, SATA channels, LVM, backup, etc.)

2011-09-29 Thread linux guy
On Thu, Sep 29, 2011 at 5:45 AM, Genes MailLists wrote: > On 09/29/2011 12:26 AM, linux guy wrote: > > I'm building a home server that will run a MythTV backend, zoneminder > > ... > > > > > Questions > > > > > 3) How does one mount the drive

Re: School me on server hard drive management. (Hot swap, SATA channels, LVM, backup, etc.)

2011-09-29 Thread linux guy
Mount point management. Is there an easy was to know if a disk is mounted and act accordingly or prevent data from being written to a mountpoint ? Or to have the mount point disappear when its not mounted ? Example Lets say I create a mount point /home/me/myth and that /home/me resides on /dev/

Fun and games with 3TB hard drives.

2011-09-29 Thread linux guy
Today I bought 2 3 TB hard drives to use in my new server. I'm writing this in case other people aren't aware that some of the traditional hard drive management methods don't work for drives larger than 2 TB. Specifically, fdisk and MSDOS type partition tables. Here is how I created a single par

Re: Fun and games with 3TB hard drives.

2011-09-29 Thread linux guy
On Thu, Sep 29, 2011 at 5:03 PM, Tom Horsley wrote: > On Thu, 29 Sep 2011 16:33:27 -0600 > linux guy wrote: > > > Today I bought 2 3 TB hard drives to use in my new server. > > Did you actually get 2 that both worked? I was looking at > the reviews for 3TB drives on

Re: Fun and games with 3TB hard drives.

2011-09-30 Thread linux guy
Speaking of which, what is a good way to compare the files in two directories (recursively, of course) to ensure that they are exactly the same ? Something like diff for files ? Thanks -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admi

Re: Fun and games with 3TB hard drives.

2011-09-30 Thread linux guy
Lets be clear here. There isn't really a bug in fdisk. It just doesn't handle any partition table types other than MSDOS. And MSDOS type partition tables have the 2 TB limitation, not fdisk. I don't blame developers for not updating fdisk. I think its an inferior tool to parted (and gparted).

Re: Fun and games with 3TB hard drives.

2011-09-30 Thread linux guy
I file my fair share of bugs. Generally I like to post issues to discussion groups (mailing lists) to be sure there is indeed an issue and that I am not overlooking something. Lets see where this discussion goes and then I/we can determine if it warrants a bugzilla entry. When I was working on t

Re: Fun and games with 3TB hard drives.

2011-09-30 Thread linux guy
As for the automount gpt issue, as far as I can tell, kernel support for gpt is fairly new. I'm sure this issue will be address shortly, if it hasn't been already. -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/ma

Re: Fun and games with 3TB hard drives.

2011-09-30 Thread linux guy
On Fri, Sep 30, 2011 at 12:12 PM, Lamar Owen wrote: > > On Sep 30, 2011, at 2:00 PM, linux guy wrote: > > As for the automount gpt issue, as far as I can tell, kernel support for >> gpt is fairly new. I'm sure this issue will be address shortly, if it >> hasn

Re: Fun and games with 3TB hard drives.

2011-09-30 Thread linux guy
On Fri, Sep 30, 2011 at 3:56 PM, linux guy wrote: > > Great tip ! Thanks for sharing that. > > I forgot to say, FOSS ROCKS ! It ain't perfect, but its very, very good and for the most part it gets better with every release. -- users mailing list users@lists.fedoraproject.o

Re: Fun and games with 3TB hard drives.

2011-10-01 Thread linux guy
With further use I've found that the hot swap hard drives show up in Dolphin just fine, even if they aren't mounted manual. It must have been just the first time after formatting that they don't appear, whereas with fdisk, they do. For those that aren't aware a hot swap capable motherboard (and B

Re: I need to make an install iso of the OS the way it is after I'velaboured for several hours to customized it...

2011-10-04 Thread linux guy
On Tue, Oct 4, 2011 at 11:23 AM, da...@mich.com wrote: > > You may want to try: > > http://www.mondorescue.org/ > Thanks for sharing that. Why isn't this in the Fedora repositories ? -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admi

Re: F15 preupgrade: lots of uneraseable dupes

2011-10-10 Thread linux guy
I had the same problem, for some reason, on one of my machines. On that machine I upgraded from the full install DVD instead of doing a yum preupgrade. Actually, I did the later, but it failed. Anyhow, I believe I ran a yum check all > list.txt and then edited the file and then used it as input

Re: F15 preupgrade: lots of uneraseable dupes

2011-10-10 Thread linux guy
On 10/10/11, JD wrote: > Very interesting (to me). > Had similar problem after I upgraded F14 to F16. > The database got corrupted and rebuilddb would > fail. Gave up and restored back to F14 from backup. To be clear, in my situation the database did not fail. By duplicates, I meant that I had

Re: F15 preupgrade: lots of uneraseable dupes

2011-10-10 Thread linux guy
I wonder if this thread plays well into the idea > that upgrading using yum should be scripted by > an expert so that us mortals do not have to slog > through this mud :) > > a) My issue was not caused by a yum preupgrade. It happened by running the complete install DVD over an existing installa

F15 install. File system errors left uncorrected.

2011-10-10 Thread linux guy
I'm installing F15 on an HP laptop from the F15 KDE Live iso loaded on a USB flash drive. I've installed F15 on 6 computers with no problems using the same iso + drive. Furthermore, it passes the verify and run test when it boots. I'm receiving the following message when the installation is com

Current F15 kernels + proprietary nVidia driver ? kmod, akmod, x11 config.

2011-10-10 Thread linux guy
**I ask that flamers please withhold whatever comments may derail this thread from its goal of helping me run the proprietary nVidia driver.** Rightly or wrongly, prior to F15, I've used the proprietary nVidia driver almost exclusively. I abandoned the proprietary nVidia driver with my upgrade to

Re: Current F15 kernels + proprietary nVidia driver ? kmod, akmod, x11 config.

2011-10-10 Thread linux guy
I got the proprietary nvidia driver running using the instructions here. http://www.if-not-true-then-false.com/2011/fedora-15-nvidia-drivers-install-guide/ Of course it kept running the nouveau driver, even after I followed the instructions there. I had to resort to doing a "dracut -f /boot/init

Booting a live ISO without mounting the hard drive ?

2011-10-14 Thread linux guy
I'm on the road, in the middle of nowhere. I've got a hard drive issue. I'd like to run the f15 Live ISO from a USB drive. No problem there. I DO NOT want it to mount the hard drive. i'd like it unmounted so that I can perform disk tests and stuff on it. I know about rescue disks. I don't h

Re: Booting a live ISO without mounting the hard drive ?

2011-10-14 Thread linux guy
Thanks. I got it figured out. -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines

What was gqview renamed to ?

2011-10-16 Thread linux guy
Subject says it all. I can't seem to find it with search. Thanks -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines

Re: What was gqview renamed to ?

2011-10-16 Thread linux guy
On Sun, Oct 16, 2011 at 1:41 PM, Andras Simon wrote: > 2011/10/16, linux guy : >> Subject says it all. >> >> I can't seem to find it with search. >> >> Thanks > > > geeqie is what you're probably looking for. (yum search led me to it.) For fut

windows migrant: choosing linux distribution

2011-11-02 Thread Linux Tyro
hi, i am new in this world of linux. getting confused seeing a lot of linux distro. I just want to use linux distro to learn linux from the scratch level. please suggest me if fedora is the best place to start with. other details are as follows: confused between: fedora, openSUSE and ubuntu LTS

Re: windows migrant: choosing linux distribution

2011-11-02 Thread Linux Tyro
mething in long terms, like the one with which I start, I should remain there. And it must be highly secured (though I know Linux is secured). But in future, I would learn the basics of administration too, so please guide me which is a better administration - rpm or deb? On Wed, Nov 2, 2011 at 6:22

Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-03 Thread Linux Tyro
__ /dev/sda 232.89 GB /dev/sda1 116.88 GB HPFS/NTFSNTFS /windows/c /dev/sda1 116.01 GB Extended /dev/sad5 4.75 GB Linux swapSwap Swap /dev/sda6 20.00 GBF Linux native Ex

Re: windows migrant: choosing linux distribution

2011-11-03 Thread Linux Tyro
at's going on; I find RPM slightly > easier, but Debian provides lots of nice helper scripts for package > builds (and those are inherited by Ubuntu). > > Pick one. You won't really go wrong. In my opinion, software > availability, quality, and maintenance culture are more i

Re: windows migrant: choosing linux distribution

2011-11-03 Thread Linux Tyro
On Wed, Nov 2, 2011 at 7:49 PM, Bruno Wolff III wrote: The main advantage of Linux systems is openness. > Correct but I am considering security too! Well, Linux is good overall. -- THX -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: ht

Re: windows migrant: choosing linux distribution

2011-11-03 Thread Linux Tyro
< n2xssvv.g02gfr12...@ntlworld.com> wrote: I like the openness, as well as the reliability, (it is much less likely > to crash than windows). > On Wed, Nov 2, 2011 at 9:49 PM, Emilio Lopez wrote: I think Fedora is a good distro to start. As Joe Wulf said, is a good > idea to in

Re: windows migrant: choosing linux distribution

2011-11-03 Thread Linux Tyro
they can get away with. > > Haven't mentioned SUSE as I haven't used it for years. > Came to conclude whatever I choose, have to dig it out to know the things, Linux is Linux. -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines

Re: windows migrant: choosing linux distribution

2011-11-03 Thread Linux Tyro
t, Fedora 14 will be obsoleted and orphaned (no updates). > > If you want a relatively stable environment (and if you're just > learning, that might be a good idea), I'd go with Ubuntu, Debian or > CentOS (CentOS is built from the same source as Red Hat Enterprise > Linux).

Re: windows migrant: choosing linux distribution

2011-11-03 Thread Linux Tyro
On Thu, Nov 3, 2011 at 4:22 AM, Marko Vojinovic wrote: (1) WELCOME to the Linux community! > Thanks. > (2) Don't hesitate to ask for help. This mailing list is a great resource > of > information and is followed by people who are seasoned linux users, as > well as > fre

Re: windows migrant: choosing linux distribution

2011-11-03 Thread Linux Tyro
ing an open mind. > The only reason why I cannot fully devote myself here is due to the fact of mine being in some other job, so I get really less time to learn Linux, but as said, whenever, I get, I do try to sit in front of PC, however, it could be as low as 5 to 10 minutes (not a joke)! I liked

Re: Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-03 Thread Linux Tyro
at, "BIOS only send the instructions to the boot-loader (probably or whatever it sends the signal to) to just boot, BIOS has not such a bigger memory to have the hard-disk, so hard-disk is always beyond the hands of BIOS, but rather BIOS just sends the signal that ***IT*** should be booted and ***

Re: Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-04 Thread Linux Tyro
s how to access the > disk > itself. > > Another typical situation is to not load a kernel, but instead read some > other > stage 2 bootloader that resides on, say, /dev/sda1, and let that take over > and > repeat the whole thing for another OS. This is called chainloading, and &

Re: Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-04 Thread Linux Tyro
On Thu, Nov 3, 2011 at 11:55 AM, Marko Vojinovic wrote: > Nothing is permanent, of course, it would just be a hassle to fix. Neither > Windows nor Linux would boot, and you would need to boot from the > installation > DVD or something called the "Rescue CD", and use the

Re: Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-04 Thread Linux Tyro
On Thu, Nov 3, 2011 at 11:55 AM, Marko Vojinovic wrote: This is how bootloading works... > Well, since (now) /home is a separate partition, but we cannot boot from /home only because it is not containing the required file to get booted and it is only for storing the data.? -- THX -- users

Re: Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-04 Thread Linux Tyro
onal preferences for how to > use > it. Well, I could have all the separate partitions like you say, but as you said to have only the separate partitions of '/' and 'home', so now I have only Three partitions:- linuxworld@linux-g34l:~> sudo /sbin/fdisk -l Disk /dev/

Re: Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-05 Thread Linux Tyro
onal preferences for how to > use > it. Well, I could have all the separate partitions like you say, but as you said to have only the separate partitions of '/' and 'home', so now I have only Three partitions:- linuxworld@linux-g34l:~> sudo /sbin/fdisk -l Disk /dev/

Re: windows migrant: choosing linux distribution

2011-11-05 Thread Linux Tyro
On Sat, Nov 5, 2011 at 10:33 AM, Heinz Diehl wrote: There are lots of good distributions out there. Just download a live > CD .ISO, burn it, boot it and see what you've got. After playing > around a little while with all of them, you'll surely find your way. > Sure and thanks man. On Sat, Nov 5

Re: Thanks to Fedora community; Installation & Disk Partitioning ISSUE

2011-11-05 Thread Linux Tyro
puters? > Not have but just asked for clarification. On Sat, Nov 5, 2011 at 11:42 AM, Greg Woods wrote: Yes, I can. I have a system with Windows dual boot, and I want to be > able to hibernate Linux, boot into Windows, and then resume Linux from > hibernation. With recent versions

A general history question

2011-11-05 Thread Linux Tyro
Hi, Excited to see this world of Linux. A general question came in mind regarding the origin of Linux. Well, it (Linux) is basically a kernel -- perhaps same in majority of all the distros, almost all. Well, openSUSE also uses the technique of .rpm which is again Red Hat Package Manager. So

Re: A general history question

2011-11-05 Thread Linux Tyro
On Sat, Nov 5, 2011 at 1:35 PM, Linux Tyro wrote: Excited to see this world of Linux. A general question came in mind > regarding the origin of Linux. > > Well, it (Linux) is basically a kernel -- perhaps same in majority of all > the distros, almost all. Well, openSUSE also uses t

<    1   2   3   4   5   6   >