[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

/fglt/ - Friendly GNU/Linux Thread

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 33
Thread images: 5

File: Samira_Asgari.png (203KB, 987x997px) Image search: [Google]
Samira_Asgari.png
203KB, 987x997px
Welcome to /fglt/ - Friendly GNU/Linux Thread.
Users of all levels are welcome to ask questions about GNU/Linux and share their experiences.

*** Please be civil, notice the "Friendly" in every Friendly GNU/Linux Thread. ***

Before asking for help, please check our list of resources[*].

If you would like to try out GNU/Linux you can do one of the following:
0) Install a GNU/Linux distribution of your choice in a Virtual Machine.
1) Use a live image and to boot directly into the GNU/Linux distribution without installing anything.
2) Dual boot the GNU/Linux distribution of your choice along with Windows or Mac.
3) Go balls deep and replace everything with GNU/Linux.

* Resources:
$ man <insert command here>
$ info <insert command here>
$ help <insert command here>

Your friendly neighborhood search engine:
Try to use a search engine that respects your privacy such as qwant, searx, ixquick or startpage.

Check the Wikis (Most troubleshoots work for all distros.)
https://wiki.archlinux.org
https://wiki.gentoo.org

What distro should you choose?
https://wiki.installgentoo.com/index.php/Babbies_First_Linux

Break out of the botnet:
https://prism-break.org/en/categories/gnu-linux/

Learn more about Free Software:
https://www.gnu.org

Try GNU GuixSD:
https://www.gnu.org/software/guix/

/fglt/'s website:
http://fglt.nl/

/fglt/'s copypasta collection:
https://p.teknik.io/oJR7K

/t/'s GNU/Linux Games:
Part II: >>>/t/749768
Part I: http://archive.loveisover.me/t/post/707928/

/t/'s GNU/Linux Training Videos:
>>>/t/713097

/wg/'s GNU/Linux Wallpapers:
Part IV: >>>/wg/6828207
Part III: https://archive.nyafuu.org/wg/thread/6785580/
Part II: https://archive.nyafuu.org/wg/thread/6767536/
Part I: https://archive.nyafuu.org/wg/thread/6743571/

Previous thread >>58700658
>>
you fageets really rush to make these
>>
Still looking for help.

>fresh Fedora 25 install
>everything smooth and happy that wayland werked on my RX 480
>update and reboot
>stuck on boot

I can't boot it at all, not even with the rescue option. What the actual fuck is wrong with Fedora?

I really wanted to use it, but goddamn.
>>
>>58712582
Its the freetards so they have to force gnu on the people in the thread
>>
File: 1466305933331.jpg (366KB, 1464x1665px) Image search: [Google]
1466305933331.jpg
366KB, 1464x1665px
>>58712564
>all that bullshit propaganda of a buttmad terrorist...
stay mad mohammed!
>>
File: g'd.png (166KB, 480x411px) Image search: [Google]
g'd.png
166KB, 480x411px
>>58712867
Pretty sure there's an entire containment board just for your kind.
>>
I am having trouble with my transmission daemon. Every download I add seems to fail with a "permission failed" error.

I don't understand what's going on since I've chmoded full permissions to the transmission daemon user/group. I have no idea why its complaining.

I'm downloading to a USB drive. Could that be an issue?
>>
File: red_pill.jpg (46KB, 572x694px) Image search: [Google]
red_pill.jpg
46KB, 572x694px
>>58712867
I liked old /pol/ better...
>>
Linux babby here, can someone tell me why spotify and other programs in general seem to be more responsive/less laggy on a linux based os compared to windows?
>>
>>58712947
what happens if you don't download to a usb
>>
>>58712958
GNU/Linux*
>>
>>58712981
GNU+Linux*
>>
where do i make bash aliases?
i tried using .bashrc and making a .bash_aliases but my term didn't recognize the command from either
>>
>>58713001
did you source .bashrc after creating the alias?
>>
>>58713014
it turns out i'm just stupid and had a hyphen in the alias
i should try to work things out on my own before i post
thanks, though
>>
>>58712960
It works in the default /var/lib/..... folder.
>>
You don't need NetworkManager to babysit you, all you need is wpa_supplicant, iw for discovering networks and dhcpcd (or dhclient) to acquire your IP address.
It's quite a simple config, here's how it looks
network={
ssid="network1"
psk="pass1"
priority=3
}
network={
ssid="network2"
psk="pass2"
priority=2
}
network={
ssid="network3"
psk="pass3"
priority=2
}

The greater the priority integer is, the higher the prioity for that network is.
If networks have the same priority, wpa_supplicant connects to the one with the stronger signal.
If, say network3 and network2 are your friends' home and your home networks (respectively), and you're at your friends', when you get home wpa_supplicant will automatically disconnect you from network3 and connect
you to network2.
And maybe network1 is your phone's wifi hotspot (when you need a second IP for shitposting), because it has the highest priority you will connect to your phone's network first and when you turn off the hotspot,
you'll auto connect to your home network.
It won't auto connect you to a network of higher priority if you're already connected to a network of lower priority, so you'll need to restart the service for that.
>>
>>58713078 cont.
If you're using systemd, all you need to do is copy the systemd unit file from
/usr/lib/systemd/system/[email protected]

to
/etc/systemd/system

and change this line
ExecStart=/usr/bin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant-%I.conf -i%I

to
ExecStart=/usr/bin/wpa_supplicant -c/etc/wpa_supplicant.conf -i%I

because you'll probably use just that one config.
After that, enable wpa_supplicant service and the dhcpcd service like so
# systemctl enable wpa_supplicant@wlp3s0

# systemctl enable dhcpcd@wlp3s0

where wlp3s0 is my interface name, yours might be wlan0 for example, or something different.

You can always edit the config and restart the wpa_supplicant@<whatever> service as needed like so
# systemctl restart wpa_supplicant@wlp3s0

if you want to add a new network, for example.

References
[1.] https://wiki.archlinux.org/index.php/Network_configuration
[2.] https://wiki.archlinux.org/index.php/Wireless_network_configuration
[3.] https://wiki.archlinux.org/index.php/Systemd
>>
>>58713078
>>58713085
what color ribbon do you want?
>>
>>58713085
>>58713078
for some reason dhcpcd is slow as fuck on my system, mainly I mean it's delaying my boot a lot
using systemd-networkd.service seems to be much better https://wiki.archlinux.org/index.php/systemd-networkd
>>
>>58712564
>>>/pol/
>>
File: orig_221553.png (109KB, 1920x1080px) Image search: [Google]
orig_221553.png
109KB, 1920x1080px
I'm a Windows user who wants to install linux and use it as my main OS.

I want to edit the OS to have custom messages which includes and text boxes.

I also want the desktop itself to be a black screen / terminal, while still having an aero theme bar at the top, )pic related except bigger text and smaller screen, the type of colour scheme I want). I want to be able to click a compiller launch button on the aero theme and it pop up as 1/2 of the desktop as split screen because I want to learn python, and I want the left screen to be the terminal for getting used to the shell commands and organizing stuff.

I also want to install a custom shell.

How easy are these things to do? If you could also recommend appropriate window managers / packages or custom code to do this, I would appreciate it.
>>
>>58713103
Likely something else depends on dhcpcd having a connection and causes everything to wait until dhcpcd to connect
>>
>>58713176
>which includes unicode and text boxes*
>>
>>58713139
Pretty sure you meant to quote this guy >>58712867
>>
>>58713193
possibly
why is systemd-networkd fast though?
>>
>>58713224
no idea. probably spools when systemd is called.

Or dhcpcd is deliberately stalled to encourage users to choose networkd
>>
>>58713212
Is this supposed to be funny? Because it isn't.
>>
>>58713368
Delusional liberals are funny.

>She's Muslim. She's not welcome.

Exactly. So?
>>
>>58713212
heh
>>
>>58714184
H E H
E
H
>>
>>58714193
H E H
E H E
H E H
>>
>>58712597
Fuck off, Microsuck shill.
Thread posts: 33
Thread images: 5


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.