Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Search
  • Search

Search found 434 matches

Go to advanced search

Advanced search
Search found 434 matches
  • Page 1 of 18
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 18
  • Next
by Irre
Thu May 19, 2022 9:31 am
Forum: Other Things Gentoo
Topic: [SOLVED] Clone a hard disk
Replies: 21
Views: 8724

I used ddrescue when I cloned my defective harddisk. There were several errors I wasnt aware of, but it worked :)
  • Jump to post
by Irre
Thu Mar 03, 2022 8:08 am
Forum: Other Things Gentoo
Topic: Ideas on VM server set up
Replies: 7
Views: 3588

An interesting option is Xen. https://wiki.gentoo.org/wiki/Xen
  • Jump to post
by Irre
Sat Jan 29, 2022 12:08 pm
Forum: Installing Gentoo
Topic: [SOLVED] First Install, boot hangs
Replies: 9
Views: 3201

An other option is to start with a simpler boot loader, lilo. Create an ext2 partition and place /boot there.
  • Jump to post
by Irre
Fri Jan 28, 2022 6:24 pm
Forum: Gentoo Chat
Topic: [split] Perl upgrade, no updates for 1 year 250 days
Replies: 32
Views: 12615

Why not temporary remove the world file. Then update your system. Then restore your world file, possibly in small steps.
  • Jump to post
by Irre
Wed Jan 05, 2022 1:18 pm
Forum: Portage & Programming
Topic: Don't want to upgrade grub - any emerge options?
Replies: 39
Views: 20827

Grub2win is a grub2 boot loader that is installed and administered via windows. Good if you want to multiboot several systems without annoying windows!
  • Jump to post
by Irre
Sun Dec 26, 2021 2:47 pm
Forum: Kernel & Hardware
Topic: fstrim does not work with new ntfs driver
Replies: 5
Views: 3324

Anon-E-moose wrote:1st off, you're already mounting with discard, why do you care about trying to manually run fstrim?
I get the same error also without discard option.
  • Jump to post
by Irre
Sun Dec 26, 2021 2:43 pm
Forum: Kernel & Hardware
Topic: fstrim does not work with new ntfs driver
Replies: 5
Views: 3324

NeddySeagoon wrote:Irre,

How is /sda11 connected?

It it really /dev/sda11 or it it mounted an /sda11 in the filesystem tree, or even both?
/dev/sda11 is mounted as /sda11 in fstab

fstrim -v /sda11 -- worked as expected with the ntfs3g driver
  • Jump to post
by Irre
Sun Dec 26, 2021 8:46 am
Forum: Kernel & Hardware
Topic: fstrim does not work with new ntfs driver
Replies: 5
Views: 3324

fstrim does not work with new ntfs driver

Kernel: 5.15.8-gentoo-x86_64
util-linux: 2.37.2-r1

mount -v | grep /sda11

Code: Select all

type ntfs3 (rw,noatime,uid=0,gid=0,iocharset=utf8,discard,prealloc)
fstrim -v /sda11

Code: Select all

fstrim: /sda11: the discard operation is not supported
  • Jump to post
by Irre
Fri Dec 17, 2021 7:53 am
Forum: Kernel & Hardware
Topic: Upgrading internal SSD
Replies: 6
Views: 2416

When I replaced hdd, I simply did i full image backup. Removed hdd and installed ssd, restored from image backup. Last partition was expanded to fill the size of the new ssd. These step were run on linux on an external usb-stick. All systems, Windows inclusive, were succesfully moved to the new ssd ...
  • Jump to post
by Irre
Fri Nov 12, 2021 8:14 am
Forum: Gentoo Chat
Topic: [POLL] How many Packages do you have on your system?
Replies: 38
Views: 38041

Packages installed: 609
Packages in world: 45
Packages in system: 43

Rpi4 8G with Kodi and as fileserver for multimedia, portage, distfiles and packages
  • Jump to post
by Irre
Mon Nov 08, 2021 9:41 pm
Forum: Portage & Programming
Topic: [solved]linux 5.15 and new ntfs driver
Replies: 6
Views: 3970

cboldt wrote:Maybe an entry in /etc/filesystems will take care of things.

I take it you are trying to avoid only the "-t ntfs3" part of the `mount` command line.
Thank you. Now it works
  • Jump to post
by Irre
Sun Nov 07, 2021 11:57 am
Forum: Portage & Programming
Topic: [solved]linux 5.15 and new ntfs driver
Replies: 6
Views: 3970

Put a line in your /etc/fstab file, specify ntfs3 as filesystem type, and you should be good to go.

A benefit of this is no need to list the device on the command line, because fstab has that information.
stab.
Neddy and others will perhaps recommend device id using something other than /dev/sda2 ...
  • Jump to post
by Irre
Sun Nov 07, 2021 11:25 am
Forum: Portage & Programming
Topic: [solved]linux 5.15 and new ntfs driver
Replies: 6
Views: 3970

[solved]linux 5.15 and new ntfs driver

I have configured the kernel only to use the new ntfs3 driver. It works excellent, but how do I tell "mount" to use this new driver by default?
mount /dev/sda2 /tmp1
mount: /tmp1: unknown filesystem type 'ntfs' :(

This works, but -t ntfs3, must be written:
mount -t ntfs3 /dev/sda2 /tmp1
mount -v ...
  • Jump to post
by Irre
Tue Nov 02, 2021 7:52 am
Forum: Desktop Environments
Topic: GUI-mounting NTFS partitions with new kernel driver fails
Replies: 1
Views: 1875

You have no "mount" command, but you can specify ntfs3 in /etc/fstab

cat /etc/fstab | grep ntfs3
/dev/sda2 /tmp2 ntfs3 noauto,prealloc,noatime,rw 0 0

mount /tmp2

mount -v | grep ntfs3
/dev/sda2 on /tmp2 type ntfs3 (rw,noatime,uid=0,gid=0,iocharset=utf8,prealloc)
  • Jump to post
by Irre
Thu Oct 21, 2021 1:26 pm
Forum: Kernel & Hardware
Topic: Very fast writing to NTFS with kernel 5.15
Replies: 9
Views: 4455

Well, comparing apples and oranges, because ntfs-3g runs in user mode (FUSE, file system in user mode) and ntfs3 runs in kernel mode. Naturally a file system driver is faster in-kernel...

But is ntfs3 as compatible as ntfs-3g is in a real life scenario?
Ntfs3 is much better! I tested to write 800 ...
  • Jump to post
by Irre
Mon Oct 18, 2021 10:47 pm
Forum: Kernel & Hardware
Topic: Very fast writing to NTFS with kernel 5.15
Replies: 9
Views: 4455

mike155 wrote:Ah! You compare "real 0m17.862s" with "real 0m4.967s". That makes more sense! :)

But it's still a huge difference! Is a filesystem driver in userspace so much slower?
Yes ntfs3 seems to be almost 4 times faster than ntfs-3g! :D
  • Jump to post
by Irre
Mon Oct 18, 2021 10:28 pm
Forum: Kernel & Hardware
Topic: Very fast writing to NTFS with kernel 5.15
Replies: 9
Views: 4455

mike155 wrote:Hmm. 2.5 GB/s to a SATA device? Please explain!
No, 2 GB in 5 s!
  • Jump to post
by Irre
Mon Oct 18, 2021 7:20 pm
Forum: Kernel & Hardware
Topic: Very fast writing to NTFS with kernel 5.15
Replies: 9
Views: 4455

Very fast writing to NTFS with kernel 5.15

I have built 5.15.0-rc6 with ntfs3 support. We have no mount command for ntfs3 but /etc/fstab "works":

Linux localhost 5.15.0-rc6-x86_64 #2 SMP Mon Oct 18 14:21:27 CEST 2021 x86_64 Intel(R) Core(TM) i7-2670QM CPU @ 2.20GHz GenuineIntel GNU/Linux

cat /etc/fstab | grep ntfs3
/dev/sda2 /tmp2 ntfs3 ...
  • Jump to post
by Irre
Sat Oct 09, 2021 6:26 pm
Forum: Portage & Programming
Topic: world file clean-up
Replies: 13
Views: 10867

I run this script to clean the world: for i in `cat /var/lib/portage/world`
do
if emerge -p --depclean $i | grep "These are the packages that would be unmerged:">null
then echo $i >>/var/lib/portage/world-new
else echo "removing:" $i
fi
done
mv /var/lib/portage/world /var/lib/portage/world ...
  • Jump to post
by Irre
Sun Sep 26, 2021 6:34 am
Forum: Portage & Programming
Topic: How to list all unavailable packages?
Replies: 12
Views: 3635

emaint world :)
  • Jump to post
by Irre
Sun Sep 26, 2021 6:20 am
Forum: Gentoo on ARM
Topic: RPI4, After update + depclean, busybox disappeared -- no net
Replies: 3
Views: 5311

"It was decided that this package is not
necessary for a basic system install."

I think it is! Without busybox my system has no network!

Edit, emerge --info emerge --info:
Portage 3.0.23 (python 3.9.7-final-0, default/linux/arm64/17.0, gcc-11.2.0, glibc-2.33-r7, 5.10.17-v8+ aarch64 ...
  • Jump to post
by Irre
Sat Sep 25, 2021 7:19 pm
Forum: Gentoo on ARM
Topic: RPI4, After update + depclean, busybox disappeared -- no net
Replies: 3
Views: 5311

RPI4, After update + depclean, busybox disappeared -- no net

RPI4, After update + depclean, busybox disappeared and no network started after that :(

emerge busybox, solved the problem...
  • Jump to post
by Irre
Wed Aug 25, 2021 11:41 am
Forum: Gentoo Chat
Topic: Goodbye, Gentoo
Replies: 44
Views: 30649

In germany they don't say "good bye". They say "auf wiedersehen"!
  • Jump to post
by Irre
Fri Jul 30, 2021 2:52 pm
Forum: Portage & Programming
Topic: gcc - ld: final link failed: No space left on device
Replies: 8
Views: 5651

Re: gcc - ld: final link failed: No space left on device

I'm trying compile gcc and I get
/usr/lib/gcc/i686-pc-linux-gnu/10.3.0/../../../../i686-pc-linux-gnu/bin/ld: final link failed: No space left on device

I thought it meant space in /vat/tmp/portage so I mounted big enough space to it (hundreds of GiB)
but no change.

So question is where does ...
  • Jump to post
by Irre
Thu Jul 15, 2021 9:14 am
Forum: Installing Gentoo
Topic: Can't boot into WIn10 on Dual Boot.
Replies: 7
Views: 3199

Do you think grub2win might help that or is it just another way for the bootloader to see both OS's but from the Windows side?
grub2win loads grub via the windows bootloader, I think. I tested it under Virtual Box. It worked fine. I got a menu where I could choose between Windows10 and a Linux ...
  • Jump to post

Search found 434 matches
  • Page 1 of 18
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 18
  • Next

Go to advanced search

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy