/g/ - Technology

install openbsd

importent thread >>>/meta/3481

[Make a Post]
[X]





Anti-Bloatware Thread Nanonymous No.174 [D][U][F][S][L][A][C] >>941
File: fc743f00abf969ec520e2acf7ebf30f57d5751805af15a3484911adf80f02a7f.jpg (dl) (106.68 KiB)

Anti-bloatware threads on other imageboards often result in people saying that anything TUI = gud, but that's clearly untrue; for example, the following I consider bloatware:
>ncurses (supports 30 year old hardware which doesn't exist)
>network managers (hundreds of thousands of lines of code to do something which can be done with a simple script)
>apache (giant blob of modules and extensions)
>emacs (includes everything by default)
>vim (hundreds of thousands of lines of code...)
Discuss ITT the alternatives to these pieces of bloatware. I'm genuinely curious to see what you guys come up with.

Nanonymous No.177 [D][U][F] >>178 >>941 >>4218
File: 68d5677350dc7359e5438b36d6d2daf2f77a4e4b57ed54f9ead75b26bea3cc80.png (dl) (837.65 KiB)

kakoune or vis as alternatives to vim, much smaller. If you really need those plugins I guess it's neovim.

To baka to answer the rest.
I use wpa_suppliclant (and dhcpcd) for network, but it seems to be roughly 300k LOC. Can you tell me more about this simple script you use?

(btw when using LOC as an indicator of complexity don't use openhub it is unreliable; just get the source code and do "find . -name "*.c" -o -name "*.h" | xargs wc -l")

Nanonymous No.178 [D]

>>177
>simple script you use
It's basically something that runs ifconfig every 5 seconds and disables the iwn0 (OpenBSD wireless) interface when the ethernet is connected.
Sure, you can do way more complex things with a "real" network manager, but for me at least I don't need those features.
Also I don't think wpa_supplicant would be classified as a network manager, because a network manager runs on top of wpa_supplicant. Maybe my terminology is wrong, though.

Nanonymous No.179 [D][U][F] >>180
File: e18c2e1081698d1c0455fdf2853aed1b6ecb9ecab54942664b979990ead0e404.jpg (dl) (3.11 MiB)

seems I need wpa_sup for wifi password because of wpa authentication so I think I will stick with it for now.



Nanonymous No.180 [D]

>>179
yeah, there's no alternative to wpa_supplicant that I know of... too bad the only software which allows connection to WPA2 networks is an undocumented piece of shit with bad code

cocks Nanonymous No.181 [D][U][F] >>936 >>1507
File: 758a3c69060828dc53c5821de0aef34df6ba6379d8ffd2368babbe495f0fe80f.png (dl) (1.18 MiB)

I think there is no need for filemanager when one has command line. A couple examples of how TUI = gud is wrong is Ranger and Vifm, about 50k and 80k LOC very big and most if not all of it is stuff you can do with command line and shell scripts.

The only thing I really need is the navigating and selecting files to copy to clipboard since names can be long and tiring to type for many files. For this I use nnn a very small filebrowser that is only 1-2k LOC. I also use it for selectively viewing and selecting many video files.

For images I want thumbnails so I use sxiv imageviewer which using it's keyhandler allows running any command on the selected images as well as copy to clipboard for general use.

nnn is not ideal though, it still has some features that are unneeded because of commandline; it's selection is not as flexible as rangers and does not highlight files though it is usable. I would also like if nnn was more general so it could be used not just on directories but on files. Example I could pipe ls *webm | nnn -l and view only the webms if it worked on files. Perhaps could take it even further and have nnn work on any text given predefined behavior. Would also be nice if nnn had something like keyhandler for maximum flexibility.

Nanonymous No.936 [D][U][F]
File: f883c9e5bf9c9d25749110dca3a9b1de7a37bc32d179f577469866093859b230.jpg (dl) (413.96 KiB)

>tfw mg lacks region highlighting, vertical splitting and doesn't even has C-u shell-command-on-region or customizable tab width
Does anyone know the pain of using GNU Emacs and hating Lisp? It took me something like one hour to make:

(defun sed-on-region (b e script)
"Run a sed script on a region"
(interactive "r\nsSed script on region: ")
(call-process-region b e "sed" t t t "-E" "--" script))
(global-set-key (kbd "C-c C-e") 'sed-on-region)
>>181
Noone said "TUI = gud". What's true is TUI > GUI almost all the time.

Guess I'll post cute girls too.

Nanonymous No.937 [D] >>943 >>4078

>using GNU emacs and hating Lisp
what's the fucking point just use neovim and redefine all the keybindings to what you want, which isn't hard and takes half an hour in vimscript.

Nanonymous No.941 [D] >>942 >>944 >>1178

I'll add
>webkit/webengine browsers
>thinking surf, qutebrowser, luakit, etc. are minimalist
this shit gives me real cancer. I currently use firefox only when I need to do something with javascript but I use w3m or graphical links for anything else. When I finish college I'll fucking uninstall firefox and will never look back or install a "minimal" webkit browser just to shit post on 4chan.

>>174
>vim
depends how you compile. check vim-tiny on debian. It's much similar to vi while having good features such as unlimited back and forward.
>apache
yea, use quark for personal/static sites, and nginx if you need server side functionality (which you shouldn't need for personal sites/blogs)
>network managers
yea, use wpa_supplicant. wpa_cli for interacting with it.
>emacs
lol obviously, no need to point it out.
>ncurses
not sure about it. what is the alternative? there're things I wouldn't use plain terminal for. Do you really thing going more minimalist than mutt for an email client is viable?

>>177
>kakoune or vis
they are still pretty hefty and you don't need to stop using vim to be minimalist. see my response above.



Nanonymous No.942 [D] >>2018

>>941
>ncurses
Personally I think a fork of ncurses removing support for anything other than the standard VT100-compatible terminals is the best solution. All the old cruft needs to be purged.

Nanonymous No.943 [D] >>945

>>937
Are you retarded? I don't want your shitty modal editor.

Nanonymous No.944 [D]

>>941
There's slang, netbsd-curses and just reading terminfo like an autist (not recommended, ncurses really optimizes screen repaint).

Nanonymous No.945 [D] >>958

>>943
>hurr muh vi always modal!!
You can configure neovim to be non-modal if you really want the inferior editing style.
>hurr modal editing bad
have fun with your arthritis, Ecraps user.

Nanonymous No.958 [D][U][F] >>959 >>1178
File: b61998a74acf1e4ba42757dac7bdefbf0383b047ac7ca6fd492e5970bf0236a6.webm (dl) (3.17 MiB)

>>945
Daily reminder:
>I wish we hadn't used all the keys on the keyboard. I think one of the interesting things is that vi is really a mode-based editor. I think as mode-based editors go, it's pretty good. One of the good things about EMACS, though, is its programmability and the modelessness. Those are two ideas which never occurred to me. I also wasn't very good at optimizing code when I wrote vi. I think the redisplay module of the editor is almost intractable. It does a really good job for what it does, but when you're writing programs as you're learning... That's why I stopped working on it.
t. Bill Joy, creator of vi

Nanonymous No.959 [D] >>965

>>958
That's why neovim is better than vi. Or use busybox vi if you don't need muh advanced features. Busybox vi is extremely fast and no-frills, although I haven't yet looked at the source code.

Nanonymous No.965 [D] >>1171

>>959
Let me narrow it for you.
>One of the good things about EMACS, though, is [...] the modelessness

Nanonymous No.1171 [D]

>>965
Enjoy your bloat. Busybox vi is minimal without sacrificing many features. This is an anti-bloatware thread and you mention Peemax? Disgusting.

Nanonymous No.1178 [D] >>1179

>>941
ncurses alternative is plain ANSI/VT100 codes. You can get 90% of what most TUIs need using just CSIx;yH.
>>958
Man, someone oughta create a new version of vi that improves it.

Nanonymous No.1179 [D] >>1185

>>1178
I tried creating a tui alternative to curses. What really killed it was handling user keypresses: all the special keys were different between the tty and terminal emulators, and parsing them was difficult.

Nanonymous No.1185 [D]

>>1179
Well, keyboard characters and control codes will always work fine, so you could limit yourself to those. You could probably tack on arrow keys too, those are fairly standard. You only really have difficulty when you get into complex modifiers, like alt+up.


Nanonymous No.1507 [D] >>2399

>>181
>can have thumbnails for not only images but also videos, pdfs and shit and even uncommon formats like .blend
>with intuitive ui, zero learning curve
>all out of the box
<chooses to spend his time learning some unpolished shit because it has less lines of code


Nanonymous No.1746 [D] >>1749 >>2389

What are some halal GUI framework? Qt and gtk obviously haram. What about fltk?

Nanonymous No.1749 [D] >>1752

>>1746
For you my dear islamic friend, I would recommend Windows 10.

Nanonymous No.1752 [D]

>>1749
Windows 10 is made by pigs though. Not sure if Halal.

Nanonymous No.2018 [D]

>>942
There is pdcurses.

Nanonymous No.2389 [D]

>>1746
>fltk
solid choice. nowadays even Tk looks "lightweight", though.


Nanonymous No.2399 [D] >>2400 >>2425

>>1507
>can have blazing fast system which runs on low cost hardware
>with flexible ui, big learning curve to filter out normalfags
>all with just 30 minutes of installation time
<chooses to spend his time waiting for bloat and spyware to finish loading, just because it's shiny and has animations

Nanonymous No.2400 [D][U][F]
File: ba115e1bd6a3e52ca688c9efd4a7c9c0c29463290c5d23add320800d776b0495.jpg (dl) (125.91 KiB)

>>2399
>chooses to spend his time waiting for bloat and spyware to finish loading, just because it's shiny and has animations
it's all about making excuses for being a normalfag while also being offended when called out for being one. this is The Way of the NPC.

Nanonymous No.2408 [D] >>2411

>blazing fast
>admits the learning curve is big hence admits he has to spend time learning

>30 minutes
You kidding? No distro takes that long to install.

>bloat and spyware to finish loading, just because it's shiny and has animations
>thunar
>so bloatware
>such spyware
>so animation

Nanonymous No.2411 [D] >>2425

>>2408
>admits the learning curve is big
<Waah I can only do things that are easy, because I am retarded
>No distro takes that long to install
I am talking about OpenBSD, you faggot. Time spent learning how the disk devices etc. work is also included in that. If you are an experienced OpenBSD user, it's only going to take 10 minutes or less.
>GUI software
>not bloat

Nanonymous No.2425 [D] >>2426

>>2399
>>filter out normalfags
Why would you want to though?
>>2411
>>Waah I can only do things that are easy, because I am retarded
I prefer doing things that are easy.
If something is harder but there are some benefits to it, I do it. Like, OpenBSD takes some time to learn, but has advantages. I do take the time to learn it. But if something is harder just for the sake of being harder, like Gentoo, than no thanks, I'll leave that for the retarded.

>I am talking about OpenBSD, you faggot.
Why the fuck are you though? My post was about file managers. That was somewhat out of context, you know.
>all gui is bloat
Ah, I see, we are on that level of autism.

Nanonymous No.2426 [D] >>2427 >>2431

>>2425
>Why would you want to filter out normalfags
because when too many normalfags use software, they demand adding features which they think add "convenience" but in reality just add extra bloat and crap to the software. Normalfags do not understand technology and should not have a role in its design.
>My post was about file managers
you did say something about distros, though.
>we are on that level of autism
ok, let me reduce my autism levels a bit. gui is only useful for viewing and editing images and video. and maybe for web browsing (although websites which absolutely require a gui are bloat).

Nanonymous No.2427 [D][U][F] >>2428 >>2431 >>2437 >>2443
File: 142f5ac4559d3d2cc705c15659e2826e6d430afa80da63a348fdc2f282b22c4b.png (dl) (513.31 KiB)

>>2426
You do realise that the more popular a piece of software is the more likely its bugs and vulnerabilities are to be
discovered and fixed, don't you?
>because when too many normalfags use software, they demand adding features
Nah, it's the other way around. Software gets features and attracts people (it also needs marketing to be really popular of course). Not like Windows has all the spying crap because the users demanded it. Not like GNOME or KDE is the way it is because that's what the users demanded.

>gui is only useful for viewing and editing images and video
Is this really all you could come up with? No 3D modelling, no CAD and shits. Never done any actual work on a PC have you

Nanonymous No.2428 [D] >>2429 >>2433

>>2427
>the more popular a piece of software is the more likely its bugs and vulnerabilities are to be discovered and fixed
Yes. Microsoft Windies is popular. Microsoft Wangles is very secure.

Nanonymous No.2429 [D] >>2430

>>2428
go back to pigchan, pig
We were talking about libre software. If you would said the same about openssl there could be a further debate, but no, you are too retarded for comfy conversations.

Nanonymous No.2430 [D] >>2432 >>2437

>>2429
>pointing out that wangblows is insecure means you're a pigchanner
hey there bill, how's the weather in redmond

Nanonymous No.2431 [D]

>>2426
>>2427
>muh gui is for normies
yeah easy=normie, internet is also for normies

Nanonymous No.2432 [D][U][F] >>3504
File: b7de0bdb11913642dd9703dbb67df0e39227ae3e09e9389d80b0d7c5e8d1e347.jpg (dl) (185.30 KiB)

>>2430
>pointing out that wangblows is insecure in conversation where windows doesn't exist and can't be possibly counted as software means you're a pigchanner
fixed that for you
Also pointing out common factual knowledge does no good to anybody, you may be a hero on reddit, but certainly you won't get upboats here.
Not nice.

Nanonymous No.2433 [D] >>2436

>>2428
OpenBSD only implemented package signing circa 2014. Same for Arch. Gentoo only implemented those in 2018.
Not like 99.99% windows users aren't fucking morons downloading random executables from the internet and running those as privileged user.
Debian had that since 2003.

Nanonymous No.2436 [D]

>>2433
Too bad about the SysD & CoC.

Nanonymous No.2437 [D] >>2438

>>2427
Displaying mathematical equations, graphing and plotting, simulation (from weather to milling), video gaymen
>>2430
More users on windows does not translate to more eyes on the source code fag

Nanonymous No.2438 [D] >>2439

>>2437
>Displaying mathematical equations, graphing and plotting, simulation (from weather to milling), video gaymen
a gui isn't a requirement for any of these. and some applications (eg, SCADA dashboards, many games) would be better served by full screen graphical display modes sans wm, but these aren't all that common nowadays.

Nanonymous No.2439 [D] >>2440

>>2438
>graphical user interface
GUI doesn't mean windowing. It literally means "not a cli/tui".

Nanonymous No.2440 [D]

>>2439
>It literally means "not a cli/tui".
Maybe this distinction isn't even useful any longer, if it ever was. Project Oberon is well known for its tui, which is well ensconced in a gui just like the LispMs of old were. And plenty of gui apps are as much text-based as they are graphical. We should just castigate bloated, perenially broken shit made for NPCs and get on with life.

Nanonymous No.2443 [D][U][F] >>2445 >>2448
File: 34cb17c168c7a017b2b55b4aaf3a3bf429adc8c4263bdb26c658eeaed1c71287.jpg (dl) (7.51 KiB)

>>2427
Popularity has no correlation with bugs or lack thereof.

Nanonymous No.2445 [D]

>>2443
Your mom is a fat pig, I am the queen of England, this board is operated by CIAniggers.

Nanonymous No.2448 [D] >>2532

>>2443
>Windows
>popular
>fuckton if not more viruses and exploits, antivirus is essential

>GNU/Linux
>niche in comparison to Windows
>small amount of viruses and exploits, with a bit of common sense antivirus is not needed
think again


Nanonymous No.2515 [D] >>2536

linux has a fuckton amount of exploits the moment you use a web browser or pretty much anything that relies on X11

Nanonymous No.2531 [D] >>2534

>the people who care about minimalism don't care about the software you use
feels bad

What's the most feature rich minimal software you know of, besides an operating system?

Nanonymous No.2532 [D]

>>2448
That is not an induction of less bugs. Windows is simply a higher value target for attackers. You get more pwns for the amount of effort needed to find security bugs.
That's not to say you are incorrect, your reply doesn't disprove the person you replied to

Nanonymous No.2534 [D]

>>2531
>SQLite
>Lua
>cURL
>most of busybox
>w3m

Nanonymous No.2536 [D][U][F] >>4016
File: 7a00c3f579cd130ed289b53e526492c07494167734459bd621b94f13229ad9d5.jpg (dl) (9.92 KiB)

>>2515
>fuckton of exploits
Proofs? I haven't heard of a single person using a home linux distro that suffered from pop-ups, much less a rootkit.

Nanonymous No.2537 [D] >>2538 >>2542 >>2544

I'm thinking of trying out Devuan. Does anyone have experience setting it up? I'm not l337 enough to install Arch or Gentoo and I need some hand-holding (lewdness encouraged) to install my OS.
As far as anti-bloatware, the best solution to bloatware is to make the documentation better for command line tools. the manpages are just awful and not everyone knows to read the million lines of GNU manual before installing ubuntu. There needs to be a "crash course" type of manual for technically minded people, with longer explanations for things.
With the coreutils and the stuff bundled in most distros, you can do pretty much anything in CLI, but there's a real sense of "fuck you if you don't know all the ins and outs of regular expressions."

Nanonymous No.2538 [D]

>>2537
I haven't used devuan specifically, but I have used debian before it got systemdicked (wheezy). It's a reasonable system but it has a lot of bloat by default. For minimalism, Alpine Linux, NetBSD or OpenBSD are better. Try each one, perhaps in a VM, and find the one you like best.

Nanonymous No.2542 [D]

>>2537
If the installation us just like Debian, its easier than Windows.
Do you need disk partitioning, or do you want the entire storage disk drive to be used for Devuan (and empty storage ready for you to fill when using Devuan)? If you need preserving or dualbooting, read tutorials on installing Devuan with partitioning (can be intimidating and you risk overwriting the old data on the hard drive)
There should be a tutorial or two, yeah?

Nanonymous No.2544 [D] >>2545 >>2546

>>2537
OpenBSD has a simple installation process and better manpages than any other operating system.

Nanonymous No.2545 [D] >>2548

>>2544
Agreed. In my opinion, the only problems of OpenBSD are out-of-date packages (not a big deal, but some people might care, and it improves the reliability anyway) and low popularity (which isn't OpenBSD's fault).
Alpine Linux is the best linux distro, if you still want/need the CoCkernel for any reason. It uses musl and busybox, which greatly reduces its dependency on cancerous GNU shitware.

Nanonymous No.2546 [D] >>2547

>>2544
(Not Devuan-anon)
Yes, but it doesn't support some programs I need and I only have one device for a while, so its not an option.
Also, the maintainers only audit the bits they like, from what I have seen. I guess that applies to other OSs as well though.
How is updating and installing packages? How beginner friendly is OpenBSD? It seems like there is a fair bit of required reading or assumed knowledge and only then the man pages become great.

Nanonymous No.2547 [D]

>>2546
Linux -> OpenBSD Quick Start Guide
by Anon

Devices
When you partition a data or OS drive you will need to deal with devices. On Linux you have /dev/sda for the entire disk, and /dev/sda1 /dev/sda2 etc... for partitions on that disk.
On OpenBSD, however, you have /dev/sd0a, /dev/sd0b, /dev/sd0c etc. and these do not necessarily refer to the entire disk. The letter after the drive number refers to the disklabel entry, which can be edited by using the disklabel(8) tool, which allows you to edit the partition entries with a text editor:

# disklabel -e sd0

Usually, the disklabel entry sd0c (accessed from /dev/sd0c) is used to refer to the entire disk, although this is not the case if you edit your disklabel to behave otherwise. For example, if you want to copy a raw filesystem image to your second hard disk:

# dd if=fs.img of=/dev/sd1c bs=4M

To create a filesystem on any partition, use the newfs(8) command. There are also newfs_ext2fs and newfs_msdos commands for ext2 and FAT, respectively.

# newfs sd3a

Package Management
On Linux there are many different package managers. I will assume familiarity with the apt system used by debian and jewbuntu & co.

apt-get install => pkg_add <packagename>...
apt-get upgrade => pkg_add -u
apt-cache search => pkg_info -Q <packagename>
apt-get remove => pkg_delete <packagename>
apt-get autoremove => pkg_delete -a

Entire OS upgrades
Follow the instructions on the OpenBSD website which are posted when a new version of OpenBSD is released.

Nanonymous No.2548 [D] >>2549

>>2545
>out-of-date packages
I would think that a security correctness-oriented OS would consider this a very big deal. What kind of packages? I would assume such packages may need semi regular security updates.

Nanonymous No.2549 [D]

>>2548
Outdated packages != security vulnerabilities. They do update packages when there are vulnerabilities, or patch them, but not if they are already stable and working properly.

Nanonymous No.4014 [D] >>4068

Well, here's the software that I'm using (or trying to, because it's cool to post about it on the WWW and even cooler on Tor):
• Firecocks — alas, there's no replacement for µMatrix in that trendy qute- or -kit browsers;
• ALSA;
• rtorrent;
• sxiv;
• ffmpeg;
• mpv;
• mpd + ncmpcpp;
• urxvt;
• polipo;
• no DHCP client, only settings in /etc/network/interfaces and /etc/resolv.conf.

Also, bump.

Nanonymous No.4015 [D]

lmfao just turn off the computer nigger

Nanonymous No.4016 [D][U][F]
File: a99f868c9386d2fd3e739200f092e78473bf4fd16c347a14699a49d262c47cf6.jpg (dl) (24.53 KiB)

>>2536

Nanonymous No.4068 [D] >>4102 >>4117

>>4014
>rtorrent
C++ and no clean daemon/client architecture. Use transmission while waiting for synapse to get better (even if Rust is a meme).
>mpd
Depends on fucking boost, m8.
>urxvt
st.
>no DHCP client
Well, that's actually interesting for once. I use dhcpcd with mostly static parameters for now, because I'm lazy.

Nanonymous No.4078 [D]

>>937
Better yet use Geany like a normal person.

Nanonymous No.4102 [D] >>4107

>>4068
>st
Meme terminal that requires 10 patches to become usable and have a decent response time. Use alacritty instead.

Nanonymous No.4107 [D] >>4117

>>4102
>10 patches
No. Scrollback is 1, multiple fonts is 2.
>decent response time
Changing a config value isn't a "patch", brainlet.

>alacritty
>Rust dependency
>GPU acceleration -> dependency on opengl
>https://github.com/jwilm/alacritty/issues/673 so-called highest performing terminal has a shitty latency, which is the most important characteristic
Now that's a meme. Maybe I'll consider it when I need to switch to wayland (not soon) and that something else on my system (rav1e, probably) requires rust.

Nanonymous No.4117 [D][U][F] >>4133
File: 26b7b1dd29ab876a530af73f125e5cbacce272c377c769063c257257f755b6f6.png (dl) (4.59 KiB)

>>4068
> transmission
When using some GUI piece of software it's just too tiresome to put one's hand on and off of mouse.
> st
Honestly tried it but sorta failed. Would you mind to share your source files if you managed to make it comfy?
> I use dhcpcd with mostly static parameters for now, because I'm lazy.
Too lazy to remove it?
You need to set your IP and nameservers only once and live happily with assurance that no fussy daemon can rewrite your resolv.conf when you less expecting it. I hated that.
/etc/network/interfaces:
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
address 192.168.8.17/24
broadcast 192.168.8.255
gateway 192.168.8.1
It's not so difficult, as you can see.

>>4107
> multiple fonts
I'd prefer only one, but st takes settings from fontconfig which I can't fucking figure out how to set up. Where in that steaming pile of XML spaghetti one supposed to write "don't use any fallback fonts for Unicode, show all weeb syllabies in Terminus"?
Pic: upper is from URxvt, lower is from st.


Nanonymous No.4133 [D]

>>4117
>When using some GUI piece of software it's just too tiresome to put one's hand on and off of mouse.
That's fine, because transmission-qt is very keyboard friendly. Not like you should use the interface often, with the automatic scripting facilities.
>st
Apply those in order and just customize the config.
* https://raw.githubusercontent.com/ericpruitt/edge/476f260edeea1ad6a91fb8147604e008ef760ddf/patches/st-00-font-array-support.diff
* https://st.suckless.org/patches/scrollback/st-scrollback-0.8.diff
* https://st.suckless.org/patches/scrollback/st-scrollback-mouse-0.8.diff
The first patch allows you to bypass fontconfig (I need it because my fallback fonts don't have the same size). Also, Terminus doesn't have CJK; I use Mona Gothic for those, personally.
>network
I did it like this on my Alpine box, will probably switch on Gentoo.


Nanonymous No.4218 [D]

>>177
> vis
> Non Goals
> Some features which will not be implemented:
> tabs / multiple workspaces / advanced window management
> file and directory browser
Feels bad man. How am I supposed to edit something more sophisticated than a quick memo? Also vis cannot open background buffers too, which is terribly inconvenient after using vim clones for a while.

Nanonymous No.4226 [D] >>4236

nano is my alt. It's very simple and minimal. The interface is ugly,but after a week it got comfy.

they all preform similar tasks it's just preference? Nano is NOT bloatware at all it's bare bones.

Nanonymous No.4236 [D]

>>4226
>interface is ugly
Edit your nanorc. Add colors, remove help bar, and it looks just fine.

Nanonymous No.4242 [D][U][F]
File: 218421290dda3733cd7a3aac7b17935b0212ccf048c4f998be1e667c198d2bb4.png (dl) (1.98 MiB)

https://www.pixiv.net/member_illust.php?mode=medium&illust_id=43052613
Have no account, cannot view or repost here.


Nanonymous No.4245 [D]

how do you find what programs are running on webserver address? its interferring with nginx.

I tried apache,but it's all gui and yep, it feels bloated. im sensing the contributed "just works" jumbo mumbo im looking to avoid.