Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
569 posts
 
33%
+0 −2
Q&A How to run a command on a list of files?

To run a command on a list of files, use a combination of commands and file glob patterns. For example, on Unix-based systems, you can use a command like ``for file in *.txt;''. Run the $file comma...

posted 1mo ago by trueframe‭

Answer
33%
+0 −2
Q&A How do I migrate my main filesystem to a new drive?

To migrate your main filesystem to a new drive, utilize disk cloning software or backup utilities like Clonezilla or EaseUS Todo Backup for a perfect transfer.

posted 26d ago by trueframe‭

Answer
33%
+0 −2
Meta How can we grow this community?

To grow this community, we can engage more people through social media outreach, host events to bring members together, encourage word-of-mouth promotion, create valuable content to attract new mem...

posted 12d ago by trueframe‭

Answer
33%
+0 −2
Q&A Why I can't update my system? (Kali Linux)

wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add Using the above code you are adding a key. Then try to update your system.

posted 2y ago by Anonymous‭  ·  edited 2y ago by Anonymous‭

Answer
33%
+1 −4
Q&A Substituting text in a sed like manner but with a richer format

I have the following problems working with sed: It doesn't allow multiline operations (thus, no indentations, no nesting) It is generally obligatory to wrap entire commands in quote marks (sed ...

1 answer  ·  posted 2y ago by deleted user  ·  last activity 2y ago by user53100‭

Question sed text-processing
33%
+0 −2
Q&A Is PipeWire easier to use than PulseAudio? [closed]

I have always found PulseAudio to be difficult to use and overcomplicated. Recently I also discovered that it is written by Lennart Poettering, whom I dislike. I am now very motivated to use someth...

0 answers  ·  posted 10mo ago by matthewsnyder‭  ·  closed 10mo ago by Quasímodo‭

Question arch-linux sound
28%
+0 −3
Q&A Recursively remove files with the same name as the ones that end in `.part`

For each file named foo.xyz, you want to delete foo.xyz.part. It doesn't matter if foo.xyz.part exists, you can just attempt it and skip errors. You can get a list of all files with find etc. But ...

posted 11mo ago by matthewsnyder‭  ·  edited 11mo ago by matthewsnyder‭

Answer
28%
+0 −3
Q&A Why I can't update my system? (Kali Linux)

I had installed Kali Linux recently. I can't update or upgrade my system. Even, I can't install anything. Here's the error log apt update Get:1 http://kali.cs.nctu.edu.tw/kali kali-rolling InRele...

1 answer  ·  posted 2y ago by Anonymous‭  ·  last activity 2y ago by Anonymous‭

Question kali-linux
28%
+0 −3
Meta Can we ask hacking related question?

There's lot of Facebook Brute Forcer and lot of hacking tools is available in github. Don't ask : You can't ask us which Brute Forcer is best(Which tool you have to use for fb/insta/website hac...

posted 3y ago by deleted user  ·  edited 3y ago by deleted user

Answer
28%
+0 −3
Q&A Starts systemd service and follow log

You can use the --follow option of systemctl to start a service and immediately tail the log file. Here's an example command that starts the myservice service and follows the log: sudo systemctl ...

posted 9mo ago by GoldenGold‭  ·  edited 9mo ago by AdminBee‭

Answer
28%
+0 −3
Q&A Why can't I install google-chrome?

apt install google-chrome-stable_current_amd64.deb E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/...

1 answer  ·  posted 2y ago by Anonymous‭  ·  last activity 2y ago by Anonymous‭

28%
+0 −3
Q&A Which Linux system to use?

I think so kde neon is the best linux distro but not that popular.

posted 2y ago by Vasudeo Sinha‭

Answer
25%
+0 −4
Q&A Is there possible way to change bit if my system is using 64 bit kernel?

Is it possible to change bit of a system? My system is using 64 bit kernel. I was trying to install chrome in my system. But, I couldn't since chrome doesn't support 32 bit. Since my system is usin...

1 answer  ·  posted 2y ago by Anonymous‭  ·  edited 2y ago by Anonymous‭

Question bit
25%
+0 −4
Q&A Why does the file command fail to recognize non-text files as such?

https://theasciicode.com.ar/extended-ascii-code/majuscule-c-cedilla-uppercase-ascii-code-128.html Octal 101 is 65, which is ASCII/UTF-8 for A - a valid character. Octal 200 is 128, which is ASCII...

posted 3y ago by LawrenceC‭

Answer
22%
+0 −5
Q&A Is it possible to write more than 1 equation in LO Math? [closed]

I was using Libre Office Math. I thought I can write multiple equations in LO Math. But, I noticed I can't write more than one equation. I was trying to write multi-line. Unfortunately, I couldn't....

1 answer  ·  posted 3y ago by deleted user  ·  last activity 3y ago by deleted user

22%
+0 −5
Q&A Do shells have anything to do with port forwarding or port triggering?

I find port forwarding and port triggering as advanced sub-topics of the topic of network protocols which include the "port" concept such as TCP and UDP. I am wondering if shells in general and Ba...

1 answer  ·  posted 3y ago by deleted user  ·  last activity 3y ago by LawrenceC‭

Question shell port
22%
+0 −5
Q&A How to run a command on a list of files?

To run a command on a list of files, you can use a command-line interface and a loop statement. For example, in Linux, you can use the "for" loop to apply a command to each file in a directory. You...

posted 1mo ago by trueframe‭

Answer
22%
+0 −5
Q&A Privacy focused Linux distro [closed]

Suggest me the most security and privacy focused Linux distro within three of them given below. Fedora Qubes OS Whonix. Please help me to choose. Thank you.

0 answers  ·  posted 1y ago by abarajithanjudith‭  ·  closed 1y ago by ArtOfCode‭

Question linux security Fedora
20%
+2 −14
Q&A Which Linux system to use?

Beginner Ubuntu/Lubuntu/Xubuntu Lubuntu, Xubuntu is Ubuntu-based. Ubuntu is Debian-Based. All these are beginner friendly. Most of Developer uses Ubuntu, Lubuntu or Xubuntu. We’re pretty sure tha...

posted 3y ago by deleted user

Answer