[SOLVED] Hidden Location of Wireless option MInt 14

Please post suggestions for improvement of Cinnamon on:
https://github.com/linuxmint/Cinnamon
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
erie88
Level 1
Level 1
Posts: 29
Joined: Mon Dec 31, 2012 11:24 am

[SOLVED] Hidden Location of Wireless option MInt 14

Post by erie88 »

I recently upgrading to Linux Mint 14 Cinnamon. All looks fine except in the newtork panel there is no wifi/wireless option. I checked the Network Settings then clicked the "option" button then it bring up "Editing Wired Connection 1" form. Clicking the "option" button for the second time, bring up "Network Connections" form with 5 tabs :
1. Wired [add] [edit] [delete]
2. Wireless [add] [edit] [delete]
3. Mobile Broadband [add] [edit] [delete]
4. VPN [add] [edit] [delete]
5. DSL [add] [edit] [delete]

Below is the image :

Image
My question is : Why is the wifi option is hidden like this? and how do I add the wifi option? or enable the wifi automatically? like previously in Mint 13.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
User avatar
jungle_boy
Level 7
Level 7
Posts: 1812
Joined: Thu Aug 19, 2010 2:51 pm
Location: Amazon Rainforest

Re: Hidden Location of Wireless option MInt 14

Post by jungle_boy »

Do you installed wireless card driver?

Open a terminal and:

Code: Select all

inxi -N
And post here the output.
Samsung Odyssey, Octa-core, i5 9300H, Geforce GTX 1650, 16GB RAM, SSD SAMSUNG NVMe 500GB
LM 21 Cinnamon
erie88
Level 1
Level 1
Posts: 29
Joined: Mon Dec 31, 2012 11:24 am

Re: Hidden Location of Wireless option MInt 14

Post by erie88 »

Here is the inxi result:
Network: Card-1: Realtek RTL8111/8168B PCI Express Gigabit Ethernet controller driver: r8169
Card-2: Ralink RT5390 Wireless 802.11n 1T/1R PCIe
And lspci result:
00:00.0 Host bridge: Advanced Micro Devices [AMD] Family 14h Processor Root Complex
00:01.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Wrestler [Radeon HD 6290]
00:01.1 Audio device: Advanced Micro Devices [AMD] nee ATI Wrestler HDMI Audio [Radeon HD 6250/6310]
00:04.0 PCI bridge: Advanced Micro Devices [AMD] Family 14h Processor Root Port
00:10.0 USB controller: Advanced Micro Devices [AMD] Hudson USB XHCI Controller (rev 03)
00:11.0 SATA controller: Advanced Micro Devices [AMD] Hudson SATA Controller [IDE mode] (rev 40)
00:12.0 USB controller: Advanced Micro Devices [AMD] Hudson USB OHCI Controller (rev 11)
00:12.2 USB controller: Advanced Micro Devices [AMD] Hudson USB EHCI Controller (rev 11)
00:13.0 USB controller: Advanced Micro Devices [AMD] Hudson USB OHCI Controller (rev 11)
00:13.2 USB controller: Advanced Micro Devices [AMD] Hudson USB EHCI Controller (rev 11)
00:14.0 SMBus: Advanced Micro Devices [AMD] Hudson SMBus Controller (rev 14)
00:14.1 IDE interface: Advanced Micro Devices [AMD] Hudson IDE Controller
00:14.2 Audio device: Advanced Micro Devices [AMD] Hudson Azalia Controller (rev 01)
00:14.3 ISA bridge: Advanced Micro Devices [AMD] Hudson LPC Bridge (rev 11)
00:14.4 PCI bridge: Advanced Micro Devices [AMD] Hudson PCI Bridge (rev 40)
00:14.7 SD Host controller: Advanced Micro Devices [AMD] Hudson SD Flash Controller
00:15.0 PCI bridge: Advanced Micro Devices [AMD] Device 43a0
00:15.1 PCI bridge: Advanced Micro Devices [AMD] Device 43a1
00:15.3 PCI bridge: Advanced Micro Devices [AMD] Device 43a3
00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 0 (rev 43)
00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 1
00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 2
00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 3
00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 4
00:18.5 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 6
00:18.6 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 5
00:18.7 Host bridge: Advanced Micro Devices [AMD] Family 12h/14h Processor Function 7
06:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 07)
07:00.0 Network controller: Ralink corp. RT5390 Wireless 802.11n 1T/1R PCIe
User avatar
jungle_boy
Level 7
Level 7
Posts: 1812
Joined: Thu Aug 19, 2010 2:51 pm
Location: Amazon Rainforest

Re: Hidden Location of Wireless option MInt 14

Post by jungle_boy »

Your laptop don't have linux driver wireless card installed, so it does not work.

It is a little hard put to work Ralink card; search in google about these; i found something:

It is necessary cable network in your laptop.

Open a terminal and run, one by one, the followings commands; I don't know if it works, I don't have Ralink card, I have Broadcom card (see my signature)

Code: Select all

sudo apt-get install --reinstall linux-headers-$(uname -r) build-essential dkms patch fakeroot unzip
wget http://media.cdn.ubuntu-de.org/forum/attachments/35/07/3208747-angepasster-2011_0406_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO.zip
unzip 3208747-angepasster-2011_0406_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO.zip
cd angepasster-2011_0406_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/
sudo make
sudo make install
sudo modprobe -v rt5390sta
sudo depmod -a
sudo update-initramfs -u 
Close

Reboot.
Samsung Odyssey, Octa-core, i5 9300H, Geforce GTX 1650, 16GB RAM, SSD SAMSUNG NVMe 500GB
LM 21 Cinnamon
erie88
Level 1
Level 1
Posts: 29
Joined: Mon Dec 31, 2012 11:24 am

Re: Hidden Location of Wireless option MInt 14

Post by erie88 »

That was what I had done before I upgraded Mint Cinnamon from 13 to 14 using the same tutorial from youtube. But I don't notice any improvements after that. And, the wireless option was available in Mint 13.

I have tried reinstalling new driver using this tutorial http://forums.linuxmint.com/viewtopic.php?f=53&t=79227. This is the result in which I really don't understand at all:

Code: Select all

athlon@athlon:~$ cd ~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ sudo apt-get install linux-headers-generic build-essential
[sudo] password for athlon: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
build-essential is already the newest version.
linux-headers-generic is already the newest version.
The following packages were automatically installed and are no longer required:
  compiz-plugins compiz-plugins-main g++-4.6 gir1.2-gck-1 gir1.2-gcr-3
  gir1.2-ibus-1.0 gir1.2-mutter-3.0 libaudit0 libboost-date-time1.46.1
  libboost-filesystem1.46.1 libboost-program-options1.46.1
  libboost-regex1.46.1 libboost-system1.46.1 libboost-thread1.46.1 libdb4.8
  libjpeg62 libmutter0 librpmio2 libstdc++6-4.6-dev libxfce4util4
  linux-headers-3.2.0-36 linux-headers-3.2.0-36-generic linux-headers-3.2.0-37
  linux-headers-3.2.0-37-generic mutter-common python-apport wine-gecko1.8
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ patch -p0 < rt5390sta-2.5.0.3-config.patch
patching file Makefile
Hunk #1 FAILED at 323.
Hunk #2 FAILED at 370.
2 out of 2 hunks FAILED -- saving rejects to file Makefile.rej
patching file os/linux/config.mk
Hunk #1 FAILED at 54.
Hunk #2 FAILED at 97.
2 out of 2 hunks FAILED -- saving rejects to file os/linux/config.mk.rej
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ patch -p0 < rt5390sta-2.5.0.3-WPA-mixed.patch
patching file common/cmm_wpa.c
Hunk #1 succeeded at 2471 (offset 20 lines).
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ patch -p0 < rt5390sta-2.5.0.3-convert-devicename-to-wlanX.patch
patching file include/rtmp_def.h
Hunk #1 FAILED at 1476.
1 out of 1 hunk FAILED -- saving rejects to file include/rtmp_def.h.rej
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ patch -p0 < rt5390sta-2.5.0.3-remove-potential-conflicts-with-rt2860sta.patch
patching file include/os/rt_drv.h
Hunk #1 FAILED at 55.
Hunk #2 succeeded at 893 (offset -17 lines).
1 out of 2 hunks FAILED -- saving rejects to file include/os/rt_drv.h.rej
patching file include/os/rt_linux.h
Hunk #1 FAILED at 123.
Hunk #2 succeeded at 1574 (offset -24 lines).
1 out of 2 hunks FAILED -- saving rejects to file include/os/rt_linux.h.rej
patching file include/os/rt_linux_cmm.h
Hunk #1 FAILED at 65.
Hunk #2 FAILED at 76.
2 out of 2 hunks FAILED -- saving rejects to file include/os/rt_linux_cmm.h.rej
patching file os/linux/pci_main_dev.c
Hunk #1 succeeded at 88 (offset 4 lines).
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ patch -p0 < rt5390sta-2.5.0.3-return_nonvoid_function.patch
can't find file to patch at input line 3
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|--- common/rt_ate.c.orig	2011-08-02 14:06:43.000000000 +0200
|+++ common/rt_ate.c	2011-08-02 14:07:22.000000000 +0200
--------------------------
File to patch: 
Skip this patch? [y] y
Skipping patch.
2 out of 2 hunks ignored
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ patch -p0 < rt5390sta-2.5.0.3-reduce_debug_output.patch
patching file include/os/rt_linux.h
Hunk #1 FAILED at 651.
1 out of 1 hunk FAILED -- saving rejects to file include/os/rt_linux.h.rej
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ patch -p0 < rt5390sta-2.5.0.3-remove_date_time.patch
patching file sta/sta_cfg.c
Hunk #1 succeeded at 5038 (offset 110 lines).
athlon@athlon:~/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO$ sudo su
root@athlon:/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO# make clean
cp -f os/linux/Makefile.clean os/linux/Makefile
make -C os/linux clean
make[1]: Entering directory `/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux'
rm -f ../../common/*.o
rm -f ../../common/.*.{cmd,flags,d}
rm -f ../../os/linux/*.{o,ko,mod.{o,c}}
rm -f ../../os/linux/.*.{cmd,flags,d}
rm -fr ../../os/linux/.tmp_versions
rm -f ../../os/linux/Module.symvers
rm -f ../../os/linux/Modules.symvers
rm -f ../../os/linux/Module.markers
rm -f ../../os/linux/modules.order
rm -f ../../chips/*.o
rm -f ../../chips/.*.{cmd,flags,d}
rm -f ../../ate/common/*.o
rm -f ../../ate/common/.*.{cmd,flags,d}
rm -f ../../ate/chips/*.o
rm -f ../../ate/chips/.*.{cmd,flags,d}
rm -f ../../sta/*.o
rm -f ../../sta/.*.{cmd,flags,d}
make[1]: Leaving directory `/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux'
rm -rf os/linux/Makefile
root@athlon:/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO# make
make -C tools
make[1]: Entering directory `/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/tools'
gcc -g bin2h.c -o bin2h
make[1]: Leaving directory `/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/tools'
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/tools/bin2h
cp -f os/linux/Makefile.6 /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/Makefile
make -C /lib/modules/3.5.0-23-generic/build SUBDIRS=/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux modules
make[1]: Entering directory `/usr/src/linux-headers-3.5.0-23-generic'
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/crypt_md5.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/crypt_sha2.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/crypt_hmac.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/crypt_aes.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/crypt_arc4.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/mlme.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/drs_grp.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_wep.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/action.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_data.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_init.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_init_inf.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_tkip.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_aes.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_sync.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/eeprom.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_sanity.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_info.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_cfg.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_wpa.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_radar.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/spectrum.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_timer.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rt_channel.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_profile.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_asic.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_asic.c: In function ‘AsicGetAutoAgcOffsetForTemperatureSensor’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_asic.c:1233:28: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_asic.c:1246:28: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_cmd.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_profile.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rtmp_chip.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/assoc.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/auth.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/auth_rsp.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sync.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sanity.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/rtmp_data.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/connect.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/wpa.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/ags.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c: In function ‘RTMPIoctlShow’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c:5041:13: warning: reading through null pointer (argument 5) [-Wformat]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c:5041:13: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘void *’ [-Wformat]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c:5041:13: warning: reading through null pointer (argument 6) [-Wformat]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c:5041:13: warning: format ‘%s’ expects argument of type ‘char *’, but argument 6 has type ‘void *’ [-Wformat]
In file included from /usr/src/linux-headers-3.5.0-23-generic/arch/x86/include/asm/uaccess.h:584:0,
                 from /usr/src/linux-headers-3.5.0-23-generic/arch/x86/include/asm/sections.h:5,
                 from /usr/src/linux-headers-3.5.0-23-generic/arch/x86/include/asm/hw_irq.h:26,
                 from include/linux/irq.h:362,
                 from /usr/src/linux-headers-3.5.0-23-generic/arch/x86/include/asm/hardirq.h:5,
                 from include/linux/hardirq.h:7,
                 from include/linux/interrupt.h:12,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/os/rt_linux.h:40,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_os.h:44,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_comm.h:69,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rt_config.h:33,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c:28:
In function ‘copy_from_user’,
    inlined from ‘RTMPSetInformation’ at /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c:1779:28:
/usr/src/linux-headers-3.5.0-23-generic/arch/x86/include/asm/uaccess_32.h:211:26: warning: call to ‘copy_from_user_overflow’ declared with attribute warning: copy_from_user() buffer size is not provably correct [enabled by default]
In function ‘copy_from_user’,
    inlined from ‘RTMPSetInformation’ at /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../sta/sta_cfg.c:2268:28:
/usr/src/linux-headers-3.5.0-23-generic/arch/x86/include/asm/uaccess_32.h:211:26: warning: call to ‘copy_from_user_overflow’ declared with attribute warning: copy_from_user() buffer size is not provably correct [enabled by default]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rt_os_util.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/sta_ioctl.o
In file included from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/os/rt_linux.h:53:0,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_os.h:44,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_comm.h:69,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/sta_ioctl.c:30:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/sta_ioctl.c: In function ‘rt_ioctl_giwscan’:
include/net/iw_handler.h:554:3: warning: array subscript is below array bounds [-Warray-bounds]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_linux.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_main_dev.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/ba_action.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rt_led.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c: In function ‘DefaultATEAsicAdjustTxPower’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:300:24: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c: In function ‘DefaultATETxPwrHandler’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:1402:25: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:1356:45: warning: unused variable ‘CfgOfTxPwrCtrlOverMAC’ [-Wunused-variable]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c: In function ‘ATESTART’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:1892:4: warning: overflow in implicit constant conversion [-Woverflow]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c: In function ‘ATESTOP’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:2163:2: warning: overflow in implicit constant conversion [-Woverflow]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c: In function ‘TXFRAME’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:2752:2: warning: overflow in implicit constant conversion [-Woverflow]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c: In function ‘RXFRAME’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:2901:2: warning: overflow in implicit constant conversion [-Woverflow]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c: In function ‘Default_Set_ATE_TX_FREQ_OFFSET_Proc’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/rt_ate.c:3695:13: warning: comparison of distinct pointer types lacks a cast [enabled by default]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_dfs.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_cs.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_mac_pci.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_mac_pci.c: In function ‘RT28xx_UpdateBeaconToAsic’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_mac_pci.c:1451:16: warning: unused variable ‘irqFlag’ [-Wunused-variable]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_mac_pci.c: In function ‘RtmpDrvPciMapSingle’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_mac_pci.c:2442:60: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_data_pci.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_data_pci.c: In function ‘RTMPFreeTXDUponTxDmaDone’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_data_pci.c:540:8: warning: unused variable ‘TXWISize’ [-Wunused-variable]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_data_pci.c: In function ‘RTMPHandleMgmtRingDmaDoneInterrupt’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/cmm_data_pci.c:882:8: warning: unused variable ‘TXWISize’ [-Wunused-variable]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_rbus_pci_drv.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_rbus_pci_drv.c: In function ‘RTMPInitPCIeDevice’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_rbus_pci_drv.c:1386:23: warning: unused variable ‘Index’ [-Wunused-variable]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c: In function ‘RtmpAsicSendCommandToMcu’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:621:4: warning: passing argument 3 of ‘pci_read_config_word’ from incompatible pointer type [enabled by default]
In file included from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/os/rt_linux.h:41:0,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_os.h:44,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_comm.h:69,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rt_config.h:33,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:28:
include/linux/pci.h:757:19: note: expected ‘u16 *’ but argument is of type ‘ULONG *’
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:627:4: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘ULONG’ [-Wformat]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:627:4: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘ULONG’ [-Wformat]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:641:4: warning: passing argument 3 of ‘pci_read_config_word’ from incompatible pointer type [enabled by default]
In file included from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/os/rt_linux.h:41:0,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_os.h:44,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rtmp_comm.h:69,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/include/rt_config.h:33,
                 from /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:28:
include/linux/pci.h:757:19: note: expected ‘u16 *’ but argument is of type ‘ULONG *’
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:650:4: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘ULONG’ [-Wformat]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rtmp_mcu.c:650:4: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘ULONG’ [-Wformat]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/ee_prom.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/ee_efuse.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/rt_rf.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt30xx.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt3090.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt33xx.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt33xx.c: In function ‘RT33xx_AsicTxAlcGetAutoAgcOffset’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt33xx.c:1199:24: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt3390.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt5390.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt5390.c: In function ‘RT5390_AsicTxAlcGetAutoAgcOffset’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../chips/rt5390.c:2756:25: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/chips/rt5390_ate.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/chips/rt30xx_ate.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../ate/common/ate_pci.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_pci_rbus.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/rt_rbus_pci_util.o
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/pci_main_dev.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/pci_main_dev.c: In function ‘rt2860_probe’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../os/linux/pci_main_dev.c:332:13: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
  CC [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.o
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.c: In function ‘FrequencyCalibration’:
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.c:197:18: warning: comparison of distinct pointer types lacks a cast [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.c:210:18: warning: comparison of distinct pointer types lacks a cast [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.c:226:18: warning: comparison of distinct pointer types lacks a cast [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.c:251:18: warning: comparison of distinct pointer types lacks a cast [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.c:264:18: warning: comparison of distinct pointer types lacks a cast [enabled by default]
/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/../../common/frq_cal.c:280:18: warning: comparison of distinct pointer types lacks a cast [enabled by default]
  LD [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/rt5390sta.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/rt5390sta.mod.o
  LD [M]  /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/rt5390sta.ko
make[1]: Leaving directory `/usr/src/linux-headers-3.5.0-23-generic'
cp -f /home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/os/linux/rt5390sta.ko /tftpboot
root@athlon:/home/athlon/2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO# 
I presume the "make" is a success maybe as it didn't write any error. So I continued with the "make install" and the rest of the command line. Hopefully this will work.
User avatar
jungle_boy
Level 7
Level 7
Posts: 1812
Joined: Thu Aug 19, 2010 2:51 pm
Location: Amazon Rainforest

Re: Hidden Location of Wireless option MInt 14

Post by jungle_boy »

I think that LM13 is better than LM 14, because it have some bugs.

I think is better a fresh installation.
Samsung Odyssey, Octa-core, i5 9300H, Geforce GTX 1650, 16GB RAM, SSD SAMSUNG NVMe 500GB
LM 21 Cinnamon
erie88
Level 1
Level 1
Posts: 29
Joined: Mon Dec 31, 2012 11:24 am

Re: Hidden Location of Wireless option MInt 14

Post by erie88 »

I have just rebooted and it is still the same. Anyway, thank you for your help.
User avatar
jungle_boy
Level 7
Level 7
Posts: 1812
Joined: Thu Aug 19, 2010 2:51 pm
Location: Amazon Rainforest

Re: Hidden Location of Wireless option MInt 14

Post by jungle_boy »

It is necessary to clean older installations.

In a terminal:

Code: Select all

sudo dkms remove -m Ralink_5390sta -v 2.5.0.3 --all
sudo rm -r /var/lib/dkms/Ralink_5390sta/2.5.0.3 
and then,

Code: Select all

sudo apt-get install --reinstall linux-headers-$(uname -r) build-essential dkms patch fakeroot unzip
wget http://media.cdn.ubuntu-de.org/forum/attachments/35/07/3208747-angepasster-2011_0406_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO.zip
unzip 3208747-angepasster-2011_0406_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO.zip
cd angepasster-2011_0406_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/
sudo make
sudo make install
sudo modprobe -v rt5390sta
sudo depmod -a
sudo update-initramfs -u 
Samsung Odyssey, Octa-core, i5 9300H, Geforce GTX 1650, 16GB RAM, SSD SAMSUNG NVMe 500GB
LM 21 Cinnamon
erie88
Level 1
Level 1
Posts: 29
Joined: Mon Dec 31, 2012 11:24 am

Re: Hidden Location of Wireless option MInt 14

Post by erie88 »

Tried to clean older installations and it give error:

Code: Select all

athlon@athlon:~$ sudo dkms remove -m Ralink_5390sta -v 2.5.0.3 --all
[sudo] password for athlon: 
Error! There are no instances of module: Ralink_5390sta
2.5.0.3 located in the DKMS tree.
So searching on Google how to removes driver modules, I followed this tutorial here https://help.ubuntu.com/community/WifiD ... enda_W311M to remove the previous rt5390 modules.
Open the modules list

Code: Select all

sudo gedit /etc/modules
and delete "rt53xxsta" from the list. Save and close.

Unload the rt53xxsta module

Code: Select all

sudo modprobe -r rt53xxsta
continue with removing the rt53xx directory folder with

Code: Select all

sudo rm -rf /path/to/directory/
I don't know if I'm allowed to remove that following folder with "rm -rf" but I did it anyway as normal deleting gave me "access permission denied". Be very carefull.

Reboot...

I also tried checking the /var/lib/NetworkManager/NetworkManager.state.

Stop the network manager :

Code: Select all

sudo stop network-manager

Code: Select all

sudo gedit /var/lib/NetworkManager/NetworkManager.state

Code: Select all

[main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true
I found that my "wirelessEnabled=false" so I changed it to "true". And start it again once done.. Or reboot

and then reinstalling the new driver by following the command line jungle_boy has posted. Yes, it works now. The wireless option is now available. really big thank you, Jungle_boy.
Last edited by erie88 on Mon Feb 04, 2013 12:38 pm, edited 1 time in total.
User avatar
jungle_boy
Level 7
Level 7
Posts: 1812
Joined: Thu Aug 19, 2010 2:51 pm
Location: Amazon Rainforest

Re: Hidden Location of Wireless option MInt 14

Post by jungle_boy »

Ok!

You are welcome!

Congratulations!

Please, edit the subject of your first post and add [SOLVED], so who has the same problem will know how to solve it.
Samsung Odyssey, Octa-core, i5 9300H, Geforce GTX 1650, 16GB RAM, SSD SAMSUNG NVMe 500GB
LM 21 Cinnamon
erie88
Level 1
Level 1
Posts: 29
Joined: Mon Dec 31, 2012 11:24 am

Re: [SOLVED] Hidden Location of Wireless option MInt 14

Post by erie88 »

The wireless disappear again after updating via synaptic package.
User avatar
jungle_boy
Level 7
Level 7
Posts: 1812
Joined: Thu Aug 19, 2010 2:51 pm
Location: Amazon Rainforest

Re: [SOLVED] Hidden Location of Wireless option MInt 14

Post by jungle_boy »

When everything is working fine, no need to update anything...

Using mintupdate, don't update level3, because LM developers assume that works, but they are not tested and does not always work, sometimes breaks the system.
Samsung Odyssey, Octa-core, i5 9300H, Geforce GTX 1650, 16GB RAM, SSD SAMSUNG NVMe 500GB
LM 21 Cinnamon
erie88
Level 1
Level 1
Posts: 29
Joined: Mon Dec 31, 2012 11:24 am

Re: [SOLVED] Hidden Location of Wireless option MInt 14

Post by erie88 »

which one do you suggest or at least more safer when updating "via synaptic" or "via update manager"? or those two are the same? I don't want to have re-install wireless modules everytime I update something especially like kernels and such.
User avatar
jungle_boy
Level 7
Level 7
Posts: 1812
Joined: Thu Aug 19, 2010 2:51 pm
Location: Amazon Rainforest

Re: [SOLVED] Hidden Location of Wireless option MInt 14

Post by jungle_boy »

I think that mintupdate is better than synaptic because you can mark only level 1 and level 2 to update, unmark level3.
Samsung Odyssey, Octa-core, i5 9300H, Geforce GTX 1650, 16GB RAM, SSD SAMSUNG NVMe 500GB
LM 21 Cinnamon
Locked

Return to “Cinnamon”