burrua
August 24, 2022, 5:00pm
1
Hello i am new in linux, i have two visible problems : no ethernet connection (i am actually connected with USB connection sharing) and i can’t poweroff or reboot my pc
Summary
(it stays like that and the fans keep on turning)
At the beginning I wanted to have a dual boot with win10 (the only OS that the computer had) I had the problems (only on linux and as soon as the installation in flahsboot), I removed windows and the problems remained. I tried other OS (Manjaro, Fedora and Mint in flashboot) and same thing. An error when I shut down my computer in flashboot Manjaro :
Summary
inxi -FAZ --no-host : https://clbin.com/AOuaM
ip link show : https://clbin.com/WVE6N (at the base fq_codel state is down, I have it up but it did not change anything ;enp0s2f1u6 is my smartphone)
journalctl -b -0 : https://clbin.com/ktx2j
Thank for your attention
Not meaning to discourage you, but I would reformat the whole drive and start from scratch, and possibly save needed data to an external drive, before.
Oh, by the way, welcome to this forum!
burrua
August 24, 2022, 6:11pm
3
Thank you for answer Is there a more efficient way to reformat than erasing the disk during the new installation (which I had done)?
Do a cold boot, after erasing all partitions, then leave as is, turn the machine off and boot from USB to do the install.
I recommend an automated partitioning. Any changes you would like to do then can be done after the installation.
burrua
August 25, 2022, 12:42pm
5
Same problems, I don’t know where to look or what information to send.
Hi there again.
Regarding your networking problem, can you post the output of this command?
ip addr
And also those two commands?
sudo ip -br -c addr show
sudo ip -br -c link show
burrua
August 25, 2022, 1:53pm
7
ip addr: https://clbin.com/M81TB (last is my smartphone)
sudo ip -br -c addr show:
lo UNKNOWN 127.0.0.1/8 ::1/128 enp0s7 DOWN enp0s2f1u6 UNKNOWN 192.168.42.45/24 fe80::5ec9:c4b3:57d4:dc72/64
sudo ip -br -c link show:
lo UNKNOWN 00:00:00:00:00:00 <LOOPBACK,UP,LOWER_UP> enp0s7 DOWN 70:85:c2:6e:57:59 <NO-CARRIER,BROADCAST,MULTICAST,UP> enp0s2f1u6 UNKNOWN aa:e4:1d:a9:a8:9a <BROADCAST,MULTICAST,UP,LOWER_UP>
Please format your pasting as code, using </> symbol in post editor. Thank you.
Your ip addr
:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp0s7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
link/ether 70:85:c2:6e:57:59 brd ff:ff:ff:ff:ff:ff
3: enp0s2f1u6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UNKNOWN group default qlen 1000
link/ether aa:e4:1d:a9:a8:9a brd ff:ff:ff:ff:ff:ff
inet 192.168.42.45/24 brd 192.168.42.255 scope global dynamic noprefixroute enp0s2f1u6
valid_lft 3457sec preferred_lft 3457sec
inet6 fe80::5ec9:c4b3:57d4:dc72/64 scope link noprefixroute
valid_lft forever preferred_lft forever
It shows enp0s7 (your ethernet) as DOWN, so after connecting the ethernet-cable to your router bring it UP this way:
sudo ip link set dev enp0s7 up
After, check ip addr
again.
From your inxi:
Network:
Device-1: NVIDIA MCP61 Ethernet vendor: ASRock 939NF6G-VSTA Board
type: network bridge driver: forcedeth v: kernel port: d080 bus-ID: 00:07.0
chip-ID: 10de:03ef
IF: enp0s7 state: down mac: <filter>
IF-ID-1: enp0s2f1u6 state: unknown speed: -1 duplex: half mac: <filter>
burrua
August 25, 2022, 2:20pm
10
Ip addr “1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp0s7: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
link/ether 70:85:c2:6e:57:59 brd ff:ff:ff:ff:ff:ff”
The right way to post would be using " symbol in post editor. Sorry for wrong instruction regarding post-editor before. My bad.
So it won’t react and stays down… let me check your device’s hardware-issues… be right back.
So, the nvidia driver for your ethernet, named forcedeth seems to be the culprit of both your issues!!
I found this, including a solution:
https://bbs.archlinux.org/viewtopic.php?pid=1551149#p1551149
Searching the web for …
linux NVIDIA MCP61 Ethernet forcedeth problem
… brings up many results with differing solutions and workarounds.
Others seem to have solved the issue by appending ‘pci=nomsi’ to the
GRUB_CMDLINE_LINUX_DEFAULT="some_values pci=nomsi"
in /etc/default/grub
then updating grub and rebooting.
Interesting trivia:
Even his Linux Majesty himself has been working on it .
burrua
August 25, 2022, 4:05pm
14
Thank you very much first link worked, i’m bad in english searching : /
1 Like
I’m glad it works! Cheerio…
system
Closed
August 27, 2022, 4:09pm
16
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.