this post was submitted on 31 Aug 2023
2 points (75.0% liked)

Linux Mint

1662 readers
8 users here now

Linux Mint is a free Linux-based operating system designed for use on desktop and laptop computers.

Want to see the latest news from the blog? Set the Firefox homepage to:

linuxmint.com/start/

where is a current or past release. Here's an example using release 21.1 'Vera':

https://linuxmint.com/start/vera/

founded 3 years ago
MODERATORS
 

I installed Linux mint on my Lenovo X131e and installing updates has been problematic. Initially I thought only Firefox was not “getting internet” but looking at the apt-get messages it appears even that is having issues.

I have never been much a Linux user since the mid90s. But have used it off and on.

I am going to be using this in my game shop to display stuff on my monitors around the shop, mostly event codes and event standings for Magic the gathering (this uses a webpage from wizards). And to play music.

you are viewing a single comment's thread
view the rest of the comments
[–] davi@hexbear.net 2 points 1 year ago (1 children)

this sounds more like network problem than a linux one; but since you're using linux w/o an internet connection, you'll have to use the tools that usually come with Linux:

get a sense of your computer's situation some of these commands will give you the same information and i write them here because i don't know what tools mint provides with its image:

start with basic information. see if your computer has an ip address and who its primary gateway(s) is/are:

ip a
ifconfig -a
netstat -rn
route -n

then use that information to start troubleshooting; these commands are a shortcut; duplicate information; and should be run in order:

for i in $(netstat -rn | grep ^0.0.0.0 | awk '{print $2}') ; do ping -c 3 -W 1 $i ; done
if [ $? -eq 0 ] ; then cat /etc/resolv.conf ; traceroute google.com ; fi

this command provides duplicate information but provided here in case mint has really weird packages on it

for i in $(route -n | grep ^0.0.0.0 | awk '{print $2}') ; do ping -c 3 -W 1 $i ; done
if [ $? -eq 0 ] ; then cat /etc/resolv.conf ; traceroute google.com ; fi

if neither of the last 2 stanzas worked, then your computer doesn't think it's connected to a network and the source of your problem is somewhere with either the hardware, driver or mint.

[–] nocturne213@lemm.ee 1 points 1 year ago

I ended up having to not use the Broadcom wifi adapter drivers, even doing that was unstable and had to switch to a wired connection. Thank you for all of the information.