User:Devon: Difference between revisions
No edit summary |
|||
Line 14: | Line 14: | ||
=== samsung-lt023g === | === samsung-lt023g === | ||
==== Wifi Workaround ==== | ==== Wifi Workaround ==== | ||
''My user page is under | Apparently wifi only works with fixed ip address for me. Here's a guide for using a fixed ip address: | ||
First, use nmtui to edit a connection to use fixed ip address. | |||
<syntaxhighlight lang="shell-session"> | |||
# nmtui | |||
</syntaxhighlight> | |||
Then check if you have a inet entry on your <code>mlan0</code>, if not add it by entering the command. | |||
<syntaxhighlight lang="shell-session"> | |||
# ip addr add 192.168.1.100/24 dev mlan0 | |||
</syntaxhighlight> | |||
Replace <code>192.168.1.100</code> and <code>24</code> with your ip details. Then you should have a internet connection, to check if you have internet try. | |||
<syntaxhighlight lang="shell-session"> | |||
$ ping google.com -c 4 | |||
</syntaxhighlight> | |||
The result should be 4 packets transmitted, 4 received, and 0% packet loss. If not then you should try again. | |||
{{note|''My user page is under constrution! I’m in the process of adding more details, so check back later for the finished version.''}} |
Revision as of 04:59, 23 December 2024
About Me
I am a tech enthusiast with a passion for tinkering with Linux-based devices. I enjoy giving new life to old smartphones, tablets, and routers by installing linux-based operating system like PostmarketOS. I like to repurpose outdated hardware. I love experimenting with custom firmware and exploring ways to unlock the full potential of older devices.
Owns Devices
Device | Notes |
---|---|
Huawei Ascend D1 Quad XL (huawei-u9510e) | Trying to port PostmarketOS into it (Slow Progress) |
Lenovo Vibe P1m (lenovo-p1m) | |
Samsung Galaxy Tab 3 7.0 (samsung-lt023g) | Works great. Wifi works with fixed ip address |
Documentation
samsung-lt023g
Wifi Workaround
Apparently wifi only works with fixed ip address for me. Here's a guide for using a fixed ip address:
First, use nmtui to edit a connection to use fixed ip address.
# nmtui
Then check if you have a inet entry on your mlan0
, if not add it by entering the command.
# ip addr add 192.168.1.100/24 dev mlan0
Replace 192.168.1.100
and 24
with your ip details. Then you should have a internet connection, to check if you have internet try.
$ ping google.com -c 4
The result should be 4 packets transmitted, 4 received, and 0% packet loss. If not then you should try again.
My user page is under constrution! I’m in the process of adding more details, so check back later for the finished version. |