1 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
2 |
DENIED
|
moderate
|
App\Entity\Entry {#1787
+user: Proxies\__CG__\App\Entity\User {#1775 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "I-remember-why-I-stopped-using-Geany-text-editor-comment"
+title: "I remember why I stopped using Geany text editor: comment toggling not as expected"
+url: null
+body: """
Since [Geany 2.0 has recently been released](https://www.geany.org/documentation/releasenotes/) I decided to switch back to it from Kate. I used to like Geany but it had some problems I couldn’t quite remember.\n
\n
So I quickly remembered the problem. I can’t figure out how to configure it to properly comment and comment blocks of code. Say you have the following in a file of type `shell script`:\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;"># a comment\n
</span><span style="color:#323232;">\t</span><span style="color:#62a35c;">echo </span><span style="color:#323232;">$variable\n
</span>\n
```\n
\n
I want to be able to select the above lines and use a keybinding to comment them out, so the result would be:\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">## a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">#echo $variable\n
</span>\n
```\n
\n
`Edit` > `Format` > `Comment Lines` works as anticipated.\n
\n
But if I decide I want the lines back, how do that with the same keybinding? Using `Comment Lines` again adds a second level of comments, which is what I would expect (but not what I want):\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">### a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">##echo $variable\n
</span>\n
```\n
\n
`Edit` > `Format` > `Toggle Line Commentation` works and the file returns to the original state. But if you reselect the original lines and run it again, you get\n
\n
```\n
\n
<span style="color:#323232;">\t a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">#echo $variable\n
</span>\n
```\n
\n
Which would obviously lead to unpredictable results.\n
\n
There doesn’t seem to be a way for Geany to look at the block of text and decide whether it should be *commented* or *uncommented* and act accordingly.\n
\n
Kate editor has this functionality in `Selection` > `Toggle Comment` as do other editors I’ve encountered. If there is a mix of commented and uncommented text, it will *never* remove comments. It only removes comments when the entire block has commenting, and then it removes only 1 level of comments. Perfect. Of course if you really want to force the matter, there are the more aggressive `Comment` and `Uncomment`.\n
\n
Using the Geany `Toggle Line Commentation` leads to strange results, especially if you are starting with multiple levels of comments. Is there a way to duplicate the standard comment toggle in Geany? I tried to train myself to use `Comment Line(s)` and `Uncomment Lines(s)` instead of a single command but I just made a lot of mistakes where I didn’t realize there were multiple levels of comments or whatever and things became uncommented that shouldn’t have and it created a giant mess.\n
\n
I’m not a professional IT person, just someone who enjoys text files in their spare time. I do a lot of commenting and uncommenting trying to find out how things work. I thought it was a pretty normal thing to do. There must be a way to do it right?\n
\n
I recall digging around a bunch in the Geany repo/docs and it ended up that some problem I was having was a limitation of the Scintilla lexer and there wasn’t much Geany could do about it. But I am not sure if it was this issue or something else.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 9
+favouriteCount: 17
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699840939 {#1623
date: 2023-11-13 03:02:19.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1753 …}
+votes: Doctrine\ORM\PersistentCollection {#1448 …}
+reports: Doctrine\ORM\PersistentCollection {#1495 …}
+favourites: Doctrine\ORM\PersistentCollection {#1627 …}
+notifications: Doctrine\ORM\PersistentCollection {#1440 …}
+badges: Doctrine\ORM\PersistentCollection {#1429 …}
+children: []
-id: 11968
-titleTs: "'comment':10 'editor':9 'expect':14 'geani':7 'rememb':2 'stop':5 'text':8 'toggl':11 'use':6"
-bodyTs: "'/documentation/releasenotes/)':10 '1':262 '2.0':3 'abl':78 'accord':215 'act':214 'add':128 'aggress':281 'anticip':107 'around':425 'back':15,116 'becam':359 'block':55,201,254 'bunch':427 'code':57 'command':335 'comment':52,54,71,89,98,103,125,133,146,153,177,210,224,238,246,250,256,265,282,290,304,313,324,354,393 'configur':48 'could':455 'couldn':31 'cours':268 'creat':367 'decid':12,111,205 'didn':346 'dig':424 'doesn':188 'duplic':310 'echo':72,99,147,178 'edit':101,149 'editor':217,228 'els':471 'encount':231 'end':434 'enjoy':381 'entir':253 'especi':295 'expect':139 'figur':44 'file':65,157,383 'find':398 'follow':62 'forc':274 'format':102,150 'function':220 'geani':2,24,196,287,316,430,454 'get':175 'giant':369 'instead':331 'issu':468 'kate':19,216 'keybind':87,123 'lead':183,291 'level':131,263,302,352 'lexer':448 'like':23 'limit':444 'line':83,104,115,126,152,169,289,325,329 'look':198 'lot':341,391 'm':372 'made':339 'matter':276 'mess':370 'mistak':343 'mix':236 'much':453 'multipl':301,351 'must':414 'never':244 'normal':409 'obvious':182 'origin':161,168 'perfect':266 'person':377 'pretti':408 'problem':29,40,438 'profession':375 'proper':51 'quick':37 'quit':33 'realiz':348 'realli':271 'recal':423 'recent':5 'releas':7 'rememb':34,38 'remov':245,249,260 'repo/docs':431 'reselect':166 'result':94,186,294 'return':158 'right':421 'run':171 'say':58 'scintilla':447 'script':69 'second':130 'seem':190 'select':80,222 'shell':68 'shouldn':362 'sinc':1 'singl':334 'someon':379 'someth':470 'spare':386 'standard':312 'start':299 'state':162 'strang':293 'sure':463 'switch':14 'text':203,241,382 'thing':358,401,410 'thought':404 'time':387 'toggl':151,223,288,314 'train':320 'tri':318,396 'type':67 'uncom':212,240,284,328,360,395 'unpredict':185 'use':21,85,124,285,323 'variabl':73,100,148,179 've':230 'want':75,113,144,272 'wasn':451 'way':194,308,417 'whatev':356 'whether':206 'work':105,154,402 'would':95,138,181 'www.geany.org':9 'www.geany.org/documentation/releasenotes/)':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699773978
+visibility: "visible "
+apId: "https://beehaw.org/post/9470604"
+editedAt: null
+createdAt: DateTimeImmutable @1699704478 {#1532
date: 2023-11-11 13:07:58.0 +01:00
}
} |
|
Show voter details
|
3 |
DENIED
|
edit
|
App\Entity\Entry {#1787
+user: Proxies\__CG__\App\Entity\User {#1775 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "I-remember-why-I-stopped-using-Geany-text-editor-comment"
+title: "I remember why I stopped using Geany text editor: comment toggling not as expected"
+url: null
+body: """
Since [Geany 2.0 has recently been released](https://www.geany.org/documentation/releasenotes/) I decided to switch back to it from Kate. I used to like Geany but it had some problems I couldn’t quite remember.\n
\n
So I quickly remembered the problem. I can’t figure out how to configure it to properly comment and comment blocks of code. Say you have the following in a file of type `shell script`:\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;"># a comment\n
</span><span style="color:#323232;">\t</span><span style="color:#62a35c;">echo </span><span style="color:#323232;">$variable\n
</span>\n
```\n
\n
I want to be able to select the above lines and use a keybinding to comment them out, so the result would be:\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">## a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">#echo $variable\n
</span>\n
```\n
\n
`Edit` > `Format` > `Comment Lines` works as anticipated.\n
\n
But if I decide I want the lines back, how do that with the same keybinding? Using `Comment Lines` again adds a second level of comments, which is what I would expect (but not what I want):\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">### a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">##echo $variable\n
</span>\n
```\n
\n
`Edit` > `Format` > `Toggle Line Commentation` works and the file returns to the original state. But if you reselect the original lines and run it again, you get\n
\n
```\n
\n
<span style="color:#323232;">\t a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">#echo $variable\n
</span>\n
```\n
\n
Which would obviously lead to unpredictable results.\n
\n
There doesn’t seem to be a way for Geany to look at the block of text and decide whether it should be *commented* or *uncommented* and act accordingly.\n
\n
Kate editor has this functionality in `Selection` > `Toggle Comment` as do other editors I’ve encountered. If there is a mix of commented and uncommented text, it will *never* remove comments. It only removes comments when the entire block has commenting, and then it removes only 1 level of comments. Perfect. Of course if you really want to force the matter, there are the more aggressive `Comment` and `Uncomment`.\n
\n
Using the Geany `Toggle Line Commentation` leads to strange results, especially if you are starting with multiple levels of comments. Is there a way to duplicate the standard comment toggle in Geany? I tried to train myself to use `Comment Line(s)` and `Uncomment Lines(s)` instead of a single command but I just made a lot of mistakes where I didn’t realize there were multiple levels of comments or whatever and things became uncommented that shouldn’t have and it created a giant mess.\n
\n
I’m not a professional IT person, just someone who enjoys text files in their spare time. I do a lot of commenting and uncommenting trying to find out how things work. I thought it was a pretty normal thing to do. There must be a way to do it right?\n
\n
I recall digging around a bunch in the Geany repo/docs and it ended up that some problem I was having was a limitation of the Scintilla lexer and there wasn’t much Geany could do about it. But I am not sure if it was this issue or something else.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 9
+favouriteCount: 17
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699840939 {#1623
date: 2023-11-13 03:02:19.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1753 …}
+votes: Doctrine\ORM\PersistentCollection {#1448 …}
+reports: Doctrine\ORM\PersistentCollection {#1495 …}
+favourites: Doctrine\ORM\PersistentCollection {#1627 …}
+notifications: Doctrine\ORM\PersistentCollection {#1440 …}
+badges: Doctrine\ORM\PersistentCollection {#1429 …}
+children: []
-id: 11968
-titleTs: "'comment':10 'editor':9 'expect':14 'geani':7 'rememb':2 'stop':5 'text':8 'toggl':11 'use':6"
-bodyTs: "'/documentation/releasenotes/)':10 '1':262 '2.0':3 'abl':78 'accord':215 'act':214 'add':128 'aggress':281 'anticip':107 'around':425 'back':15,116 'becam':359 'block':55,201,254 'bunch':427 'code':57 'command':335 'comment':52,54,71,89,98,103,125,133,146,153,177,210,224,238,246,250,256,265,282,290,304,313,324,354,393 'configur':48 'could':455 'couldn':31 'cours':268 'creat':367 'decid':12,111,205 'didn':346 'dig':424 'doesn':188 'duplic':310 'echo':72,99,147,178 'edit':101,149 'editor':217,228 'els':471 'encount':231 'end':434 'enjoy':381 'entir':253 'especi':295 'expect':139 'figur':44 'file':65,157,383 'find':398 'follow':62 'forc':274 'format':102,150 'function':220 'geani':2,24,196,287,316,430,454 'get':175 'giant':369 'instead':331 'issu':468 'kate':19,216 'keybind':87,123 'lead':183,291 'level':131,263,302,352 'lexer':448 'like':23 'limit':444 'line':83,104,115,126,152,169,289,325,329 'look':198 'lot':341,391 'm':372 'made':339 'matter':276 'mess':370 'mistak':343 'mix':236 'much':453 'multipl':301,351 'must':414 'never':244 'normal':409 'obvious':182 'origin':161,168 'perfect':266 'person':377 'pretti':408 'problem':29,40,438 'profession':375 'proper':51 'quick':37 'quit':33 'realiz':348 'realli':271 'recal':423 'recent':5 'releas':7 'rememb':34,38 'remov':245,249,260 'repo/docs':431 'reselect':166 'result':94,186,294 'return':158 'right':421 'run':171 'say':58 'scintilla':447 'script':69 'second':130 'seem':190 'select':80,222 'shell':68 'shouldn':362 'sinc':1 'singl':334 'someon':379 'someth':470 'spare':386 'standard':312 'start':299 'state':162 'strang':293 'sure':463 'switch':14 'text':203,241,382 'thing':358,401,410 'thought':404 'time':387 'toggl':151,223,288,314 'train':320 'tri':318,396 'type':67 'uncom':212,240,284,328,360,395 'unpredict':185 'use':21,85,124,285,323 'variabl':73,100,148,179 've':230 'want':75,113,144,272 'wasn':451 'way':194,308,417 'whatev':356 'whether':206 'work':105,154,402 'would':95,138,181 'www.geany.org':9 'www.geany.org/documentation/releasenotes/)':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699773978
+visibility: "visible "
+apId: "https://beehaw.org/post/9470604"
+editedAt: null
+createdAt: DateTimeImmutable @1699704478 {#1532
date: 2023-11-11 13:07:58.0 +01:00
}
} |
|
Show voter details
|
4 |
DENIED
|
moderate
|
App\Entity\Entry {#1787
+user: Proxies\__CG__\App\Entity\User {#1775 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "I-remember-why-I-stopped-using-Geany-text-editor-comment"
+title: "I remember why I stopped using Geany text editor: comment toggling not as expected"
+url: null
+body: """
Since [Geany 2.0 has recently been released](https://www.geany.org/documentation/releasenotes/) I decided to switch back to it from Kate. I used to like Geany but it had some problems I couldn’t quite remember.\n
\n
So I quickly remembered the problem. I can’t figure out how to configure it to properly comment and comment blocks of code. Say you have the following in a file of type `shell script`:\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;"># a comment\n
</span><span style="color:#323232;">\t</span><span style="color:#62a35c;">echo </span><span style="color:#323232;">$variable\n
</span>\n
```\n
\n
I want to be able to select the above lines and use a keybinding to comment them out, so the result would be:\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">## a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">#echo $variable\n
</span>\n
```\n
\n
`Edit` > `Format` > `Comment Lines` works as anticipated.\n
\n
But if I decide I want the lines back, how do that with the same keybinding? Using `Comment Lines` again adds a second level of comments, which is what I would expect (but not what I want):\n
\n
```\n
\n
<span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">### a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">##echo $variable\n
</span>\n
```\n
\n
`Edit` > `Format` > `Toggle Line Commentation` works and the file returns to the original state. But if you reselect the original lines and run it again, you get\n
\n
```\n
\n
<span style="color:#323232;">\t a comment\n
</span><span style="color:#323232;">\t</span><span style="font-style:italic;color:#969896;">#echo $variable\n
</span>\n
```\n
\n
Which would obviously lead to unpredictable results.\n
\n
There doesn’t seem to be a way for Geany to look at the block of text and decide whether it should be *commented* or *uncommented* and act accordingly.\n
\n
Kate editor has this functionality in `Selection` > `Toggle Comment` as do other editors I’ve encountered. If there is a mix of commented and uncommented text, it will *never* remove comments. It only removes comments when the entire block has commenting, and then it removes only 1 level of comments. Perfect. Of course if you really want to force the matter, there are the more aggressive `Comment` and `Uncomment`.\n
\n
Using the Geany `Toggle Line Commentation` leads to strange results, especially if you are starting with multiple levels of comments. Is there a way to duplicate the standard comment toggle in Geany? I tried to train myself to use `Comment Line(s)` and `Uncomment Lines(s)` instead of a single command but I just made a lot of mistakes where I didn’t realize there were multiple levels of comments or whatever and things became uncommented that shouldn’t have and it created a giant mess.\n
\n
I’m not a professional IT person, just someone who enjoys text files in their spare time. I do a lot of commenting and uncommenting trying to find out how things work. I thought it was a pretty normal thing to do. There must be a way to do it right?\n
\n
I recall digging around a bunch in the Geany repo/docs and it ended up that some problem I was having was a limitation of the Scintilla lexer and there wasn’t much Geany could do about it. But I am not sure if it was this issue or something else.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 9
+favouriteCount: 17
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699840939 {#1623
date: 2023-11-13 03:02:19.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1753 …}
+votes: Doctrine\ORM\PersistentCollection {#1448 …}
+reports: Doctrine\ORM\PersistentCollection {#1495 …}
+favourites: Doctrine\ORM\PersistentCollection {#1627 …}
+notifications: Doctrine\ORM\PersistentCollection {#1440 …}
+badges: Doctrine\ORM\PersistentCollection {#1429 …}
+children: []
-id: 11968
-titleTs: "'comment':10 'editor':9 'expect':14 'geani':7 'rememb':2 'stop':5 'text':8 'toggl':11 'use':6"
-bodyTs: "'/documentation/releasenotes/)':10 '1':262 '2.0':3 'abl':78 'accord':215 'act':214 'add':128 'aggress':281 'anticip':107 'around':425 'back':15,116 'becam':359 'block':55,201,254 'bunch':427 'code':57 'command':335 'comment':52,54,71,89,98,103,125,133,146,153,177,210,224,238,246,250,256,265,282,290,304,313,324,354,393 'configur':48 'could':455 'couldn':31 'cours':268 'creat':367 'decid':12,111,205 'didn':346 'dig':424 'doesn':188 'duplic':310 'echo':72,99,147,178 'edit':101,149 'editor':217,228 'els':471 'encount':231 'end':434 'enjoy':381 'entir':253 'especi':295 'expect':139 'figur':44 'file':65,157,383 'find':398 'follow':62 'forc':274 'format':102,150 'function':220 'geani':2,24,196,287,316,430,454 'get':175 'giant':369 'instead':331 'issu':468 'kate':19,216 'keybind':87,123 'lead':183,291 'level':131,263,302,352 'lexer':448 'like':23 'limit':444 'line':83,104,115,126,152,169,289,325,329 'look':198 'lot':341,391 'm':372 'made':339 'matter':276 'mess':370 'mistak':343 'mix':236 'much':453 'multipl':301,351 'must':414 'never':244 'normal':409 'obvious':182 'origin':161,168 'perfect':266 'person':377 'pretti':408 'problem':29,40,438 'profession':375 'proper':51 'quick':37 'quit':33 'realiz':348 'realli':271 'recal':423 'recent':5 'releas':7 'rememb':34,38 'remov':245,249,260 'repo/docs':431 'reselect':166 'result':94,186,294 'return':158 'right':421 'run':171 'say':58 'scintilla':447 'script':69 'second':130 'seem':190 'select':80,222 'shell':68 'shouldn':362 'sinc':1 'singl':334 'someon':379 'someth':470 'spare':386 'standard':312 'start':299 'state':162 'strang':293 'sure':463 'switch':14 'text':203,241,382 'thing':358,401,410 'thought':404 'time':387 'toggl':151,223,288,314 'train':320 'tri':318,396 'type':67 'uncom':212,240,284,328,360,395 'unpredict':185 'use':21,85,124,285,323 'variabl':73,100,148,179 've':230 'want':75,113,144,272 'wasn':451 'way':194,308,417 'whatev':356 'whether':206 'work':105,154,402 'would':95,138,181 'www.geany.org':9 'www.geany.org/documentation/releasenotes/)':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699773978
+visibility: "visible "
+apId: "https://beehaw.org/post/9470604"
+editedAt: null
+createdAt: DateTimeImmutable @1699704478 {#1532
date: 2023-11-11 13:07:58.0 +01:00
}
} |
|
Show voter details
|
5 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
6 |
DENIED
|
moderate
|
App\Entity\Entry {#1697
+user: Proxies\__CG__\App\Entity\User {#1690 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "CUPS-mirror-image-printer-setup"
+title: "CUPS mirror image printer setup"
+url: null
+body: """
I’ll need to mirror print stuff regularly (flip across the vertical axis), and I’m trying to make the process convenient.\n
\n
The manual way to mirror print would be by invoking `lp`, e.g.\n
\n
`lp -o mirror myfile.pdf`\n
\n
Invoking lp would work for images, PDF, ps etc. But but for application (open office draw) files. Unfortunately, I don’t see an obvious way to mirror print within the application itself.\n
\n
I’m thinking of setting up a mirror printer in CUPS that would automatically apply the -o mirror to any documents that hit it.\n
\n
I suspect this would require some tinkering with CUPS filters - I’ll dig into it sometime.\n
\n
I can’t be the only one who’s needed this at some point in time.\n
\n
Has anyone here done something similar? Looking forward to your thoughts!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 21
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699831045 {#1431
date: 2023-11-13 00:17:25.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1695 …}
+votes: Doctrine\ORM\PersistentCollection {#1693 …}
+reports: Doctrine\ORM\PersistentCollection {#1595 …}
+favourites: Doctrine\ORM\PersistentCollection {#1609 …}
+notifications: Doctrine\ORM\PersistentCollection {#1614 …}
+badges: Doctrine\ORM\PersistentCollection {#1615 …}
+children: []
-id: 12064
-titleTs: "'cup':1 'imag':3 'mirror':2 'printer':4 'setup':5"
-bodyTs: "'across':10 'anyon':128 'appli':85 'applic':51,69 'automat':84 'axi':13 'conveni':22 'cup':81,103 'dig':107 'document':91 'done':130 'draw':54 'e.g':34 'etc':47 'file':55 'filter':104 'flip':9 'forward':134 'hit':93 'imag':44 'invok':32,39 'll':2,106 'look':133 'lp':33,35,40 'm':16,72 'make':19 'manual':24 'mirror':5,27,37,65,78,88 'myfile.pdf':38 'need':3,120 'o':36,87 'obvious':62 'offic':53 'one':117 'open':52 'pdf':45 'point':124 'print':6,28,66 'printer':79 'process':21 'ps':46 'regular':8 'requir':99 'see':60 'set':75 'similar':132 'someth':131 'sometim':110 'stuff':7 'suspect':96 'think':73 'thought':137 'time':126 'tinker':101 'tri':17 'unfortun':56 'vertic':12 'way':25,63 'within':67 'work':42 'would':29,41,83,98"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699784508
+visibility: "visible "
+apId: "https://lemmy.ca/post/9128574"
+editedAt: null
+createdAt: DateTimeImmutable @1699725008 {#1428
date: 2023-11-11 18:50:08.0 +01:00
}
} |
|
Show voter details
|
7 |
DENIED
|
edit
|
App\Entity\Entry {#1697
+user: Proxies\__CG__\App\Entity\User {#1690 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "CUPS-mirror-image-printer-setup"
+title: "CUPS mirror image printer setup"
+url: null
+body: """
I’ll need to mirror print stuff regularly (flip across the vertical axis), and I’m trying to make the process convenient.\n
\n
The manual way to mirror print would be by invoking `lp`, e.g.\n
\n
`lp -o mirror myfile.pdf`\n
\n
Invoking lp would work for images, PDF, ps etc. But but for application (open office draw) files. Unfortunately, I don’t see an obvious way to mirror print within the application itself.\n
\n
I’m thinking of setting up a mirror printer in CUPS that would automatically apply the -o mirror to any documents that hit it.\n
\n
I suspect this would require some tinkering with CUPS filters - I’ll dig into it sometime.\n
\n
I can’t be the only one who’s needed this at some point in time.\n
\n
Has anyone here done something similar? Looking forward to your thoughts!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 21
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699831045 {#1431
date: 2023-11-13 00:17:25.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1695 …}
+votes: Doctrine\ORM\PersistentCollection {#1693 …}
+reports: Doctrine\ORM\PersistentCollection {#1595 …}
+favourites: Doctrine\ORM\PersistentCollection {#1609 …}
+notifications: Doctrine\ORM\PersistentCollection {#1614 …}
+badges: Doctrine\ORM\PersistentCollection {#1615 …}
+children: []
-id: 12064
-titleTs: "'cup':1 'imag':3 'mirror':2 'printer':4 'setup':5"
-bodyTs: "'across':10 'anyon':128 'appli':85 'applic':51,69 'automat':84 'axi':13 'conveni':22 'cup':81,103 'dig':107 'document':91 'done':130 'draw':54 'e.g':34 'etc':47 'file':55 'filter':104 'flip':9 'forward':134 'hit':93 'imag':44 'invok':32,39 'll':2,106 'look':133 'lp':33,35,40 'm':16,72 'make':19 'manual':24 'mirror':5,27,37,65,78,88 'myfile.pdf':38 'need':3,120 'o':36,87 'obvious':62 'offic':53 'one':117 'open':52 'pdf':45 'point':124 'print':6,28,66 'printer':79 'process':21 'ps':46 'regular':8 'requir':99 'see':60 'set':75 'similar':132 'someth':131 'sometim':110 'stuff':7 'suspect':96 'think':73 'thought':137 'time':126 'tinker':101 'tri':17 'unfortun':56 'vertic':12 'way':25,63 'within':67 'work':42 'would':29,41,83,98"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699784508
+visibility: "visible "
+apId: "https://lemmy.ca/post/9128574"
+editedAt: null
+createdAt: DateTimeImmutable @1699725008 {#1428
date: 2023-11-11 18:50:08.0 +01:00
}
} |
|
Show voter details
|
8 |
DENIED
|
moderate
|
App\Entity\Entry {#1697
+user: Proxies\__CG__\App\Entity\User {#1690 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "CUPS-mirror-image-printer-setup"
+title: "CUPS mirror image printer setup"
+url: null
+body: """
I’ll need to mirror print stuff regularly (flip across the vertical axis), and I’m trying to make the process convenient.\n
\n
The manual way to mirror print would be by invoking `lp`, e.g.\n
\n
`lp -o mirror myfile.pdf`\n
\n
Invoking lp would work for images, PDF, ps etc. But but for application (open office draw) files. Unfortunately, I don’t see an obvious way to mirror print within the application itself.\n
\n
I’m thinking of setting up a mirror printer in CUPS that would automatically apply the -o mirror to any documents that hit it.\n
\n
I suspect this would require some tinkering with CUPS filters - I’ll dig into it sometime.\n
\n
I can’t be the only one who’s needed this at some point in time.\n
\n
Has anyone here done something similar? Looking forward to your thoughts!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 21
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699831045 {#1431
date: 2023-11-13 00:17:25.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1695 …}
+votes: Doctrine\ORM\PersistentCollection {#1693 …}
+reports: Doctrine\ORM\PersistentCollection {#1595 …}
+favourites: Doctrine\ORM\PersistentCollection {#1609 …}
+notifications: Doctrine\ORM\PersistentCollection {#1614 …}
+badges: Doctrine\ORM\PersistentCollection {#1615 …}
+children: []
-id: 12064
-titleTs: "'cup':1 'imag':3 'mirror':2 'printer':4 'setup':5"
-bodyTs: "'across':10 'anyon':128 'appli':85 'applic':51,69 'automat':84 'axi':13 'conveni':22 'cup':81,103 'dig':107 'document':91 'done':130 'draw':54 'e.g':34 'etc':47 'file':55 'filter':104 'flip':9 'forward':134 'hit':93 'imag':44 'invok':32,39 'll':2,106 'look':133 'lp':33,35,40 'm':16,72 'make':19 'manual':24 'mirror':5,27,37,65,78,88 'myfile.pdf':38 'need':3,120 'o':36,87 'obvious':62 'offic':53 'one':117 'open':52 'pdf':45 'point':124 'print':6,28,66 'printer':79 'process':21 'ps':46 'regular':8 'requir':99 'see':60 'set':75 'similar':132 'someth':131 'sometim':110 'stuff':7 'suspect':96 'think':73 'thought':137 'time':126 'tinker':101 'tri':17 'unfortun':56 'vertic':12 'way':25,63 'within':67 'work':42 'would':29,41,83,98"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699784508
+visibility: "visible "
+apId: "https://lemmy.ca/post/9128574"
+editedAt: null
+createdAt: DateTimeImmutable @1699725008 {#1428
date: 2023-11-11 18:50:08.0 +01:00
}
} |
|
Show voter details
|
9 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
10 |
DENIED
|
moderate
|
App\Entity\Entry {#1646
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Solved-KWallet-how-to-restore-auto-unlocking"
+title: "Solved: KWallet, how to restore auto-unlocking?"
+url: null
+body: """
Solution: in systemsettings there is a page where you have to select the default wallet.\n
\n
I tried creating a GPG encrypted Kwallet just to read in the Archwiki that this is not supported.\n
\n
I exported my wallet before, and then imported it again. Everything is broken?\n
\n
Nextcloud, Wifi, everything needs Kwallet and its broken.\n
\n
I named it kdewallet, Blowfish is enabled, password is my login password. But it it is not working anymore…\n
\n
Anyone know how to set the wallet as default or something? Thank you!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 17
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699793964 {#1752
date: 2023-11-12 13:59:24.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1645 …}
+votes: Doctrine\ORM\PersistentCollection {#1641 …}
+reports: Doctrine\ORM\PersistentCollection {#1665 …}
+favourites: Doctrine\ORM\PersistentCollection {#1674 …}
+notifications: Doctrine\ORM\PersistentCollection {#1672 …}
+badges: Doctrine\ORM\PersistentCollection {#1677 …}
+children: []
-id: 12242
-titleTs: "'auto':7 'auto-unlock':6 'kwallet':2 'restor':5 'solv':1 'unlock':8"
-bodyTs: "'anymor':73 'anyon':74 'archwiki':28 'blowfish':59 'broken':46,54 'creat':18 'default':14,82 'enabl':61 'encrypt':21 'everyth':44,49 'export':35 'gpg':20 'import':41 'kdewallet':58 'know':75 'kwallet':22,51 'login':65 'name':56 'need':50 'nextcloud':47 'page':7 'password':62,66 'read':25 'select':12 'set':78 'solut':1 'someth':84 'support':33 'systemset':3 'thank':85 'tri':17 'wallet':15,37,80 'wifi':48 'work':72"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699841883
+visibility: "visible "
+apId: "https://feddit.de/post/5571666"
+editedAt: DateTimeImmutable @1699923543 {#1744
date: 2023-11-14 01:59:03.0 +01:00
}
+createdAt: DateTimeImmutable @1699792883 {#1639
date: 2023-11-12 13:41:23.0 +01:00
}
} |
|
Show voter details
|
11 |
DENIED
|
edit
|
App\Entity\Entry {#1646
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Solved-KWallet-how-to-restore-auto-unlocking"
+title: "Solved: KWallet, how to restore auto-unlocking?"
+url: null
+body: """
Solution: in systemsettings there is a page where you have to select the default wallet.\n
\n
I tried creating a GPG encrypted Kwallet just to read in the Archwiki that this is not supported.\n
\n
I exported my wallet before, and then imported it again. Everything is broken?\n
\n
Nextcloud, Wifi, everything needs Kwallet and its broken.\n
\n
I named it kdewallet, Blowfish is enabled, password is my login password. But it it is not working anymore…\n
\n
Anyone know how to set the wallet as default or something? Thank you!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 17
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699793964 {#1752
date: 2023-11-12 13:59:24.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1645 …}
+votes: Doctrine\ORM\PersistentCollection {#1641 …}
+reports: Doctrine\ORM\PersistentCollection {#1665 …}
+favourites: Doctrine\ORM\PersistentCollection {#1674 …}
+notifications: Doctrine\ORM\PersistentCollection {#1672 …}
+badges: Doctrine\ORM\PersistentCollection {#1677 …}
+children: []
-id: 12242
-titleTs: "'auto':7 'auto-unlock':6 'kwallet':2 'restor':5 'solv':1 'unlock':8"
-bodyTs: "'anymor':73 'anyon':74 'archwiki':28 'blowfish':59 'broken':46,54 'creat':18 'default':14,82 'enabl':61 'encrypt':21 'everyth':44,49 'export':35 'gpg':20 'import':41 'kdewallet':58 'know':75 'kwallet':22,51 'login':65 'name':56 'need':50 'nextcloud':47 'page':7 'password':62,66 'read':25 'select':12 'set':78 'solut':1 'someth':84 'support':33 'systemset':3 'thank':85 'tri':17 'wallet':15,37,80 'wifi':48 'work':72"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699841883
+visibility: "visible "
+apId: "https://feddit.de/post/5571666"
+editedAt: DateTimeImmutable @1699923543 {#1744
date: 2023-11-14 01:59:03.0 +01:00
}
+createdAt: DateTimeImmutable @1699792883 {#1639
date: 2023-11-12 13:41:23.0 +01:00
}
} |
|
Show voter details
|
12 |
DENIED
|
moderate
|
App\Entity\Entry {#1646
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Solved-KWallet-how-to-restore-auto-unlocking"
+title: "Solved: KWallet, how to restore auto-unlocking?"
+url: null
+body: """
Solution: in systemsettings there is a page where you have to select the default wallet.\n
\n
I tried creating a GPG encrypted Kwallet just to read in the Archwiki that this is not supported.\n
\n
I exported my wallet before, and then imported it again. Everything is broken?\n
\n
Nextcloud, Wifi, everything needs Kwallet and its broken.\n
\n
I named it kdewallet, Blowfish is enabled, password is my login password. But it it is not working anymore…\n
\n
Anyone know how to set the wallet as default or something? Thank you!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 17
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699793964 {#1752
date: 2023-11-12 13:59:24.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1645 …}
+votes: Doctrine\ORM\PersistentCollection {#1641 …}
+reports: Doctrine\ORM\PersistentCollection {#1665 …}
+favourites: Doctrine\ORM\PersistentCollection {#1674 …}
+notifications: Doctrine\ORM\PersistentCollection {#1672 …}
+badges: Doctrine\ORM\PersistentCollection {#1677 …}
+children: []
-id: 12242
-titleTs: "'auto':7 'auto-unlock':6 'kwallet':2 'restor':5 'solv':1 'unlock':8"
-bodyTs: "'anymor':73 'anyon':74 'archwiki':28 'blowfish':59 'broken':46,54 'creat':18 'default':14,82 'enabl':61 'encrypt':21 'everyth':44,49 'export':35 'gpg':20 'import':41 'kdewallet':58 'know':75 'kwallet':22,51 'login':65 'name':56 'need':50 'nextcloud':47 'page':7 'password':62,66 'read':25 'select':12 'set':78 'solut':1 'someth':84 'support':33 'systemset':3 'thank':85 'tri':17 'wallet':15,37,80 'wifi':48 'work':72"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699841883
+visibility: "visible "
+apId: "https://feddit.de/post/5571666"
+editedAt: DateTimeImmutable @1699923543 {#1744
date: 2023-11-14 01:59:03.0 +01:00
}
+createdAt: DateTimeImmutable @1699792883 {#1639
date: 2023-11-12 13:41:23.0 +01:00
}
} |
|
Show voter details
|
13 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
14 |
DENIED
|
moderate
|
App\Entity\Entry {#1666
+user: Proxies\__CG__\App\Entity\User {#1667 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Have-I-successfully-blocked-ssh-logins-to-root"
+title: "Have I successfully blocked ssh logins to root?"
+url: null
+body: """
I have a server where I believe I have disabled root login via ssh. I think it is done correctly, as I cannot login with root myself via ssh, but I would’ve thought that it would be reflected in `/var/log/auth.log`. Instead, it shows up as failed password entry. Is this intended?\n
\n
What I’ve done is to uncomment the `PermitRootLogin no` line in `/etc/ssh/sshd_config`. Rest of the config file is left at default.\n
\n
Bonus question: All login attempts by ssh seems to go over some random port (even my own successful logins). Why is this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 20
+favouriteCount: 36
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699784052 {#1669
date: 2023-11-12 11:14:12.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1668 …}
+votes: Doctrine\ORM\PersistentCollection {#1679 …}
+reports: Doctrine\ORM\PersistentCollection {#1654 …}
+favourites: Doctrine\ORM\PersistentCollection {#1655 …}
+notifications: Doctrine\ORM\PersistentCollection {#1651 …}
+badges: Doctrine\ORM\PersistentCollection {#1656 …}
+children: []
-id: 11766
-titleTs: "'block':4 'login':6 'root':8 'ssh':5 'success':3"
-bodyTs: "'/etc/ssh/sshd_config':65 '/var/log/auth.log':41 'attempt':79 'believ':7 'bonus':75 'cannot':23 'config':69 'correct':20 'default':74 'disabl':10 'done':19,56 'entri':49 'even':89 'fail':47 'file':70 'go':84 'instead':42 'intend':52 'left':72 'line':63 'login':12,24,78,93 'password':48 'permitrootlogin':61 'port':88 'question':76 'random':87 'reflect':39 'rest':66 'root':11,26 'seem':82 'server':4 'show':44 'ssh':14,29,81 'success':92 'think':16 'thought':34 'uncom':59 've':33,55 'via':13,28 'would':32,37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699715739
+visibility: "visible "
+apId: "https://lemmy.ml/post/7770730"
+editedAt: null
+createdAt: DateTimeImmutable @1699629339 {#1670
date: 2023-11-10 16:15:39.0 +01:00
}
} |
|
Show voter details
|
15 |
DENIED
|
edit
|
App\Entity\Entry {#1666
+user: Proxies\__CG__\App\Entity\User {#1667 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Have-I-successfully-blocked-ssh-logins-to-root"
+title: "Have I successfully blocked ssh logins to root?"
+url: null
+body: """
I have a server where I believe I have disabled root login via ssh. I think it is done correctly, as I cannot login with root myself via ssh, but I would’ve thought that it would be reflected in `/var/log/auth.log`. Instead, it shows up as failed password entry. Is this intended?\n
\n
What I’ve done is to uncomment the `PermitRootLogin no` line in `/etc/ssh/sshd_config`. Rest of the config file is left at default.\n
\n
Bonus question: All login attempts by ssh seems to go over some random port (even my own successful logins). Why is this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 20
+favouriteCount: 36
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699784052 {#1669
date: 2023-11-12 11:14:12.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1668 …}
+votes: Doctrine\ORM\PersistentCollection {#1679 …}
+reports: Doctrine\ORM\PersistentCollection {#1654 …}
+favourites: Doctrine\ORM\PersistentCollection {#1655 …}
+notifications: Doctrine\ORM\PersistentCollection {#1651 …}
+badges: Doctrine\ORM\PersistentCollection {#1656 …}
+children: []
-id: 11766
-titleTs: "'block':4 'login':6 'root':8 'ssh':5 'success':3"
-bodyTs: "'/etc/ssh/sshd_config':65 '/var/log/auth.log':41 'attempt':79 'believ':7 'bonus':75 'cannot':23 'config':69 'correct':20 'default':74 'disabl':10 'done':19,56 'entri':49 'even':89 'fail':47 'file':70 'go':84 'instead':42 'intend':52 'left':72 'line':63 'login':12,24,78,93 'password':48 'permitrootlogin':61 'port':88 'question':76 'random':87 'reflect':39 'rest':66 'root':11,26 'seem':82 'server':4 'show':44 'ssh':14,29,81 'success':92 'think':16 'thought':34 'uncom':59 've':33,55 'via':13,28 'would':32,37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699715739
+visibility: "visible "
+apId: "https://lemmy.ml/post/7770730"
+editedAt: null
+createdAt: DateTimeImmutable @1699629339 {#1670
date: 2023-11-10 16:15:39.0 +01:00
}
} |
|
Show voter details
|
16 |
DENIED
|
moderate
|
App\Entity\Entry {#1666
+user: Proxies\__CG__\App\Entity\User {#1667 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Have-I-successfully-blocked-ssh-logins-to-root"
+title: "Have I successfully blocked ssh logins to root?"
+url: null
+body: """
I have a server where I believe I have disabled root login via ssh. I think it is done correctly, as I cannot login with root myself via ssh, but I would’ve thought that it would be reflected in `/var/log/auth.log`. Instead, it shows up as failed password entry. Is this intended?\n
\n
What I’ve done is to uncomment the `PermitRootLogin no` line in `/etc/ssh/sshd_config`. Rest of the config file is left at default.\n
\n
Bonus question: All login attempts by ssh seems to go over some random port (even my own successful logins). Why is this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 20
+favouriteCount: 36
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699784052 {#1669
date: 2023-11-12 11:14:12.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1668 …}
+votes: Doctrine\ORM\PersistentCollection {#1679 …}
+reports: Doctrine\ORM\PersistentCollection {#1654 …}
+favourites: Doctrine\ORM\PersistentCollection {#1655 …}
+notifications: Doctrine\ORM\PersistentCollection {#1651 …}
+badges: Doctrine\ORM\PersistentCollection {#1656 …}
+children: []
-id: 11766
-titleTs: "'block':4 'login':6 'root':8 'ssh':5 'success':3"
-bodyTs: "'/etc/ssh/sshd_config':65 '/var/log/auth.log':41 'attempt':79 'believ':7 'bonus':75 'cannot':23 'config':69 'correct':20 'default':74 'disabl':10 'done':19,56 'entri':49 'even':89 'fail':47 'file':70 'go':84 'instead':42 'intend':52 'left':72 'line':63 'login':12,24,78,93 'password':48 'permitrootlogin':61 'port':88 'question':76 'random':87 'reflect':39 'rest':66 'root':11,26 'seem':82 'server':4 'show':44 'ssh':14,29,81 'success':92 'think':16 'thought':34 'uncom':59 've':33,55 'via':13,28 'would':32,37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699715739
+visibility: "visible "
+apId: "https://lemmy.ml/post/7770730"
+editedAt: null
+createdAt: DateTimeImmutable @1699629339 {#1670
date: 2023-11-10 16:15:39.0 +01:00
}
} |
|
Show voter details
|
17 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
18 |
DENIED
|
moderate
|
App\Entity\Entry {#1553
+user: Proxies\__CG__\App\Entity\User {#1552 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "How-to-disable-S0ix-and-enable-S3-Sleep-on-Ubuntu"
+title: "How to disable S0ix and enable S3 Sleep on Ubuntu 22.04 on Dell Latitude 3410"
+url: null
+body: """
Hello. I just want to ask, I already tried search many resources, but I still can’t find a way to reduce battery drain while sleep on Ubuntu on Dell laptop.\n
\n
I seen that it use S0ix, the new standard that many manufacturer use but when sleep it drains a lot battery, in just 6 hours the battery gone 0.\n
\n
Any help is appreciated. This is company laptop and it requires me use ubuntu (I don’t like it but I don’t have options to changes OS/distro).\n
\n
Thanks
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699764346 {#1662
date: 2023-11-12 05:45:46.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1590 …}
+votes: Doctrine\ORM\PersistentCollection {#1591 …}
+reports: Doctrine\ORM\PersistentCollection {#1589 …}
+favourites: Doctrine\ORM\PersistentCollection {#1582 …}
+notifications: Doctrine\ORM\PersistentCollection {#1583 …}
+badges: Doctrine\ORM\PersistentCollection {#1580 …}
+children: []
-id: 14218
-titleTs: "'22.04':11 '3410':15 'dell':13 'disabl':3 'enabl':6 'latitud':14 's0ix':4 's3':7 'sleep':8 'ubuntu':10"
-bodyTs: "'0':60 '6':55 'alreadi':8 'appreci':64 'ask':6 'batteri':23,52,58 'chang':87 'compani':67 'dell':30 'drain':24,49 'find':18 'gone':59 'hello':1 'help':62 'hour':56 'laptop':31,68 'like':78 'lot':51 'mani':11,42 'manufactur':43 'new':39 'option':85 'os/distro':88 'reduc':22 'requir':71 'resourc':12 's0ix':37 'search':10 'seen':33 'sleep':26,47 'standard':40 'still':15 'thank':89 'tri':9 'ubuntu':28,74 'use':36,44,73 'want':4 'way':20"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1696999861
+visibility: "visible "
+apId: "https://lemmy.my.id/post/518900"
+editedAt: null
+createdAt: DateTimeImmutable @1696986861 {#1663
date: 2023-10-11 03:14:21.0 +02:00
}
} |
|
Show voter details
|
19 |
DENIED
|
edit
|
App\Entity\Entry {#1553
+user: Proxies\__CG__\App\Entity\User {#1552 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "How-to-disable-S0ix-and-enable-S3-Sleep-on-Ubuntu"
+title: "How to disable S0ix and enable S3 Sleep on Ubuntu 22.04 on Dell Latitude 3410"
+url: null
+body: """
Hello. I just want to ask, I already tried search many resources, but I still can’t find a way to reduce battery drain while sleep on Ubuntu on Dell laptop.\n
\n
I seen that it use S0ix, the new standard that many manufacturer use but when sleep it drains a lot battery, in just 6 hours the battery gone 0.\n
\n
Any help is appreciated. This is company laptop and it requires me use ubuntu (I don’t like it but I don’t have options to changes OS/distro).\n
\n
Thanks
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699764346 {#1662
date: 2023-11-12 05:45:46.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1590 …}
+votes: Doctrine\ORM\PersistentCollection {#1591 …}
+reports: Doctrine\ORM\PersistentCollection {#1589 …}
+favourites: Doctrine\ORM\PersistentCollection {#1582 …}
+notifications: Doctrine\ORM\PersistentCollection {#1583 …}
+badges: Doctrine\ORM\PersistentCollection {#1580 …}
+children: []
-id: 14218
-titleTs: "'22.04':11 '3410':15 'dell':13 'disabl':3 'enabl':6 'latitud':14 's0ix':4 's3':7 'sleep':8 'ubuntu':10"
-bodyTs: "'0':60 '6':55 'alreadi':8 'appreci':64 'ask':6 'batteri':23,52,58 'chang':87 'compani':67 'dell':30 'drain':24,49 'find':18 'gone':59 'hello':1 'help':62 'hour':56 'laptop':31,68 'like':78 'lot':51 'mani':11,42 'manufactur':43 'new':39 'option':85 'os/distro':88 'reduc':22 'requir':71 'resourc':12 's0ix':37 'search':10 'seen':33 'sleep':26,47 'standard':40 'still':15 'thank':89 'tri':9 'ubuntu':28,74 'use':36,44,73 'want':4 'way':20"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1696999861
+visibility: "visible "
+apId: "https://lemmy.my.id/post/518900"
+editedAt: null
+createdAt: DateTimeImmutable @1696986861 {#1663
date: 2023-10-11 03:14:21.0 +02:00
}
} |
|
Show voter details
|
20 |
DENIED
|
moderate
|
App\Entity\Entry {#1553
+user: Proxies\__CG__\App\Entity\User {#1552 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "How-to-disable-S0ix-and-enable-S3-Sleep-on-Ubuntu"
+title: "How to disable S0ix and enable S3 Sleep on Ubuntu 22.04 on Dell Latitude 3410"
+url: null
+body: """
Hello. I just want to ask, I already tried search many resources, but I still can’t find a way to reduce battery drain while sleep on Ubuntu on Dell laptop.\n
\n
I seen that it use S0ix, the new standard that many manufacturer use but when sleep it drains a lot battery, in just 6 hours the battery gone 0.\n
\n
Any help is appreciated. This is company laptop and it requires me use ubuntu (I don’t like it but I don’t have options to changes OS/distro).\n
\n
Thanks
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699764346 {#1662
date: 2023-11-12 05:45:46.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1590 …}
+votes: Doctrine\ORM\PersistentCollection {#1591 …}
+reports: Doctrine\ORM\PersistentCollection {#1589 …}
+favourites: Doctrine\ORM\PersistentCollection {#1582 …}
+notifications: Doctrine\ORM\PersistentCollection {#1583 …}
+badges: Doctrine\ORM\PersistentCollection {#1580 …}
+children: []
-id: 14218
-titleTs: "'22.04':11 '3410':15 'dell':13 'disabl':3 'enabl':6 'latitud':14 's0ix':4 's3':7 'sleep':8 'ubuntu':10"
-bodyTs: "'0':60 '6':55 'alreadi':8 'appreci':64 'ask':6 'batteri':23,52,58 'chang':87 'compani':67 'dell':30 'drain':24,49 'find':18 'gone':59 'hello':1 'help':62 'hour':56 'laptop':31,68 'like':78 'lot':51 'mani':11,42 'manufactur':43 'new':39 'option':85 'os/distro':88 'reduc':22 'requir':71 'resourc':12 's0ix':37 'search':10 'seen':33 'sleep':26,47 'standard':40 'still':15 'thank':89 'tri':9 'ubuntu':28,74 'use':36,44,73 'want':4 'way':20"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1696999861
+visibility: "visible "
+apId: "https://lemmy.my.id/post/518900"
+editedAt: null
+createdAt: DateTimeImmutable @1696986861 {#1663
date: 2023-10-11 03:14:21.0 +02:00
}
} |
|
Show voter details
|
21 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
22 |
DENIED
|
moderate
|
App\Entity\Entry {#1588
+user: Proxies\__CG__\App\Entity\User {#1572 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Audio-Hardware-Question-from-a-Linux-newbie"
+title: "Audio Hardware Question from a Linux newbie"
+url: null
+body: """
I’m a pretty new Linux user, started using a basic Mint installation on the old desktop I use as part of my stereo/tv setup. All in all couldnt be happier with how easy and flexible it’s been, but one little thing is bugging the crap out of me and I haven’t a clue how to fix.\n
\n
This setup runs the computer audio through a mojo DAC over TOSLINK (eg optical audio) to an analog stereo amp. Getting it to work when I replaced Win 7 with Mint was plug and play - couldn’t have been easier. The super annoying thing is that it seems that now if the desktop is inactive for more than a few minutes the DAC powers down and needs to be turned on manually (fairly certain it’s when the OS goes to sleep but not sure). When I was running windows with same hardware it would not power down until I did it manually. With the wiring and furniture setup I have it’s kind of a PITA to reach back and turn the DAC on every time I want to use the computer.\n
\n
I did some cursory internet searches on the issue without much luck. If one of you fine people can think of a solution, it even an avenue of investigation, I’d appreciate it. As I said, I’m new to Linux but not entirely tech illiterate so im willing to poke at it.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699745061 {#1584
date: 2023-11-12 00:24:21.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1574 …}
+votes: Doctrine\ORM\PersistentCollection {#1587 …}
+reports: Doctrine\ORM\PersistentCollection {#1573 …}
+favourites: Doctrine\ORM\PersistentCollection {#1576 …}
+notifications: Doctrine\ORM\PersistentCollection {#1549 …}
+badges: Doctrine\ORM\PersistentCollection {#1568 …}
+children: []
-id: 12085
-titleTs: "'audio':1 'hardwar':2 'linux':6 'newbi':7 'question':3"
-bodyTs: "'7':88 'amp':79 'analog':77 'annoy':102 'appreci':224 'audio':65,74 'avenu':219 'back':179 'basic':11 'bug':45 'certain':133 'clue':56 'comput':64,192 'couldn':95 'couldnt':29 'crap':47 'cursori':196 'd':223 'dac':69,122,183 'desktop':17,112 'easi':34 'easier':99 'eg':72 'entir':236 'even':217 'everi':185 'fair':132 'fine':209 'fix':59 'flexibl':36 'furnitur':167 'get':80 'goe':139 'happier':31 'hardwar':152 'haven':53 'illiter':238 'im':240 'inact':114 'instal':13 'internet':197 'investig':221 'issu':201 'kind':173 'linux':6,233 'littl':42 'luck':204 'm':2,230 'manual':131,162 'mint':12,90 'minut':120 'mojo':68 'much':203 'need':126 'new':5,231 'old':16 'one':41,206 'optic':73 'os':138 'part':21 'peopl':210 'pita':176 'play':94 'plug':92 'poke':243 'power':123,156 'pretti':4 'reach':178 'replac':86 'run':62,148 'said':228 'search':198 'seem':107 'setup':25,61,168 'sleep':141 'solut':215 'start':8 'stereo':78 'stereo/tv':24 'super':101 'sure':144 'tech':237 'thing':43,103 'think':212 'time':186 'toslink':71 'turn':129,181 'use':9,19,190 'user':7 'want':188 'will':241 'win':87 'window':149 'wire':165 'without':202 'work':83 'would':154"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699807636
+visibility: "visible "
+apId: "https://sh.itjust.works/post/8970822"
+editedAt: null
+createdAt: DateTimeImmutable @1699728136 {#1581
date: 2023-11-11 19:42:16.0 +01:00
}
} |
|
Show voter details
|
23 |
DENIED
|
edit
|
App\Entity\Entry {#1588
+user: Proxies\__CG__\App\Entity\User {#1572 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Audio-Hardware-Question-from-a-Linux-newbie"
+title: "Audio Hardware Question from a Linux newbie"
+url: null
+body: """
I’m a pretty new Linux user, started using a basic Mint installation on the old desktop I use as part of my stereo/tv setup. All in all couldnt be happier with how easy and flexible it’s been, but one little thing is bugging the crap out of me and I haven’t a clue how to fix.\n
\n
This setup runs the computer audio through a mojo DAC over TOSLINK (eg optical audio) to an analog stereo amp. Getting it to work when I replaced Win 7 with Mint was plug and play - couldn’t have been easier. The super annoying thing is that it seems that now if the desktop is inactive for more than a few minutes the DAC powers down and needs to be turned on manually (fairly certain it’s when the OS goes to sleep but not sure). When I was running windows with same hardware it would not power down until I did it manually. With the wiring and furniture setup I have it’s kind of a PITA to reach back and turn the DAC on every time I want to use the computer.\n
\n
I did some cursory internet searches on the issue without much luck. If one of you fine people can think of a solution, it even an avenue of investigation, I’d appreciate it. As I said, I’m new to Linux but not entirely tech illiterate so im willing to poke at it.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699745061 {#1584
date: 2023-11-12 00:24:21.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1574 …}
+votes: Doctrine\ORM\PersistentCollection {#1587 …}
+reports: Doctrine\ORM\PersistentCollection {#1573 …}
+favourites: Doctrine\ORM\PersistentCollection {#1576 …}
+notifications: Doctrine\ORM\PersistentCollection {#1549 …}
+badges: Doctrine\ORM\PersistentCollection {#1568 …}
+children: []
-id: 12085
-titleTs: "'audio':1 'hardwar':2 'linux':6 'newbi':7 'question':3"
-bodyTs: "'7':88 'amp':79 'analog':77 'annoy':102 'appreci':224 'audio':65,74 'avenu':219 'back':179 'basic':11 'bug':45 'certain':133 'clue':56 'comput':64,192 'couldn':95 'couldnt':29 'crap':47 'cursori':196 'd':223 'dac':69,122,183 'desktop':17,112 'easi':34 'easier':99 'eg':72 'entir':236 'even':217 'everi':185 'fair':132 'fine':209 'fix':59 'flexibl':36 'furnitur':167 'get':80 'goe':139 'happier':31 'hardwar':152 'haven':53 'illiter':238 'im':240 'inact':114 'instal':13 'internet':197 'investig':221 'issu':201 'kind':173 'linux':6,233 'littl':42 'luck':204 'm':2,230 'manual':131,162 'mint':12,90 'minut':120 'mojo':68 'much':203 'need':126 'new':5,231 'old':16 'one':41,206 'optic':73 'os':138 'part':21 'peopl':210 'pita':176 'play':94 'plug':92 'poke':243 'power':123,156 'pretti':4 'reach':178 'replac':86 'run':62,148 'said':228 'search':198 'seem':107 'setup':25,61,168 'sleep':141 'solut':215 'start':8 'stereo':78 'stereo/tv':24 'super':101 'sure':144 'tech':237 'thing':43,103 'think':212 'time':186 'toslink':71 'turn':129,181 'use':9,19,190 'user':7 'want':188 'will':241 'win':87 'window':149 'wire':165 'without':202 'work':83 'would':154"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699807636
+visibility: "visible "
+apId: "https://sh.itjust.works/post/8970822"
+editedAt: null
+createdAt: DateTimeImmutable @1699728136 {#1581
date: 2023-11-11 19:42:16.0 +01:00
}
} |
|
Show voter details
|
24 |
DENIED
|
moderate
|
App\Entity\Entry {#1588
+user: Proxies\__CG__\App\Entity\User {#1572 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Audio-Hardware-Question-from-a-Linux-newbie"
+title: "Audio Hardware Question from a Linux newbie"
+url: null
+body: """
I’m a pretty new Linux user, started using a basic Mint installation on the old desktop I use as part of my stereo/tv setup. All in all couldnt be happier with how easy and flexible it’s been, but one little thing is bugging the crap out of me and I haven’t a clue how to fix.\n
\n
This setup runs the computer audio through a mojo DAC over TOSLINK (eg optical audio) to an analog stereo amp. Getting it to work when I replaced Win 7 with Mint was plug and play - couldn’t have been easier. The super annoying thing is that it seems that now if the desktop is inactive for more than a few minutes the DAC powers down and needs to be turned on manually (fairly certain it’s when the OS goes to sleep but not sure). When I was running windows with same hardware it would not power down until I did it manually. With the wiring and furniture setup I have it’s kind of a PITA to reach back and turn the DAC on every time I want to use the computer.\n
\n
I did some cursory internet searches on the issue without much luck. If one of you fine people can think of a solution, it even an avenue of investigation, I’d appreciate it. As I said, I’m new to Linux but not entirely tech illiterate so im willing to poke at it.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699745061 {#1584
date: 2023-11-12 00:24:21.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1574 …}
+votes: Doctrine\ORM\PersistentCollection {#1587 …}
+reports: Doctrine\ORM\PersistentCollection {#1573 …}
+favourites: Doctrine\ORM\PersistentCollection {#1576 …}
+notifications: Doctrine\ORM\PersistentCollection {#1549 …}
+badges: Doctrine\ORM\PersistentCollection {#1568 …}
+children: []
-id: 12085
-titleTs: "'audio':1 'hardwar':2 'linux':6 'newbi':7 'question':3"
-bodyTs: "'7':88 'amp':79 'analog':77 'annoy':102 'appreci':224 'audio':65,74 'avenu':219 'back':179 'basic':11 'bug':45 'certain':133 'clue':56 'comput':64,192 'couldn':95 'couldnt':29 'crap':47 'cursori':196 'd':223 'dac':69,122,183 'desktop':17,112 'easi':34 'easier':99 'eg':72 'entir':236 'even':217 'everi':185 'fair':132 'fine':209 'fix':59 'flexibl':36 'furnitur':167 'get':80 'goe':139 'happier':31 'hardwar':152 'haven':53 'illiter':238 'im':240 'inact':114 'instal':13 'internet':197 'investig':221 'issu':201 'kind':173 'linux':6,233 'littl':42 'luck':204 'm':2,230 'manual':131,162 'mint':12,90 'minut':120 'mojo':68 'much':203 'need':126 'new':5,231 'old':16 'one':41,206 'optic':73 'os':138 'part':21 'peopl':210 'pita':176 'play':94 'plug':92 'poke':243 'power':123,156 'pretti':4 'reach':178 'replac':86 'run':62,148 'said':228 'search':198 'seem':107 'setup':25,61,168 'sleep':141 'solut':215 'start':8 'stereo':78 'stereo/tv':24 'super':101 'sure':144 'tech':237 'thing':43,103 'think':212 'time':186 'toslink':71 'turn':129,181 'use':9,19,190 'user':7 'want':188 'will':241 'win':87 'window':149 'wire':165 'without':202 'work':83 'would':154"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699807636
+visibility: "visible "
+apId: "https://sh.itjust.works/post/8970822"
+editedAt: null
+createdAt: DateTimeImmutable @1699728136 {#1581
date: 2023-11-11 19:42:16.0 +01:00
}
} |
|
Show voter details
|
25 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
26 |
DENIED
|
moderate
|
App\Entity\Entry {#1561
+user: Proxies\__CG__\App\Entity\User {#1525 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Why-are-we-stuck-with-bash-programming-language-in-the"
+title: "Why are we stuck with bash programming language in the shell?"
+url: null
+body: """
Bash-like scripting has become ubiquitous in operating systems, and it makes me wonder about its widespread adoption despite lacking certain programming conveniences found in other languages. While it may not be the ideal choice for large-scale software development, the bash shell possesses unique features that make it well-suited for interactive command-line processing, including pipelining, text manipulation, and file handling. Why isn’t there an alternative that combines the best of bash’s command-line capabilities with the robustness and scalability of traditional programming languages. Why do even new operating systems, such as Redox OS, opt for a similar syntax rather than a completely different programming language?\n
\n
Here are some of the limitations I find in Bash compared to other programming languages:\n
\n
1. Syntax and Expressiveness:\n
\n
\n
- Bash has a relatively simple syntax compared to other programming languages. It lacks some advanced language features such as object-oriented programming, complex data structures, and advanced control flow constructs.\n
- The syntax of Bash can be less intuitive and more error-prone, especially for complex tasks or larger projects.\n
2. Performance:\n
\n
\n
- Bash scripts can be slower compared to compiled languages like C or Java. This is because Bash is an interpreted language, and each line of code is interpreted at runtime.\n
- Bash may not be the best choice for computationally intensive tasks or applications that require high performance.\n
3. Error Handling and Debugging:\n
\n
\n
- Error handling and debugging in Bash can be challenging. Bash does not provide robust error handling mechanisms, and error messages can be cryptic and difficult to interpret.\n
- Debugging Bash scripts can be cumbersome, as there is limited tooling and debugging support compared to other programming languages.\n
4. Portability:\n
\n
\n
- While Bash is available on most Unix-like systems, it may not be available on all platforms or versions. This can limit the portability of Bash scripts.\n
- Bash scripts may not work as expected on non-Unix systems or require modifications to run on different platforms.\n
5. Limited Standard Library:\n
\n
\n
- Bash has a limited standard library compared to other programming languages. It lacks comprehensive libraries for tasks such as networking, database access, or advanced data manipulation.\n
- Bash often relies on external tools or utilities to perform complex operations, which can introduce dependencies and compatibility issues.\n
6. Lack of Modularity and Reusability:\n
\n
\n
- Bash scripts can become monolithic and difficult to maintain as they grow in size. Bash does not provide strong mechanisms for modularization or code reuse.\n
- Reusing code or creating libraries in Bash can be challenging, leading to code duplication and decreased maintainability.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699741250 {#1528
date: 2023-11-11 23:20:50.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1567 …}
+votes: Doctrine\ORM\PersistentCollection {#1559 …}
+reports: Doctrine\ORM\PersistentCollection {#1564 …}
+favourites: Doctrine\ORM\PersistentCollection {#1563 …}
+notifications: Doctrine\ORM\PersistentCollection {#1565 …}
+badges: Doctrine\ORM\PersistentCollection {#1558 …}
+children: []
-id: 13188
-titleTs: "'bash':6 'languag':8 'program':7 'shell':11 'stuck':4"
-bodyTs: "'1':131 '2':186 '3':235 '4':286 '5':336 '6':385 'access':361 'adopt':19 'advanc':149,162,363 'altern':73 'applic':230 'avail':291,302 'bash':2,44,79,125,135,169,188,204,218,245,249,268,289,314,316,340,366,391,405,422 'bash-lik':1 'becom':6,394 'best':77,223 'c':198 'capabl':84 'certain':22 'challeng':248,425 'choic':36,224 'code':213,414,417,428 'combin':75 'command':58,82 'command-lin':57,81 'compar':126,141,193,281,346 'compat':383 'compil':195 'complet':112 'complex':158,181,376 'comprehens':353 'comput':226 'construct':165 'control':163 'conveni':24 'creat':419 'cryptic':262 'cumbersom':272 'data':159,364 'databas':360 'debug':239,243,267,279 'decreas':431 'depend':381 'despit':20 'develop':42 'differ':113,334 'difficult':264,397 'duplic':429 'error':177,236,240,254,258 'error-pron':176 'especi':179 'even':96 'expect':322 'express':134 'extern':370 'featur':48,151 'file':66 'find':123 'flow':164 'found':25 'grow':402 'handl':67,237,241,255 'high':233 'ideal':35 'includ':61 'intens':227 'interact':56 'interpret':207,215,266 'introduc':380 'intuit':173 'isn':69 'issu':384 'java':200 'lack':21,147,352,386 'languag':28,93,115,130,145,150,196,208,285,350 'larg':39 'large-scal':38 'larger':184 'lead':426 'less':172 'librari':339,345,354,420 'like':3,197,296 'limit':121,276,310,337,343 'line':59,83,211 'maintain':399,432 'make':13,50 'manipul':64,365 'may':31,219,299,318 'mechan':256,410 'messag':259 'modif':330 'modular':388,412 'monolith':395 'network':359 'new':97 'non':325 'non-unix':324 'object':155 'object-ori':154 'often':367 'oper':9,98,377 'opt':104 'orient':156 'os':103 'perform':187,234,375 'pipelin':62 'platform':305,335 'portabl':287,312 'possess':46 'process':60 'program':23,92,114,129,144,157,284,349 'project':185 'prone':178 'provid':252,408 'rather':109 'redox':102 'relat':138 'reli':368 'requir':232,329 'reus':415,416 'reusabl':390 'robust':87,253 'run':332 'runtim':217 'scalabl':89 'scale':40 'script':4,189,269,315,317,392 'shell':45 'similar':107 'simpl':139 'size':404 'slower':192 'softwar':41 'standard':338,344 'strong':409 'structur':160 'suit':54 'support':280 'syntax':108,132,140,167 'system':10,99,297,327 'task':182,228,356 'text':63 'tool':277,371 'tradit':91 'ubiquit':7 'uniqu':47 'unix':295,326 'unix-lik':294 'util':373 'version':307 'well':53 'well-suit':52 'widespread':18 'wonder':15 'work':320"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1689167886
+visibility: "visible "
+apId: "https://lemm.ee/post/1041841"
+editedAt: null
+createdAt: DateTimeImmutable @1689154886 {#1527
date: 2023-07-12 11:41:26.0 +02:00
}
} |
|
Show voter details
|
27 |
DENIED
|
edit
|
App\Entity\Entry {#1561
+user: Proxies\__CG__\App\Entity\User {#1525 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Why-are-we-stuck-with-bash-programming-language-in-the"
+title: "Why are we stuck with bash programming language in the shell?"
+url: null
+body: """
Bash-like scripting has become ubiquitous in operating systems, and it makes me wonder about its widespread adoption despite lacking certain programming conveniences found in other languages. While it may not be the ideal choice for large-scale software development, the bash shell possesses unique features that make it well-suited for interactive command-line processing, including pipelining, text manipulation, and file handling. Why isn’t there an alternative that combines the best of bash’s command-line capabilities with the robustness and scalability of traditional programming languages. Why do even new operating systems, such as Redox OS, opt for a similar syntax rather than a completely different programming language?\n
\n
Here are some of the limitations I find in Bash compared to other programming languages:\n
\n
1. Syntax and Expressiveness:\n
\n
\n
- Bash has a relatively simple syntax compared to other programming languages. It lacks some advanced language features such as object-oriented programming, complex data structures, and advanced control flow constructs.\n
- The syntax of Bash can be less intuitive and more error-prone, especially for complex tasks or larger projects.\n
2. Performance:\n
\n
\n
- Bash scripts can be slower compared to compiled languages like C or Java. This is because Bash is an interpreted language, and each line of code is interpreted at runtime.\n
- Bash may not be the best choice for computationally intensive tasks or applications that require high performance.\n
3. Error Handling and Debugging:\n
\n
\n
- Error handling and debugging in Bash can be challenging. Bash does not provide robust error handling mechanisms, and error messages can be cryptic and difficult to interpret.\n
- Debugging Bash scripts can be cumbersome, as there is limited tooling and debugging support compared to other programming languages.\n
4. Portability:\n
\n
\n
- While Bash is available on most Unix-like systems, it may not be available on all platforms or versions. This can limit the portability of Bash scripts.\n
- Bash scripts may not work as expected on non-Unix systems or require modifications to run on different platforms.\n
5. Limited Standard Library:\n
\n
\n
- Bash has a limited standard library compared to other programming languages. It lacks comprehensive libraries for tasks such as networking, database access, or advanced data manipulation.\n
- Bash often relies on external tools or utilities to perform complex operations, which can introduce dependencies and compatibility issues.\n
6. Lack of Modularity and Reusability:\n
\n
\n
- Bash scripts can become monolithic and difficult to maintain as they grow in size. Bash does not provide strong mechanisms for modularization or code reuse.\n
- Reusing code or creating libraries in Bash can be challenging, leading to code duplication and decreased maintainability.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699741250 {#1528
date: 2023-11-11 23:20:50.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1567 …}
+votes: Doctrine\ORM\PersistentCollection {#1559 …}
+reports: Doctrine\ORM\PersistentCollection {#1564 …}
+favourites: Doctrine\ORM\PersistentCollection {#1563 …}
+notifications: Doctrine\ORM\PersistentCollection {#1565 …}
+badges: Doctrine\ORM\PersistentCollection {#1558 …}
+children: []
-id: 13188
-titleTs: "'bash':6 'languag':8 'program':7 'shell':11 'stuck':4"
-bodyTs: "'1':131 '2':186 '3':235 '4':286 '5':336 '6':385 'access':361 'adopt':19 'advanc':149,162,363 'altern':73 'applic':230 'avail':291,302 'bash':2,44,79,125,135,169,188,204,218,245,249,268,289,314,316,340,366,391,405,422 'bash-lik':1 'becom':6,394 'best':77,223 'c':198 'capabl':84 'certain':22 'challeng':248,425 'choic':36,224 'code':213,414,417,428 'combin':75 'command':58,82 'command-lin':57,81 'compar':126,141,193,281,346 'compat':383 'compil':195 'complet':112 'complex':158,181,376 'comprehens':353 'comput':226 'construct':165 'control':163 'conveni':24 'creat':419 'cryptic':262 'cumbersom':272 'data':159,364 'databas':360 'debug':239,243,267,279 'decreas':431 'depend':381 'despit':20 'develop':42 'differ':113,334 'difficult':264,397 'duplic':429 'error':177,236,240,254,258 'error-pron':176 'especi':179 'even':96 'expect':322 'express':134 'extern':370 'featur':48,151 'file':66 'find':123 'flow':164 'found':25 'grow':402 'handl':67,237,241,255 'high':233 'ideal':35 'includ':61 'intens':227 'interact':56 'interpret':207,215,266 'introduc':380 'intuit':173 'isn':69 'issu':384 'java':200 'lack':21,147,352,386 'languag':28,93,115,130,145,150,196,208,285,350 'larg':39 'large-scal':38 'larger':184 'lead':426 'less':172 'librari':339,345,354,420 'like':3,197,296 'limit':121,276,310,337,343 'line':59,83,211 'maintain':399,432 'make':13,50 'manipul':64,365 'may':31,219,299,318 'mechan':256,410 'messag':259 'modif':330 'modular':388,412 'monolith':395 'network':359 'new':97 'non':325 'non-unix':324 'object':155 'object-ori':154 'often':367 'oper':9,98,377 'opt':104 'orient':156 'os':103 'perform':187,234,375 'pipelin':62 'platform':305,335 'portabl':287,312 'possess':46 'process':60 'program':23,92,114,129,144,157,284,349 'project':185 'prone':178 'provid':252,408 'rather':109 'redox':102 'relat':138 'reli':368 'requir':232,329 'reus':415,416 'reusabl':390 'robust':87,253 'run':332 'runtim':217 'scalabl':89 'scale':40 'script':4,189,269,315,317,392 'shell':45 'similar':107 'simpl':139 'size':404 'slower':192 'softwar':41 'standard':338,344 'strong':409 'structur':160 'suit':54 'support':280 'syntax':108,132,140,167 'system':10,99,297,327 'task':182,228,356 'text':63 'tool':277,371 'tradit':91 'ubiquit':7 'uniqu':47 'unix':295,326 'unix-lik':294 'util':373 'version':307 'well':53 'well-suit':52 'widespread':18 'wonder':15 'work':320"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1689167886
+visibility: "visible "
+apId: "https://lemm.ee/post/1041841"
+editedAt: null
+createdAt: DateTimeImmutable @1689154886 {#1527
date: 2023-07-12 11:41:26.0 +02:00
}
} |
|
Show voter details
|
28 |
DENIED
|
moderate
|
App\Entity\Entry {#1561
+user: Proxies\__CG__\App\Entity\User {#1525 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Why-are-we-stuck-with-bash-programming-language-in-the"
+title: "Why are we stuck with bash programming language in the shell?"
+url: null
+body: """
Bash-like scripting has become ubiquitous in operating systems, and it makes me wonder about its widespread adoption despite lacking certain programming conveniences found in other languages. While it may not be the ideal choice for large-scale software development, the bash shell possesses unique features that make it well-suited for interactive command-line processing, including pipelining, text manipulation, and file handling. Why isn’t there an alternative that combines the best of bash’s command-line capabilities with the robustness and scalability of traditional programming languages. Why do even new operating systems, such as Redox OS, opt for a similar syntax rather than a completely different programming language?\n
\n
Here are some of the limitations I find in Bash compared to other programming languages:\n
\n
1. Syntax and Expressiveness:\n
\n
\n
- Bash has a relatively simple syntax compared to other programming languages. It lacks some advanced language features such as object-oriented programming, complex data structures, and advanced control flow constructs.\n
- The syntax of Bash can be less intuitive and more error-prone, especially for complex tasks or larger projects.\n
2. Performance:\n
\n
\n
- Bash scripts can be slower compared to compiled languages like C or Java. This is because Bash is an interpreted language, and each line of code is interpreted at runtime.\n
- Bash may not be the best choice for computationally intensive tasks or applications that require high performance.\n
3. Error Handling and Debugging:\n
\n
\n
- Error handling and debugging in Bash can be challenging. Bash does not provide robust error handling mechanisms, and error messages can be cryptic and difficult to interpret.\n
- Debugging Bash scripts can be cumbersome, as there is limited tooling and debugging support compared to other programming languages.\n
4. Portability:\n
\n
\n
- While Bash is available on most Unix-like systems, it may not be available on all platforms or versions. This can limit the portability of Bash scripts.\n
- Bash scripts may not work as expected on non-Unix systems or require modifications to run on different platforms.\n
5. Limited Standard Library:\n
\n
\n
- Bash has a limited standard library compared to other programming languages. It lacks comprehensive libraries for tasks such as networking, database access, or advanced data manipulation.\n
- Bash often relies on external tools or utilities to perform complex operations, which can introduce dependencies and compatibility issues.\n
6. Lack of Modularity and Reusability:\n
\n
\n
- Bash scripts can become monolithic and difficult to maintain as they grow in size. Bash does not provide strong mechanisms for modularization or code reuse.\n
- Reusing code or creating libraries in Bash can be challenging, leading to code duplication and decreased maintainability.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699741250 {#1528
date: 2023-11-11 23:20:50.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1567 …}
+votes: Doctrine\ORM\PersistentCollection {#1559 …}
+reports: Doctrine\ORM\PersistentCollection {#1564 …}
+favourites: Doctrine\ORM\PersistentCollection {#1563 …}
+notifications: Doctrine\ORM\PersistentCollection {#1565 …}
+badges: Doctrine\ORM\PersistentCollection {#1558 …}
+children: []
-id: 13188
-titleTs: "'bash':6 'languag':8 'program':7 'shell':11 'stuck':4"
-bodyTs: "'1':131 '2':186 '3':235 '4':286 '5':336 '6':385 'access':361 'adopt':19 'advanc':149,162,363 'altern':73 'applic':230 'avail':291,302 'bash':2,44,79,125,135,169,188,204,218,245,249,268,289,314,316,340,366,391,405,422 'bash-lik':1 'becom':6,394 'best':77,223 'c':198 'capabl':84 'certain':22 'challeng':248,425 'choic':36,224 'code':213,414,417,428 'combin':75 'command':58,82 'command-lin':57,81 'compar':126,141,193,281,346 'compat':383 'compil':195 'complet':112 'complex':158,181,376 'comprehens':353 'comput':226 'construct':165 'control':163 'conveni':24 'creat':419 'cryptic':262 'cumbersom':272 'data':159,364 'databas':360 'debug':239,243,267,279 'decreas':431 'depend':381 'despit':20 'develop':42 'differ':113,334 'difficult':264,397 'duplic':429 'error':177,236,240,254,258 'error-pron':176 'especi':179 'even':96 'expect':322 'express':134 'extern':370 'featur':48,151 'file':66 'find':123 'flow':164 'found':25 'grow':402 'handl':67,237,241,255 'high':233 'ideal':35 'includ':61 'intens':227 'interact':56 'interpret':207,215,266 'introduc':380 'intuit':173 'isn':69 'issu':384 'java':200 'lack':21,147,352,386 'languag':28,93,115,130,145,150,196,208,285,350 'larg':39 'large-scal':38 'larger':184 'lead':426 'less':172 'librari':339,345,354,420 'like':3,197,296 'limit':121,276,310,337,343 'line':59,83,211 'maintain':399,432 'make':13,50 'manipul':64,365 'may':31,219,299,318 'mechan':256,410 'messag':259 'modif':330 'modular':388,412 'monolith':395 'network':359 'new':97 'non':325 'non-unix':324 'object':155 'object-ori':154 'often':367 'oper':9,98,377 'opt':104 'orient':156 'os':103 'perform':187,234,375 'pipelin':62 'platform':305,335 'portabl':287,312 'possess':46 'process':60 'program':23,92,114,129,144,157,284,349 'project':185 'prone':178 'provid':252,408 'rather':109 'redox':102 'relat':138 'reli':368 'requir':232,329 'reus':415,416 'reusabl':390 'robust':87,253 'run':332 'runtim':217 'scalabl':89 'scale':40 'script':4,189,269,315,317,392 'shell':45 'similar':107 'simpl':139 'size':404 'slower':192 'softwar':41 'standard':338,344 'strong':409 'structur':160 'suit':54 'support':280 'syntax':108,132,140,167 'system':10,99,297,327 'task':182,228,356 'text':63 'tool':277,371 'tradit':91 'ubiquit':7 'uniqu':47 'unix':295,326 'unix-lik':294 'util':373 'version':307 'well':53 'well-suit':52 'widespread':18 'wonder':15 'work':320"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1689167886
+visibility: "visible "
+apId: "https://lemm.ee/post/1041841"
+editedAt: null
+createdAt: DateTimeImmutable @1689154886 {#1527
date: 2023-07-12 11:41:26.0 +02:00
}
} |
|
Show voter details
|
29 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
30 |
DENIED
|
moderate
|
App\Entity\Entry {#1621
+user: Proxies\__CG__\App\Entity\User {#1620 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Fonts"
+title: "Fonts"
+url: null
+body: "I always use Windows fonts with Linux. What font do you use?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 44
+favouriteCount: 42
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699722577 {#1557
date: 2023-11-11 18:09:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1613 …}
+votes: Doctrine\ORM\PersistentCollection {#1596 …}
+reports: Doctrine\ORM\PersistentCollection {#1702 …}
+favourites: Doctrine\ORM\PersistentCollection {#1683 …}
+notifications: Doctrine\ORM\PersistentCollection {#1680 …}
+badges: Doctrine\ORM\PersistentCollection {#1686 …}
+children: []
-id: 11680
-titleTs: "'font':1"
-bodyTs: "'alway':2 'font':5,9 'linux':7 'use':3,12 'window':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699686359
+visibility: "visible "
+apId: "https://lemmy.world/post/8050039"
+editedAt: null
+createdAt: DateTimeImmutable @1699599959 {#1555
date: 2023-11-10 08:05:59.0 +01:00
}
} |
|
Show voter details
|
31 |
DENIED
|
edit
|
App\Entity\Entry {#1621
+user: Proxies\__CG__\App\Entity\User {#1620 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Fonts"
+title: "Fonts"
+url: null
+body: "I always use Windows fonts with Linux. What font do you use?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 44
+favouriteCount: 42
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699722577 {#1557
date: 2023-11-11 18:09:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1613 …}
+votes: Doctrine\ORM\PersistentCollection {#1596 …}
+reports: Doctrine\ORM\PersistentCollection {#1702 …}
+favourites: Doctrine\ORM\PersistentCollection {#1683 …}
+notifications: Doctrine\ORM\PersistentCollection {#1680 …}
+badges: Doctrine\ORM\PersistentCollection {#1686 …}
+children: []
-id: 11680
-titleTs: "'font':1"
-bodyTs: "'alway':2 'font':5,9 'linux':7 'use':3,12 'window':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699686359
+visibility: "visible "
+apId: "https://lemmy.world/post/8050039"
+editedAt: null
+createdAt: DateTimeImmutable @1699599959 {#1555
date: 2023-11-10 08:05:59.0 +01:00
}
} |
|
Show voter details
|
32 |
DENIED
|
moderate
|
App\Entity\Entry {#1621
+user: Proxies\__CG__\App\Entity\User {#1620 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Fonts"
+title: "Fonts"
+url: null
+body: "I always use Windows fonts with Linux. What font do you use?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 44
+favouriteCount: 42
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699722577 {#1557
date: 2023-11-11 18:09:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1613 …}
+votes: Doctrine\ORM\PersistentCollection {#1596 …}
+reports: Doctrine\ORM\PersistentCollection {#1702 …}
+favourites: Doctrine\ORM\PersistentCollection {#1683 …}
+notifications: Doctrine\ORM\PersistentCollection {#1680 …}
+badges: Doctrine\ORM\PersistentCollection {#1686 …}
+children: []
-id: 11680
-titleTs: "'font':1"
-bodyTs: "'alway':2 'font':5,9 'linux':7 'use':3,12 'window':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699686359
+visibility: "visible "
+apId: "https://lemmy.world/post/8050039"
+editedAt: null
+createdAt: DateTimeImmutable @1699599959 {#1555
date: 2023-11-10 08:05:59.0 +01:00
}
} |
|
Show voter details
|
33 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
34 |
DENIED
|
moderate
|
App\Entity\Entry {#1705
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Clevo-Laptop-doesnt-boot-any-Linux-USB-sticks-partitions-not"
+title: "Clevo Laptop doesnt boot any Linux USB sticks? partitions not found, fstab errors and all?"
+url: null
+body: """
I am trying out a Clevo MZ41, pretty interesting machine. It is coreboot supported (Dasharo, in the future also Heads) which is exciting.\n
\n
But I cant boot any live Linux? I tried Fedora Media writer and KDEs iso image writer. I tried Fedora KDE and KDE Neon (you see a trend haha) and also Ventoy.\n
\n
These sticks normally always boot up, but here I get Dracut timeout, partition /root not found etc.\n
\n
In the insydeH2O Bios I already disabled Secureboot entirely (not even needed, that Bios is awesome I can even deploy my own keys and all). Nothing changed.\n
\n
```\n
\n
<span style="color:#323232;">Warning: /dev/disk/by-label/Fedora-KDE-Live-38-1-6 does not exist\n
</span><span style="color:#323232;">Warning: /dev/root does not exist\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">... emergency mode ...\n
</span>\n
```\n
\n
Anyone know whats going on here?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 11
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699719879 {#1692
date: 2023-11-11 17:24:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1711 …}
+votes: Doctrine\ORM\PersistentCollection {#1611 …}
+reports: Doctrine\ORM\PersistentCollection {#1630 …}
+favourites: Doctrine\ORM\PersistentCollection {#1628 …}
+notifications: Doctrine\ORM\PersistentCollection {#1599 …}
+badges: Doctrine\ORM\PersistentCollection {#1625 …}
+children: []
-id: 9998
-titleTs: "'boot':4 'clevo':1 'doesnt':3 'error':13 'found':11 'fstab':12 'laptop':2 'linux':6 'partit':9 'stick':8 'usb':7"
-bodyTs: "'/dev/disk/by-label/fedora-kde-live-38-1-6':101 '/dev/root':106 '/root':69 'alreadi':78 'also':19,54 'alway':59 'anyon':112 'awesom':88 'bio':76,86 'boot':27,60 'cant':26 'chang':99 'clevo':6 'coreboot':13 'dasharo':15 'deploy':92 'disabl':79 'dracut':66 'emerg':110 'entir':81 'etc':72 'even':83,91 'excit':23 'exist':104,109 'fedora':33,43 'found':71 'futur':18 'get':65 'go':115 'haha':52 'head':20 'imag':39 'insydeh2o':75 'interest':9 'iso':38 'kde':44,46 'kdes':37 'key':95 'know':113 'linux':30 'live':29 'machin':10 'media':34 'mode':111 'mz41':7 'need':84 'neon':47 'normal':58 'noth':98 'partit':68 'pretti':8 'secureboot':80 'see':49 'stick':57 'support':14 'timeout':67 'trend':51 'tri':3,32,42 'ventoy':55 'warn':100,105 'what':114 'writer':35,40"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699230363
+visibility: "visible "
+apId: "https://feddit.de/post/5307202"
+editedAt: null
+createdAt: DateTimeImmutable @1699143963 {#1795
date: 2023-11-05 01:26:03.0 +01:00
}
} |
|
Show voter details
|
35 |
DENIED
|
edit
|
App\Entity\Entry {#1705
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Clevo-Laptop-doesnt-boot-any-Linux-USB-sticks-partitions-not"
+title: "Clevo Laptop doesnt boot any Linux USB sticks? partitions not found, fstab errors and all?"
+url: null
+body: """
I am trying out a Clevo MZ41, pretty interesting machine. It is coreboot supported (Dasharo, in the future also Heads) which is exciting.\n
\n
But I cant boot any live Linux? I tried Fedora Media writer and KDEs iso image writer. I tried Fedora KDE and KDE Neon (you see a trend haha) and also Ventoy.\n
\n
These sticks normally always boot up, but here I get Dracut timeout, partition /root not found etc.\n
\n
In the insydeH2O Bios I already disabled Secureboot entirely (not even needed, that Bios is awesome I can even deploy my own keys and all). Nothing changed.\n
\n
```\n
\n
<span style="color:#323232;">Warning: /dev/disk/by-label/Fedora-KDE-Live-38-1-6 does not exist\n
</span><span style="color:#323232;">Warning: /dev/root does not exist\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">... emergency mode ...\n
</span>\n
```\n
\n
Anyone know whats going on here?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 11
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699719879 {#1692
date: 2023-11-11 17:24:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1711 …}
+votes: Doctrine\ORM\PersistentCollection {#1611 …}
+reports: Doctrine\ORM\PersistentCollection {#1630 …}
+favourites: Doctrine\ORM\PersistentCollection {#1628 …}
+notifications: Doctrine\ORM\PersistentCollection {#1599 …}
+badges: Doctrine\ORM\PersistentCollection {#1625 …}
+children: []
-id: 9998
-titleTs: "'boot':4 'clevo':1 'doesnt':3 'error':13 'found':11 'fstab':12 'laptop':2 'linux':6 'partit':9 'stick':8 'usb':7"
-bodyTs: "'/dev/disk/by-label/fedora-kde-live-38-1-6':101 '/dev/root':106 '/root':69 'alreadi':78 'also':19,54 'alway':59 'anyon':112 'awesom':88 'bio':76,86 'boot':27,60 'cant':26 'chang':99 'clevo':6 'coreboot':13 'dasharo':15 'deploy':92 'disabl':79 'dracut':66 'emerg':110 'entir':81 'etc':72 'even':83,91 'excit':23 'exist':104,109 'fedora':33,43 'found':71 'futur':18 'get':65 'go':115 'haha':52 'head':20 'imag':39 'insydeh2o':75 'interest':9 'iso':38 'kde':44,46 'kdes':37 'key':95 'know':113 'linux':30 'live':29 'machin':10 'media':34 'mode':111 'mz41':7 'need':84 'neon':47 'normal':58 'noth':98 'partit':68 'pretti':8 'secureboot':80 'see':49 'stick':57 'support':14 'timeout':67 'trend':51 'tri':3,32,42 'ventoy':55 'warn':100,105 'what':114 'writer':35,40"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699230363
+visibility: "visible "
+apId: "https://feddit.de/post/5307202"
+editedAt: null
+createdAt: DateTimeImmutable @1699143963 {#1795
date: 2023-11-05 01:26:03.0 +01:00
}
} |
|
Show voter details
|
36 |
DENIED
|
moderate
|
App\Entity\Entry {#1705
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Clevo-Laptop-doesnt-boot-any-Linux-USB-sticks-partitions-not"
+title: "Clevo Laptop doesnt boot any Linux USB sticks? partitions not found, fstab errors and all?"
+url: null
+body: """
I am trying out a Clevo MZ41, pretty interesting machine. It is coreboot supported (Dasharo, in the future also Heads) which is exciting.\n
\n
But I cant boot any live Linux? I tried Fedora Media writer and KDEs iso image writer. I tried Fedora KDE and KDE Neon (you see a trend haha) and also Ventoy.\n
\n
These sticks normally always boot up, but here I get Dracut timeout, partition /root not found etc.\n
\n
In the insydeH2O Bios I already disabled Secureboot entirely (not even needed, that Bios is awesome I can even deploy my own keys and all). Nothing changed.\n
\n
```\n
\n
<span style="color:#323232;">Warning: /dev/disk/by-label/Fedora-KDE-Live-38-1-6 does not exist\n
</span><span style="color:#323232;">Warning: /dev/root does not exist\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">... emergency mode ...\n
</span>\n
```\n
\n
Anyone know whats going on here?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 11
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699719879 {#1692
date: 2023-11-11 17:24:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1711 …}
+votes: Doctrine\ORM\PersistentCollection {#1611 …}
+reports: Doctrine\ORM\PersistentCollection {#1630 …}
+favourites: Doctrine\ORM\PersistentCollection {#1628 …}
+notifications: Doctrine\ORM\PersistentCollection {#1599 …}
+badges: Doctrine\ORM\PersistentCollection {#1625 …}
+children: []
-id: 9998
-titleTs: "'boot':4 'clevo':1 'doesnt':3 'error':13 'found':11 'fstab':12 'laptop':2 'linux':6 'partit':9 'stick':8 'usb':7"
-bodyTs: "'/dev/disk/by-label/fedora-kde-live-38-1-6':101 '/dev/root':106 '/root':69 'alreadi':78 'also':19,54 'alway':59 'anyon':112 'awesom':88 'bio':76,86 'boot':27,60 'cant':26 'chang':99 'clevo':6 'coreboot':13 'dasharo':15 'deploy':92 'disabl':79 'dracut':66 'emerg':110 'entir':81 'etc':72 'even':83,91 'excit':23 'exist':104,109 'fedora':33,43 'found':71 'futur':18 'get':65 'go':115 'haha':52 'head':20 'imag':39 'insydeh2o':75 'interest':9 'iso':38 'kde':44,46 'kdes':37 'key':95 'know':113 'linux':30 'live':29 'machin':10 'media':34 'mode':111 'mz41':7 'need':84 'neon':47 'normal':58 'noth':98 'partit':68 'pretti':8 'secureboot':80 'see':49 'stick':57 'support':14 'timeout':67 'trend':51 'tri':3,32,42 'ventoy':55 'warn':100,105 'what':114 'writer':35,40"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699230363
+visibility: "visible "
+apId: "https://feddit.de/post/5307202"
+editedAt: null
+createdAt: DateTimeImmutable @1699143963 {#1795
date: 2023-11-05 01:26:03.0 +01:00
}
} |
|
Show voter details
|
37 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
38 |
DENIED
|
moderate
|
App\Entity\Entry {#1725
+user: Proxies\__CG__\App\Entity\User {#1723 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "X11-forwarding-X-server-for-Android"
+title: "X11 forwarding (X server) for Android"
+url: null
+body: """
Does anyone use X11 forwarding with Android devices, so that they can access their UI apps remotely?\n
\n
If so, what apps do you use and what issues have you run across?\n
\n
There’s a “MobaXterm ssh” app and while I do love that app on other OS’s it doesn’t seem to be made by the same company so I don’t really trust it
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 33
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699682403 {#1617
date: 2023-11-11 07:00:03.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1722 …}
+votes: Doctrine\ORM\PersistentCollection {#1726 …}
+reports: Doctrine\ORM\PersistentCollection {#1736 …}
+favourites: Doctrine\ORM\PersistentCollection {#1737 …}
+notifications: Doctrine\ORM\PersistentCollection {#1732 …}
+badges: Doctrine\ORM\PersistentCollection {#1735 …}
+children: []
-id: 11569
-titleTs: "'android':6 'forward':2 'server':4 'x':3 'x11':1"
-bodyTs: "'access':13 'across':31 'android':7 'anyon':2 'app':16,21,37,44 'compani':59 'devic':8 'doesn':50 'forward':5 'issu':27 'love':42 'made':55 'mobaxterm':35 'os':47 'realli':64 'remot':17 'run':30 'seem':52 'ssh':36 'trust':65 'ui':15 'use':3,24 'x11':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699654841
+visibility: "visible "
+apId: "https://lemmy.ca/post/9006747"
+editedAt: null
+createdAt: DateTimeImmutable @1699568441 {#1731
date: 2023-11-09 23:20:41.0 +01:00
}
} |
|
Show voter details
|
39 |
DENIED
|
edit
|
App\Entity\Entry {#1725
+user: Proxies\__CG__\App\Entity\User {#1723 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "X11-forwarding-X-server-for-Android"
+title: "X11 forwarding (X server) for Android"
+url: null
+body: """
Does anyone use X11 forwarding with Android devices, so that they can access their UI apps remotely?\n
\n
If so, what apps do you use and what issues have you run across?\n
\n
There’s a “MobaXterm ssh” app and while I do love that app on other OS’s it doesn’t seem to be made by the same company so I don’t really trust it
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 33
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699682403 {#1617
date: 2023-11-11 07:00:03.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1722 …}
+votes: Doctrine\ORM\PersistentCollection {#1726 …}
+reports: Doctrine\ORM\PersistentCollection {#1736 …}
+favourites: Doctrine\ORM\PersistentCollection {#1737 …}
+notifications: Doctrine\ORM\PersistentCollection {#1732 …}
+badges: Doctrine\ORM\PersistentCollection {#1735 …}
+children: []
-id: 11569
-titleTs: "'android':6 'forward':2 'server':4 'x':3 'x11':1"
-bodyTs: "'access':13 'across':31 'android':7 'anyon':2 'app':16,21,37,44 'compani':59 'devic':8 'doesn':50 'forward':5 'issu':27 'love':42 'made':55 'mobaxterm':35 'os':47 'realli':64 'remot':17 'run':30 'seem':52 'ssh':36 'trust':65 'ui':15 'use':3,24 'x11':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699654841
+visibility: "visible "
+apId: "https://lemmy.ca/post/9006747"
+editedAt: null
+createdAt: DateTimeImmutable @1699568441 {#1731
date: 2023-11-09 23:20:41.0 +01:00
}
} |
|
Show voter details
|
40 |
DENIED
|
moderate
|
App\Entity\Entry {#1725
+user: Proxies\__CG__\App\Entity\User {#1723 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "X11-forwarding-X-server-for-Android"
+title: "X11 forwarding (X server) for Android"
+url: null
+body: """
Does anyone use X11 forwarding with Android devices, so that they can access their UI apps remotely?\n
\n
If so, what apps do you use and what issues have you run across?\n
\n
There’s a “MobaXterm ssh” app and while I do love that app on other OS’s it doesn’t seem to be made by the same company so I don’t really trust it
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 33
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699682403 {#1617
date: 2023-11-11 07:00:03.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1722 …}
+votes: Doctrine\ORM\PersistentCollection {#1726 …}
+reports: Doctrine\ORM\PersistentCollection {#1736 …}
+favourites: Doctrine\ORM\PersistentCollection {#1737 …}
+notifications: Doctrine\ORM\PersistentCollection {#1732 …}
+badges: Doctrine\ORM\PersistentCollection {#1735 …}
+children: []
-id: 11569
-titleTs: "'android':6 'forward':2 'server':4 'x':3 'x11':1"
-bodyTs: "'access':13 'across':31 'android':7 'anyon':2 'app':16,21,37,44 'compani':59 'devic':8 'doesn':50 'forward':5 'issu':27 'love':42 'made':55 'mobaxterm':35 'os':47 'realli':64 'remot':17 'run':30 'seem':52 'ssh':36 'trust':65 'ui':15 'use':3,24 'x11':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699654841
+visibility: "visible "
+apId: "https://lemmy.ca/post/9006747"
+editedAt: null
+createdAt: DateTimeImmutable @1699568441 {#1731
date: 2023-11-09 23:20:41.0 +01:00
}
} |
|
Show voter details
|
41 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
42 |
DENIED
|
moderate
|
App\Entity\Entry {#1715
+user: Proxies\__CG__\App\Entity\User {#1714 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Your-chosen-desktop-Linux-defaults"
+title: "Your chosen desktop Linux defaults?"
+url: null
+body: """
What are your ‘defaults’ for your desktop Linux installations, especially when they deviate from your distros defaults? What are your reasons for this deviations?\n
\n
To give you an example what I am asking for, here is my list with reasons (funnily enough, using these settings on Debian, which are AFAIK the defaults for Fedora):\n
\n
- Btrfs: I use Btrfs for transparent compression which is a game changer for my use cases and using it w/o Raid I had never trouble with corrupt data on power failures, compared to ext4.\n
- ZRAM: I wrote about it somewhere else, but ZRAM transformed even my totally under-powered HP Stream 11" with 4GB Ram into a usable machine. Nowadays I don’t have swap partitions anymore and use ZRAM everywhere and it just works ™.\n
- ufw: I cannot fathom why firewalls with all ports but ssh closed by default are not the default. Especially on Debian, where unconfigured services are started by default after installation, it does not make sense to me.\n
\n
My next project is to slim down my Gnome desktop installation, but I guess this is quite common in the Debian community.\n
\n
Before you ask: Why not Fedora? - I love Fedora, but I need something stable for work, and Fedoras recent kernels brake virtual machines for me.\n
\n
Edit: Forgot to mention ufw
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 71
+favouriteCount: 120
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699679912 {#1729
date: 2023-11-11 06:18:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1718 …}
+votes: Doctrine\ORM\PersistentCollection {#1716 …}
+reports: Doctrine\ORM\PersistentCollection {#1739 …}
+favourites: Doctrine\ORM\PersistentCollection {#1740 …}
+notifications: Doctrine\ORM\PersistentCollection {#2465 …}
+badges: Doctrine\ORM\PersistentCollection {#2463 …}
+children: []
-id: 10588
-titleTs: "'chosen':2 'default':5 'desktop':3 'linux':4"
-bodyTs: "'11':107 '4gb':109 'afaik':50 'anymor':122 'ask':33,192 'brake':210 'btrfs':55,58 'cannot':133 'case':70 'changer':66 'close':142 'common':185 'communiti':189 'compar':86 'compress':61 'corrupt':81 'data':82 'debian':47,151,188 'default':4,17,52,144,148,158 'desktop':7,177 'deviat':13,24 'distro':16 'edit':215 'els':95 'enough':42 'especi':10,149 'even':99 'everywher':126 'exampl':29 'ext4':88 'failur':85 'fathom':134 'fedora':54,195,198,207 'firewal':136 'forgot':216 'funnili':41 'game':65 'give':26 'gnome':176 'guess':181 'hp':105 'instal':9,160,178 'kernel':209 'linux':8 'list':38 'love':197 'machin':114,212 'make':164 'mention':218 'need':201 'never':78 'next':169 'nowaday':115 'partit':121 'port':139 'power':84,104 'project':170 'quit':184 'raid':75 'ram':110 'reason':21,40 'recent':208 'sens':165 'servic':154 'set':45 'slim':173 'someth':202 'somewher':94 'ssh':141 'stabl':203 'start':156 'stream':106 'swap':120 'total':101 'transform':98 'transpar':60 'troubl':79 'ufw':131,219 'unconfigur':153 'under-pow':102 'usabl':113 'use':43,57,69,72,124 'virtual':211 'w/o':74 'work':130,205 'wrote':91 'zram':89,97,125"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699383846
+visibility: "visible "
+apId: "https://lemmy.zip/post/5191717"
+editedAt: DateTimeImmutable @1699329862 {#1724
date: 2023-11-07 05:04:22.0 +01:00
}
+createdAt: DateTimeImmutable @1699297446 {#1719
date: 2023-11-06 20:04:06.0 +01:00
}
} |
|
Show voter details
|
43 |
DENIED
|
edit
|
App\Entity\Entry {#1715
+user: Proxies\__CG__\App\Entity\User {#1714 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Your-chosen-desktop-Linux-defaults"
+title: "Your chosen desktop Linux defaults?"
+url: null
+body: """
What are your ‘defaults’ for your desktop Linux installations, especially when they deviate from your distros defaults? What are your reasons for this deviations?\n
\n
To give you an example what I am asking for, here is my list with reasons (funnily enough, using these settings on Debian, which are AFAIK the defaults for Fedora):\n
\n
- Btrfs: I use Btrfs for transparent compression which is a game changer for my use cases and using it w/o Raid I had never trouble with corrupt data on power failures, compared to ext4.\n
- ZRAM: I wrote about it somewhere else, but ZRAM transformed even my totally under-powered HP Stream 11" with 4GB Ram into a usable machine. Nowadays I don’t have swap partitions anymore and use ZRAM everywhere and it just works ™.\n
- ufw: I cannot fathom why firewalls with all ports but ssh closed by default are not the default. Especially on Debian, where unconfigured services are started by default after installation, it does not make sense to me.\n
\n
My next project is to slim down my Gnome desktop installation, but I guess this is quite common in the Debian community.\n
\n
Before you ask: Why not Fedora? - I love Fedora, but I need something stable for work, and Fedoras recent kernels brake virtual machines for me.\n
\n
Edit: Forgot to mention ufw
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 71
+favouriteCount: 120
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699679912 {#1729
date: 2023-11-11 06:18:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1718 …}
+votes: Doctrine\ORM\PersistentCollection {#1716 …}
+reports: Doctrine\ORM\PersistentCollection {#1739 …}
+favourites: Doctrine\ORM\PersistentCollection {#1740 …}
+notifications: Doctrine\ORM\PersistentCollection {#2465 …}
+badges: Doctrine\ORM\PersistentCollection {#2463 …}
+children: []
-id: 10588
-titleTs: "'chosen':2 'default':5 'desktop':3 'linux':4"
-bodyTs: "'11':107 '4gb':109 'afaik':50 'anymor':122 'ask':33,192 'brake':210 'btrfs':55,58 'cannot':133 'case':70 'changer':66 'close':142 'common':185 'communiti':189 'compar':86 'compress':61 'corrupt':81 'data':82 'debian':47,151,188 'default':4,17,52,144,148,158 'desktop':7,177 'deviat':13,24 'distro':16 'edit':215 'els':95 'enough':42 'especi':10,149 'even':99 'everywher':126 'exampl':29 'ext4':88 'failur':85 'fathom':134 'fedora':54,195,198,207 'firewal':136 'forgot':216 'funnili':41 'game':65 'give':26 'gnome':176 'guess':181 'hp':105 'instal':9,160,178 'kernel':209 'linux':8 'list':38 'love':197 'machin':114,212 'make':164 'mention':218 'need':201 'never':78 'next':169 'nowaday':115 'partit':121 'port':139 'power':84,104 'project':170 'quit':184 'raid':75 'ram':110 'reason':21,40 'recent':208 'sens':165 'servic':154 'set':45 'slim':173 'someth':202 'somewher':94 'ssh':141 'stabl':203 'start':156 'stream':106 'swap':120 'total':101 'transform':98 'transpar':60 'troubl':79 'ufw':131,219 'unconfigur':153 'under-pow':102 'usabl':113 'use':43,57,69,72,124 'virtual':211 'w/o':74 'work':130,205 'wrote':91 'zram':89,97,125"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699383846
+visibility: "visible "
+apId: "https://lemmy.zip/post/5191717"
+editedAt: DateTimeImmutable @1699329862 {#1724
date: 2023-11-07 05:04:22.0 +01:00
}
+createdAt: DateTimeImmutable @1699297446 {#1719
date: 2023-11-06 20:04:06.0 +01:00
}
} |
|
Show voter details
|
44 |
DENIED
|
moderate
|
App\Entity\Entry {#1715
+user: Proxies\__CG__\App\Entity\User {#1714 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Your-chosen-desktop-Linux-defaults"
+title: "Your chosen desktop Linux defaults?"
+url: null
+body: """
What are your ‘defaults’ for your desktop Linux installations, especially when they deviate from your distros defaults? What are your reasons for this deviations?\n
\n
To give you an example what I am asking for, here is my list with reasons (funnily enough, using these settings on Debian, which are AFAIK the defaults for Fedora):\n
\n
- Btrfs: I use Btrfs for transparent compression which is a game changer for my use cases and using it w/o Raid I had never trouble with corrupt data on power failures, compared to ext4.\n
- ZRAM: I wrote about it somewhere else, but ZRAM transformed even my totally under-powered HP Stream 11" with 4GB Ram into a usable machine. Nowadays I don’t have swap partitions anymore and use ZRAM everywhere and it just works ™.\n
- ufw: I cannot fathom why firewalls with all ports but ssh closed by default are not the default. Especially on Debian, where unconfigured services are started by default after installation, it does not make sense to me.\n
\n
My next project is to slim down my Gnome desktop installation, but I guess this is quite common in the Debian community.\n
\n
Before you ask: Why not Fedora? - I love Fedora, but I need something stable for work, and Fedoras recent kernels brake virtual machines for me.\n
\n
Edit: Forgot to mention ufw
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 71
+favouriteCount: 120
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699679912 {#1729
date: 2023-11-11 06:18:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1718 …}
+votes: Doctrine\ORM\PersistentCollection {#1716 …}
+reports: Doctrine\ORM\PersistentCollection {#1739 …}
+favourites: Doctrine\ORM\PersistentCollection {#1740 …}
+notifications: Doctrine\ORM\PersistentCollection {#2465 …}
+badges: Doctrine\ORM\PersistentCollection {#2463 …}
+children: []
-id: 10588
-titleTs: "'chosen':2 'default':5 'desktop':3 'linux':4"
-bodyTs: "'11':107 '4gb':109 'afaik':50 'anymor':122 'ask':33,192 'brake':210 'btrfs':55,58 'cannot':133 'case':70 'changer':66 'close':142 'common':185 'communiti':189 'compar':86 'compress':61 'corrupt':81 'data':82 'debian':47,151,188 'default':4,17,52,144,148,158 'desktop':7,177 'deviat':13,24 'distro':16 'edit':215 'els':95 'enough':42 'especi':10,149 'even':99 'everywher':126 'exampl':29 'ext4':88 'failur':85 'fathom':134 'fedora':54,195,198,207 'firewal':136 'forgot':216 'funnili':41 'game':65 'give':26 'gnome':176 'guess':181 'hp':105 'instal':9,160,178 'kernel':209 'linux':8 'list':38 'love':197 'machin':114,212 'make':164 'mention':218 'need':201 'never':78 'next':169 'nowaday':115 'partit':121 'port':139 'power':84,104 'project':170 'quit':184 'raid':75 'ram':110 'reason':21,40 'recent':208 'sens':165 'servic':154 'set':45 'slim':173 'someth':202 'somewher':94 'ssh':141 'stabl':203 'start':156 'stream':106 'swap':120 'total':101 'transform':98 'transpar':60 'troubl':79 'ufw':131,219 'unconfigur':153 'under-pow':102 'usabl':113 'use':43,57,69,72,124 'virtual':211 'w/o':74 'work':130,205 'wrote':91 'zram':89,97,125"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699383846
+visibility: "visible "
+apId: "https://lemmy.zip/post/5191717"
+editedAt: DateTimeImmutable @1699329862 {#1724
date: 2023-11-07 05:04:22.0 +01:00
}
+createdAt: DateTimeImmutable @1699297446 {#1719
date: 2023-11-06 20:04:06.0 +01:00
}
} |
|
Show voter details
|
45 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
46 |
DENIED
|
moderate
|
App\Entity\Entry {#2422
+user: Proxies\__CG__\App\Entity\User {#2462 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "system-freezes-when-waking-up-from-suspend"
+title: "system freezes when waking up from suspend"
+url: null
+body: """
Hello Linux people, I need a bit of help. I wanted to leverage the new 545 NVIDIA drivers, but no other OS that I know of has them yet, so I installed Arch Linux using the handy archinstall script. I followed an external guide on how to get NVIDIA cards up and running. This one specifically: <https://github.com/korvahannu/arch-nvidia-drivers-installation-guide>. And yes, I checked it against the wiki (from what I could understand, the linked guide has no issues). After I rebooted everything went okay. Tested out resource-intesive games and they ran as expected with the proprietary drivers. However (and I don’t know if this is a problem related to the drivers), I just tried suspending the KDE Wayland session on my laptop (Forgot to mention that I followed the wiki on how to get nvidia-suspend and nvidia-hibernate set up, and they were set up correctly), but when I tried waking it up, the screen freezes in a black background with only the kde cursor (I cannot move the cursor in this state) so the only option I know of is to forcefully shutdown the system and reboot. I am not very experienced in Linux so I could use some assistance in finding the source of this problem.\n
\n
Journalctl log:\n
\n
\n
\n
If there’s anything else that would prove useful in debugging this issue, please tell me and I will provide
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699673978 {#2411
date: 2023-11-11 04:39:38.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2458 …}
+votes: Doctrine\ORM\PersistentCollection {#2456 …}
+reports: Doctrine\ORM\PersistentCollection {#2453 …}
+favourites: Doctrine\ORM\PersistentCollection {#2457 …}
+notifications: Doctrine\ORM\PersistentCollection {#2455 …}
+badges: Doctrine\ORM\PersistentCollection {#2468 …}
+children: []
-id: 11848
-titleTs: "'freez':2 'suspend':7 'system':1 'wake':4"
-bodyTs: "'/korvahannu/arch-nvidia-drivers-installation-guide':59 '/pictrs/image/28fb7636-723b-492d-894d-d61a6ed7fb18.png)':219 '545':16 'anyth':223 'arch':33 'archinstal':38 'assist':207 'background':166 'bit':7 'black':165 'cannot':173 'card':50 'check':63 'correct':152 'could':71,204 'cursor':171,176 'debug':230 'driver':18,99,114 'els':224 'everyth':82 'expect':95 'experienc':199 'extern':43 'find':209 'follow':41,131 'forc':189 'forgot':126 'freez':162 'game':90 'get':48,137 'github.com':58 'github.com/korvahannu/arch-nvidia-drivers-installation-guide':57 'guid':44,75 'handi':37 'hello':1 'help':9 'hibern':144 'howev':100 'instal':32 'intes':89 'issu':78,232 'journalctl':215 'kde':120,170 'know':25,105,185 'laptop':125 'lemmy.world':218 'lemmy.world/pictrs/image/28fb7636-723b-492d-894d-d61a6ed7fb18.png)':217 'leverag':13 'link':74 'linux':2,34,201 'log':216 'mention':128 'move':174 'need':5 'new':15 'nvidia':17,49,139,143 'nvidia-hibern':142 'nvidia-suspend':138 'okay':84 'one':55 'option':183 'os':22 'peopl':3 'pleas':233 'problem':110,214 'proprietari':98 'prove':227 'provid':239 'ran':93 'reboot':81,194 'relat':111 'resourc':88 'resource-intes':87 'run':53 'screen':161 'script':39 'session':122 'set':145,150 'shutdown':190 'sourc':211 'specif':56 'state':179 'suspend':118,140 'system':192 'tell':234 'test':85 'tri':117,156 'understand':72 'use':35,205,228 'wake':157 'want':11 'wayland':121 'went':83 'wiki':67,133 'would':226 'yes':61 'yet':29"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699723694
+visibility: "visible "
+apId: "https://lemmy.world/post/8075828"
+editedAt: null
+createdAt: DateTimeImmutable @1699644194 {#2447
date: 2023-11-10 20:23:14.0 +01:00
}
} |
|
Show voter details
|
47 |
DENIED
|
edit
|
App\Entity\Entry {#2422
+user: Proxies\__CG__\App\Entity\User {#2462 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "system-freezes-when-waking-up-from-suspend"
+title: "system freezes when waking up from suspend"
+url: null
+body: """
Hello Linux people, I need a bit of help. I wanted to leverage the new 545 NVIDIA drivers, but no other OS that I know of has them yet, so I installed Arch Linux using the handy archinstall script. I followed an external guide on how to get NVIDIA cards up and running. This one specifically: <https://github.com/korvahannu/arch-nvidia-drivers-installation-guide>. And yes, I checked it against the wiki (from what I could understand, the linked guide has no issues). After I rebooted everything went okay. Tested out resource-intesive games and they ran as expected with the proprietary drivers. However (and I don’t know if this is a problem related to the drivers), I just tried suspending the KDE Wayland session on my laptop (Forgot to mention that I followed the wiki on how to get nvidia-suspend and nvidia-hibernate set up, and they were set up correctly), but when I tried waking it up, the screen freezes in a black background with only the kde cursor (I cannot move the cursor in this state) so the only option I know of is to forcefully shutdown the system and reboot. I am not very experienced in Linux so I could use some assistance in finding the source of this problem.\n
\n
Journalctl log:\n
\n
\n
\n
If there’s anything else that would prove useful in debugging this issue, please tell me and I will provide
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699673978 {#2411
date: 2023-11-11 04:39:38.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2458 …}
+votes: Doctrine\ORM\PersistentCollection {#2456 …}
+reports: Doctrine\ORM\PersistentCollection {#2453 …}
+favourites: Doctrine\ORM\PersistentCollection {#2457 …}
+notifications: Doctrine\ORM\PersistentCollection {#2455 …}
+badges: Doctrine\ORM\PersistentCollection {#2468 …}
+children: []
-id: 11848
-titleTs: "'freez':2 'suspend':7 'system':1 'wake':4"
-bodyTs: "'/korvahannu/arch-nvidia-drivers-installation-guide':59 '/pictrs/image/28fb7636-723b-492d-894d-d61a6ed7fb18.png)':219 '545':16 'anyth':223 'arch':33 'archinstal':38 'assist':207 'background':166 'bit':7 'black':165 'cannot':173 'card':50 'check':63 'correct':152 'could':71,204 'cursor':171,176 'debug':230 'driver':18,99,114 'els':224 'everyth':82 'expect':95 'experienc':199 'extern':43 'find':209 'follow':41,131 'forc':189 'forgot':126 'freez':162 'game':90 'get':48,137 'github.com':58 'github.com/korvahannu/arch-nvidia-drivers-installation-guide':57 'guid':44,75 'handi':37 'hello':1 'help':9 'hibern':144 'howev':100 'instal':32 'intes':89 'issu':78,232 'journalctl':215 'kde':120,170 'know':25,105,185 'laptop':125 'lemmy.world':218 'lemmy.world/pictrs/image/28fb7636-723b-492d-894d-d61a6ed7fb18.png)':217 'leverag':13 'link':74 'linux':2,34,201 'log':216 'mention':128 'move':174 'need':5 'new':15 'nvidia':17,49,139,143 'nvidia-hibern':142 'nvidia-suspend':138 'okay':84 'one':55 'option':183 'os':22 'peopl':3 'pleas':233 'problem':110,214 'proprietari':98 'prove':227 'provid':239 'ran':93 'reboot':81,194 'relat':111 'resourc':88 'resource-intes':87 'run':53 'screen':161 'script':39 'session':122 'set':145,150 'shutdown':190 'sourc':211 'specif':56 'state':179 'suspend':118,140 'system':192 'tell':234 'test':85 'tri':117,156 'understand':72 'use':35,205,228 'wake':157 'want':11 'wayland':121 'went':83 'wiki':67,133 'would':226 'yes':61 'yet':29"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699723694
+visibility: "visible "
+apId: "https://lemmy.world/post/8075828"
+editedAt: null
+createdAt: DateTimeImmutable @1699644194 {#2447
date: 2023-11-10 20:23:14.0 +01:00
}
} |
|
Show voter details
|
48 |
DENIED
|
moderate
|
App\Entity\Entry {#2422
+user: Proxies\__CG__\App\Entity\User {#2462 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "system-freezes-when-waking-up-from-suspend"
+title: "system freezes when waking up from suspend"
+url: null
+body: """
Hello Linux people, I need a bit of help. I wanted to leverage the new 545 NVIDIA drivers, but no other OS that I know of has them yet, so I installed Arch Linux using the handy archinstall script. I followed an external guide on how to get NVIDIA cards up and running. This one specifically: <https://github.com/korvahannu/arch-nvidia-drivers-installation-guide>. And yes, I checked it against the wiki (from what I could understand, the linked guide has no issues). After I rebooted everything went okay. Tested out resource-intesive games and they ran as expected with the proprietary drivers. However (and I don’t know if this is a problem related to the drivers), I just tried suspending the KDE Wayland session on my laptop (Forgot to mention that I followed the wiki on how to get nvidia-suspend and nvidia-hibernate set up, and they were set up correctly), but when I tried waking it up, the screen freezes in a black background with only the kde cursor (I cannot move the cursor in this state) so the only option I know of is to forcefully shutdown the system and reboot. I am not very experienced in Linux so I could use some assistance in finding the source of this problem.\n
\n
Journalctl log:\n
\n
\n
\n
If there’s anything else that would prove useful in debugging this issue, please tell me and I will provide
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699673978 {#2411
date: 2023-11-11 04:39:38.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2458 …}
+votes: Doctrine\ORM\PersistentCollection {#2456 …}
+reports: Doctrine\ORM\PersistentCollection {#2453 …}
+favourites: Doctrine\ORM\PersistentCollection {#2457 …}
+notifications: Doctrine\ORM\PersistentCollection {#2455 …}
+badges: Doctrine\ORM\PersistentCollection {#2468 …}
+children: []
-id: 11848
-titleTs: "'freez':2 'suspend':7 'system':1 'wake':4"
-bodyTs: "'/korvahannu/arch-nvidia-drivers-installation-guide':59 '/pictrs/image/28fb7636-723b-492d-894d-d61a6ed7fb18.png)':219 '545':16 'anyth':223 'arch':33 'archinstal':38 'assist':207 'background':166 'bit':7 'black':165 'cannot':173 'card':50 'check':63 'correct':152 'could':71,204 'cursor':171,176 'debug':230 'driver':18,99,114 'els':224 'everyth':82 'expect':95 'experienc':199 'extern':43 'find':209 'follow':41,131 'forc':189 'forgot':126 'freez':162 'game':90 'get':48,137 'github.com':58 'github.com/korvahannu/arch-nvidia-drivers-installation-guide':57 'guid':44,75 'handi':37 'hello':1 'help':9 'hibern':144 'howev':100 'instal':32 'intes':89 'issu':78,232 'journalctl':215 'kde':120,170 'know':25,105,185 'laptop':125 'lemmy.world':218 'lemmy.world/pictrs/image/28fb7636-723b-492d-894d-d61a6ed7fb18.png)':217 'leverag':13 'link':74 'linux':2,34,201 'log':216 'mention':128 'move':174 'need':5 'new':15 'nvidia':17,49,139,143 'nvidia-hibern':142 'nvidia-suspend':138 'okay':84 'one':55 'option':183 'os':22 'peopl':3 'pleas':233 'problem':110,214 'proprietari':98 'prove':227 'provid':239 'ran':93 'reboot':81,194 'relat':111 'resourc':88 'resource-intes':87 'run':53 'screen':161 'script':39 'session':122 'set':145,150 'shutdown':190 'sourc':211 'specif':56 'state':179 'suspend':118,140 'system':192 'tell':234 'test':85 'tri':117,156 'understand':72 'use':35,205,228 'wake':157 'want':11 'wayland':121 'went':83 'wiki':67,133 'would':226 'yes':61 'yet':29"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699723694
+visibility: "visible "
+apId: "https://lemmy.world/post/8075828"
+editedAt: null
+createdAt: DateTimeImmutable @1699644194 {#2447
date: 2023-11-10 20:23:14.0 +01:00
}
} |
|
Show voter details
|
49 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
50 |
DENIED
|
moderate
|
App\Entity\Entry {#2471
+user: Proxies\__CG__\App\Entity\User {#2371 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "FOSS-88-key-pianos"
+title: "FOSS 88 key pianos"
+url: null
+body: "I’ve wanted to get back into piano and to start off I was wondering if there was any decent FOSS piano software for linux?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 15
+favouriteCount: 50
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699646399 {#2469
date: 2023-11-10 20:59:59.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2363 …}
+votes: Doctrine\ORM\PersistentCollection {#2377 …}
+reports: Doctrine\ORM\PersistentCollection {#2359 …}
+favourites: Doctrine\ORM\PersistentCollection {#2364 …}
+notifications: Doctrine\ORM\PersistentCollection {#2380 …}
+badges: Doctrine\ORM\PersistentCollection {#2382 …}
+children: []
-id: 10144
-titleTs: "'88':2 'foss':1 'key':3 'piano':4"
-bodyTs: "'back':6 'decent':20 'foss':21 'get':5 'linux':25 'piano':8,22 'softwar':23 'start':11 've':2 'want':3 'wonder':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699276858
+visibility: "visible "
+apId: "https://lemm.ee/post/13913606"
+editedAt: null
+createdAt: DateTimeImmutable @1699190458 {#2467
date: 2023-11-05 14:20:58.0 +01:00
}
} |
|
Show voter details
|
51 |
DENIED
|
edit
|
App\Entity\Entry {#2471
+user: Proxies\__CG__\App\Entity\User {#2371 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "FOSS-88-key-pianos"
+title: "FOSS 88 key pianos"
+url: null
+body: "I’ve wanted to get back into piano and to start off I was wondering if there was any decent FOSS piano software for linux?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 15
+favouriteCount: 50
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699646399 {#2469
date: 2023-11-10 20:59:59.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2363 …}
+votes: Doctrine\ORM\PersistentCollection {#2377 …}
+reports: Doctrine\ORM\PersistentCollection {#2359 …}
+favourites: Doctrine\ORM\PersistentCollection {#2364 …}
+notifications: Doctrine\ORM\PersistentCollection {#2380 …}
+badges: Doctrine\ORM\PersistentCollection {#2382 …}
+children: []
-id: 10144
-titleTs: "'88':2 'foss':1 'key':3 'piano':4"
-bodyTs: "'back':6 'decent':20 'foss':21 'get':5 'linux':25 'piano':8,22 'softwar':23 'start':11 've':2 'want':3 'wonder':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699276858
+visibility: "visible "
+apId: "https://lemm.ee/post/13913606"
+editedAt: null
+createdAt: DateTimeImmutable @1699190458 {#2467
date: 2023-11-05 14:20:58.0 +01:00
}
} |
|
Show voter details
|
52 |
DENIED
|
moderate
|
App\Entity\Entry {#2471
+user: Proxies\__CG__\App\Entity\User {#2371 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "FOSS-88-key-pianos"
+title: "FOSS 88 key pianos"
+url: null
+body: "I’ve wanted to get back into piano and to start off I was wondering if there was any decent FOSS piano software for linux?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 15
+favouriteCount: 50
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699646399 {#2469
date: 2023-11-10 20:59:59.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2363 …}
+votes: Doctrine\ORM\PersistentCollection {#2377 …}
+reports: Doctrine\ORM\PersistentCollection {#2359 …}
+favourites: Doctrine\ORM\PersistentCollection {#2364 …}
+notifications: Doctrine\ORM\PersistentCollection {#2380 …}
+badges: Doctrine\ORM\PersistentCollection {#2382 …}
+children: []
-id: 10144
-titleTs: "'88':2 'foss':1 'key':3 'piano':4"
-bodyTs: "'back':6 'decent':20 'foss':21 'get':5 'linux':25 'piano':8,22 'softwar':23 'start':11 've':2 'want':3 'wonder':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699276858
+visibility: "visible "
+apId: "https://lemm.ee/post/13913606"
+editedAt: null
+createdAt: DateTimeImmutable @1699190458 {#2467
date: 2023-11-05 14:20:58.0 +01:00
}
} |
|
Show voter details
|
53 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
54 |
DENIED
|
moderate
|
App\Entity\Entry {#2379
+user: Proxies\__CG__\App\Entity\User {#2381 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "So-sixel"
+title: "So sixel..."
+url: null
+body: "How does it work?? I have been trying google-fu for probably two hours trying to figure out how exactly you even install sixel. I found libsixel but it seems unmaintained. I just wanna try out images in my terminal. lol. Does anyone have any experience using sixel on linux and is it worth the effort to even setup?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699642705 {#2384
date: 2023-11-10 19:58:25.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2383 …}
+votes: Doctrine\ORM\PersistentCollection {#1906 …}
+reports: Doctrine\ORM\PersistentCollection {#1708 …}
+favourites: Doctrine\ORM\PersistentCollection {#1410 …}
+notifications: Doctrine\ORM\PersistentCollection {#1907 …}
+badges: Doctrine\ORM\PersistentCollection {#1407 …}
+children: []
-id: 11643
-titleTs: "'sixel':2"
-bodyTs: "'anyon':44 'effort':57 'even':23,59 'exact':21 'experi':47 'figur':18 'found':27 'fu':11 'googl':10 'google-fu':9 'hour':15 'imag':38 'instal':24 'libsixel':28 'linux':51 'lol':42 'probabl':13 'seem':31 'setup':60 'sixel':25,49 'termin':41 'tri':8,16,36 'two':14 'unmaintain':32 'use':48 'wanna':35 'work':4 'worth':55"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699636259
+visibility: "visible "
+apId: "https://lemmygrad.ml/post/2641549"
+editedAt: null
+createdAt: DateTimeImmutable @1699585759 {#2378
date: 2023-11-10 04:09:19.0 +01:00
}
} |
|
Show voter details
|
55 |
DENIED
|
edit
|
App\Entity\Entry {#2379
+user: Proxies\__CG__\App\Entity\User {#2381 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "So-sixel"
+title: "So sixel..."
+url: null
+body: "How does it work?? I have been trying google-fu for probably two hours trying to figure out how exactly you even install sixel. I found libsixel but it seems unmaintained. I just wanna try out images in my terminal. lol. Does anyone have any experience using sixel on linux and is it worth the effort to even setup?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699642705 {#2384
date: 2023-11-10 19:58:25.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2383 …}
+votes: Doctrine\ORM\PersistentCollection {#1906 …}
+reports: Doctrine\ORM\PersistentCollection {#1708 …}
+favourites: Doctrine\ORM\PersistentCollection {#1410 …}
+notifications: Doctrine\ORM\PersistentCollection {#1907 …}
+badges: Doctrine\ORM\PersistentCollection {#1407 …}
+children: []
-id: 11643
-titleTs: "'sixel':2"
-bodyTs: "'anyon':44 'effort':57 'even':23,59 'exact':21 'experi':47 'figur':18 'found':27 'fu':11 'googl':10 'google-fu':9 'hour':15 'imag':38 'instal':24 'libsixel':28 'linux':51 'lol':42 'probabl':13 'seem':31 'setup':60 'sixel':25,49 'termin':41 'tri':8,16,36 'two':14 'unmaintain':32 'use':48 'wanna':35 'work':4 'worth':55"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699636259
+visibility: "visible "
+apId: "https://lemmygrad.ml/post/2641549"
+editedAt: null
+createdAt: DateTimeImmutable @1699585759 {#2378
date: 2023-11-10 04:09:19.0 +01:00
}
} |
|
Show voter details
|
56 |
DENIED
|
moderate
|
App\Entity\Entry {#2379
+user: Proxies\__CG__\App\Entity\User {#2381 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "So-sixel"
+title: "So sixel..."
+url: null
+body: "How does it work?? I have been trying google-fu for probably two hours trying to figure out how exactly you even install sixel. I found libsixel but it seems unmaintained. I just wanna try out images in my terminal. lol. Does anyone have any experience using sixel on linux and is it worth the effort to even setup?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699642705 {#2384
date: 2023-11-10 19:58:25.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2383 …}
+votes: Doctrine\ORM\PersistentCollection {#1906 …}
+reports: Doctrine\ORM\PersistentCollection {#1708 …}
+favourites: Doctrine\ORM\PersistentCollection {#1410 …}
+notifications: Doctrine\ORM\PersistentCollection {#1907 …}
+badges: Doctrine\ORM\PersistentCollection {#1407 …}
+children: []
-id: 11643
-titleTs: "'sixel':2"
-bodyTs: "'anyon':44 'effort':57 'even':23,59 'exact':21 'experi':47 'figur':18 'found':27 'fu':11 'googl':10 'google-fu':9 'hour':15 'imag':38 'instal':24 'libsixel':28 'linux':51 'lol':42 'probabl':13 'seem':31 'setup':60 'sixel':25,49 'termin':41 'tri':8,16,36 'two':14 'unmaintain':32 'use':48 'wanna':35 'work':4 'worth':55"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699636259
+visibility: "visible "
+apId: "https://lemmygrad.ml/post/2641549"
+editedAt: null
+createdAt: DateTimeImmutable @1699585759 {#2378
date: 2023-11-10 04:09:19.0 +01:00
}
} |
|
Show voter details
|
57 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
58 |
DENIED
|
moderate
|
App\Entity\Entry {#2387
+user: Proxies\__CG__\App\Entity\User {#2392 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Is-an-unknown-supervisor-password-for-ThinkPad-bios-an-issue"
+title: "Is an unknown supervisor password for ThinkPad bios an issue if I've already installed linux?"
+url: null
+body: """
I purchased a second hand ThinkPad from an ebay outlet. When it arrived I wiped windows 10 from it and installed ubuntu with no issues. It runs perfect without any weird fixes needed. However, after just checking the bios to see if I could change some settings, I realised it has a supervisor password.\n
\n
I contacted the seller and they gave me a few to try but they haven’t worked.\n
\n
They said their tech will be back next week and will contact me then but I may have to send it back.\n
\n
My question is, will this be an issue in the future? Or does it depend on which settings are locked?\n
\n
I don’t really want to send it back unless it’s critical, as I have a lot of work to do and my previous laptop is moments away from death.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 28
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699582685 {#2391
date: 2023-11-10 03:18:05.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
+badges: Doctrine\ORM\PersistentCollection {#1401 …}
+children: []
-id: 11519
-titleTs: "'alreadi':14 'bio':8 'instal':15 'issu':10 'linux':16 'password':5 'supervisor':4 'thinkpad':7 'unknown':3 've':13"
-bodyTs: "'10':17 'arriv':13 'away':142 'back':78,93,122 'bio':39 'chang':45 'check':37 'contact':56,83 'could':44 'critic':126 'death':144 'depend':108 'ebay':9 'fix':32 'futur':104 'gave':61 'hand':5 'haven':69 'howev':34 'instal':21 'issu':25,101 'laptop':139 'lock':113 'lot':131 'may':88 'moment':141 'need':33 'next':79 'outlet':10 'password':54 'perfect':28 'previous':138 'purchas':2 'question':95 'realis':49 'realli':117 'run':27 'said':73 'second':4 'see':41 'seller':58 'send':91,120 'set':47,111 'supervisor':53 'tech':75 'thinkpad':6 'tri':66 'ubuntu':22 'unless':123 'want':118 'week':80 'weird':31 'window':16 'wipe':15 'without':29 'work':71,133"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699639659
+visibility: "visible "
+apId: "https://lemm.ee/post/14361885"
+editedAt: DateTimeImmutable @1699623612 {#2389
date: 2023-11-10 14:40:12.0 +01:00
}
+createdAt: DateTimeImmutable @1699553259 {#2369
date: 2023-11-09 19:07:39.0 +01:00
}
} |
|
Show voter details
|
59 |
DENIED
|
edit
|
App\Entity\Entry {#2387
+user: Proxies\__CG__\App\Entity\User {#2392 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Is-an-unknown-supervisor-password-for-ThinkPad-bios-an-issue"
+title: "Is an unknown supervisor password for ThinkPad bios an issue if I've already installed linux?"
+url: null
+body: """
I purchased a second hand ThinkPad from an ebay outlet. When it arrived I wiped windows 10 from it and installed ubuntu with no issues. It runs perfect without any weird fixes needed. However, after just checking the bios to see if I could change some settings, I realised it has a supervisor password.\n
\n
I contacted the seller and they gave me a few to try but they haven’t worked.\n
\n
They said their tech will be back next week and will contact me then but I may have to send it back.\n
\n
My question is, will this be an issue in the future? Or does it depend on which settings are locked?\n
\n
I don’t really want to send it back unless it’s critical, as I have a lot of work to do and my previous laptop is moments away from death.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 28
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699582685 {#2391
date: 2023-11-10 03:18:05.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
+badges: Doctrine\ORM\PersistentCollection {#1401 …}
+children: []
-id: 11519
-titleTs: "'alreadi':14 'bio':8 'instal':15 'issu':10 'linux':16 'password':5 'supervisor':4 'thinkpad':7 'unknown':3 've':13"
-bodyTs: "'10':17 'arriv':13 'away':142 'back':78,93,122 'bio':39 'chang':45 'check':37 'contact':56,83 'could':44 'critic':126 'death':144 'depend':108 'ebay':9 'fix':32 'futur':104 'gave':61 'hand':5 'haven':69 'howev':34 'instal':21 'issu':25,101 'laptop':139 'lock':113 'lot':131 'may':88 'moment':141 'need':33 'next':79 'outlet':10 'password':54 'perfect':28 'previous':138 'purchas':2 'question':95 'realis':49 'realli':117 'run':27 'said':73 'second':4 'see':41 'seller':58 'send':91,120 'set':47,111 'supervisor':53 'tech':75 'thinkpad':6 'tri':66 'ubuntu':22 'unless':123 'want':118 'week':80 'weird':31 'window':16 'wipe':15 'without':29 'work':71,133"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699639659
+visibility: "visible "
+apId: "https://lemm.ee/post/14361885"
+editedAt: DateTimeImmutable @1699623612 {#2389
date: 2023-11-10 14:40:12.0 +01:00
}
+createdAt: DateTimeImmutable @1699553259 {#2369
date: 2023-11-09 19:07:39.0 +01:00
}
} |
|
Show voter details
|
60 |
DENIED
|
moderate
|
App\Entity\Entry {#2387
+user: Proxies\__CG__\App\Entity\User {#2392 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Is-an-unknown-supervisor-password-for-ThinkPad-bios-an-issue"
+title: "Is an unknown supervisor password for ThinkPad bios an issue if I've already installed linux?"
+url: null
+body: """
I purchased a second hand ThinkPad from an ebay outlet. When it arrived I wiped windows 10 from it and installed ubuntu with no issues. It runs perfect without any weird fixes needed. However, after just checking the bios to see if I could change some settings, I realised it has a supervisor password.\n
\n
I contacted the seller and they gave me a few to try but they haven’t worked.\n
\n
They said their tech will be back next week and will contact me then but I may have to send it back.\n
\n
My question is, will this be an issue in the future? Or does it depend on which settings are locked?\n
\n
I don’t really want to send it back unless it’s critical, as I have a lot of work to do and my previous laptop is moments away from death.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 28
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699582685 {#2391
date: 2023-11-10 03:18:05.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
+badges: Doctrine\ORM\PersistentCollection {#1401 …}
+children: []
-id: 11519
-titleTs: "'alreadi':14 'bio':8 'instal':15 'issu':10 'linux':16 'password':5 'supervisor':4 'thinkpad':7 'unknown':3 've':13"
-bodyTs: "'10':17 'arriv':13 'away':142 'back':78,93,122 'bio':39 'chang':45 'check':37 'contact':56,83 'could':44 'critic':126 'death':144 'depend':108 'ebay':9 'fix':32 'futur':104 'gave':61 'hand':5 'haven':69 'howev':34 'instal':21 'issu':25,101 'laptop':139 'lock':113 'lot':131 'may':88 'moment':141 'need':33 'next':79 'outlet':10 'password':54 'perfect':28 'previous':138 'purchas':2 'question':95 'realis':49 'realli':117 'run':27 'said':73 'second':4 'see':41 'seller':58 'send':91,120 'set':47,111 'supervisor':53 'tech':75 'thinkpad':6 'tri':66 'ubuntu':22 'unless':123 'want':118 'week':80 'weird':31 'window':16 'wipe':15 'without':29 'work':71,133"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699639659
+visibility: "visible "
+apId: "https://lemm.ee/post/14361885"
+editedAt: DateTimeImmutable @1699623612 {#2389
date: 2023-11-10 14:40:12.0 +01:00
}
+createdAt: DateTimeImmutable @1699553259 {#2369
date: 2023-11-09 19:07:39.0 +01:00
}
} |
|
Show voter details
|
61 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
62 |
DENIED
|
moderate
|
App\Entity\Entry {#1362
+user: Proxies\__CG__\App\Entity\User {#1403 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Anyone-else-experiencing-high-CPU-and-disk-load-by-gnome"
+title: "Anyone else experiencing high CPU and disk load by gnome tracker after upgrading fedora to 39?"
+url: null
+body: """
Just upgraded and the tracker-miner process is taking a constant cpu load of about 15%, and iotop shows a constant disk write that varies between 2 and 11 M/s.\n
\n
It has been like this for a couple hours and shows no signs of stopping. Is this some expected behavior? Can I disable it? i’m worried about affecting my ssd lifespan.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 24
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699558686 {#1363
date: 2023-11-09 20:38:06.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
+badges: Doctrine\ORM\PersistentCollection {#2033 …}
+children: []
-id: 11204
-titleTs: "'39':16 'anyon':1 'cpu':5 'disk':7 'els':2 'experienc':3 'fedora':14 'gnome':10 'high':4 'load':8 'tracker':11 'upgrad':13"
-bodyTs: "'11':30 '15':17 '2':28 'affect':60 'behavior':51 'constant':12,22 'coupl':39 'cpu':13 'disabl':54 'disk':23 'expect':50 'hour':40 'iotop':19 'lifespan':63 'like':35 'load':14 'm':57 'm/s':31 'miner':7 'process':8 'show':20,42 'sign':44 'ssd':62 'stop':46 'take':10 'tracker':6 'tracker-min':5 'upgrad':2 'vari':26 'worri':58 'write':24"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699546345
+visibility: "visible "
+apId: "https://lemmy.eco.br/post/1644153"
+editedAt: null
+createdAt: DateTimeImmutable @1699463345 {#1361
date: 2023-11-08 18:09:05.0 +01:00
}
} |
|
Show voter details
|
63 |
DENIED
|
edit
|
App\Entity\Entry {#1362
+user: Proxies\__CG__\App\Entity\User {#1403 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Anyone-else-experiencing-high-CPU-and-disk-load-by-gnome"
+title: "Anyone else experiencing high CPU and disk load by gnome tracker after upgrading fedora to 39?"
+url: null
+body: """
Just upgraded and the tracker-miner process is taking a constant cpu load of about 15%, and iotop shows a constant disk write that varies between 2 and 11 M/s.\n
\n
It has been like this for a couple hours and shows no signs of stopping. Is this some expected behavior? Can I disable it? i’m worried about affecting my ssd lifespan.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 24
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699558686 {#1363
date: 2023-11-09 20:38:06.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
+badges: Doctrine\ORM\PersistentCollection {#2033 …}
+children: []
-id: 11204
-titleTs: "'39':16 'anyon':1 'cpu':5 'disk':7 'els':2 'experienc':3 'fedora':14 'gnome':10 'high':4 'load':8 'tracker':11 'upgrad':13"
-bodyTs: "'11':30 '15':17 '2':28 'affect':60 'behavior':51 'constant':12,22 'coupl':39 'cpu':13 'disabl':54 'disk':23 'expect':50 'hour':40 'iotop':19 'lifespan':63 'like':35 'load':14 'm':57 'm/s':31 'miner':7 'process':8 'show':20,42 'sign':44 'ssd':62 'stop':46 'take':10 'tracker':6 'tracker-min':5 'upgrad':2 'vari':26 'worri':58 'write':24"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699546345
+visibility: "visible "
+apId: "https://lemmy.eco.br/post/1644153"
+editedAt: null
+createdAt: DateTimeImmutable @1699463345 {#1361
date: 2023-11-08 18:09:05.0 +01:00
}
} |
|
Show voter details
|
64 |
DENIED
|
moderate
|
App\Entity\Entry {#1362
+user: Proxies\__CG__\App\Entity\User {#1403 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Anyone-else-experiencing-high-CPU-and-disk-load-by-gnome"
+title: "Anyone else experiencing high CPU and disk load by gnome tracker after upgrading fedora to 39?"
+url: null
+body: """
Just upgraded and the tracker-miner process is taking a constant cpu load of about 15%, and iotop shows a constant disk write that varies between 2 and 11 M/s.\n
\n
It has been like this for a couple hours and shows no signs of stopping. Is this some expected behavior? Can I disable it? i’m worried about affecting my ssd lifespan.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 24
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699558686 {#1363
date: 2023-11-09 20:38:06.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
+badges: Doctrine\ORM\PersistentCollection {#2033 …}
+children: []
-id: 11204
-titleTs: "'39':16 'anyon':1 'cpu':5 'disk':7 'els':2 'experienc':3 'fedora':14 'gnome':10 'high':4 'load':8 'tracker':11 'upgrad':13"
-bodyTs: "'11':30 '15':17 '2':28 'affect':60 'behavior':51 'constant':12,22 'coupl':39 'cpu':13 'disabl':54 'disk':23 'expect':50 'hour':40 'iotop':19 'lifespan':63 'like':35 'load':14 'm':57 'm/s':31 'miner':7 'process':8 'show':20,42 'sign':44 'ssd':62 'stop':46 'take':10 'tracker':6 'tracker-min':5 'upgrad':2 'vari':26 'worri':58 'write':24"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699546345
+visibility: "visible "
+apId: "https://lemmy.eco.br/post/1644153"
+editedAt: null
+createdAt: DateTimeImmutable @1699463345 {#1361
date: 2023-11-08 18:09:05.0 +01:00
}
} |
|
Show voter details
|
65 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
66 |
DENIED
|
moderate
|
App\Entity\Entry {#2012
+user: Proxies\__CG__\App\Entity\User {#2020 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Firealpaca-Proprietary-Painting-Software-Releases-Linux-Version"
+title: "Firealpaca (Proprietary Painting Software) Releases Linux Version"
+url: null
+body: """
From their [Twitter](https://nitter.net/firealpaca_en/status/1721774890699890835):\n
\n
> FireAlpaca 12th anniversary in this November! Thank you for your continued support! We have released FireAlpaca for Linux […] FireAlpaca for Linux is available for free download from the official website. (System requirements: Ubuntu 23.04 or later, Fedora 36 or later, Debian 12 or later.) -Download FireAlpaca for Linux firealpaca.com/download/
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 16
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699551141 {#2028
date: 2023-11-09 18:32:21.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
+badges: Doctrine\ORM\PersistentCollection {#2084 …}
+children: []
-id: 11065
-titleTs: "'firealpaca':1 'linux':6 'paint':3 'proprietari':2 'releas':5 'softwar':4 'version':7"
-bodyTs: "'/download/':57 '/firealpaca_en/status/1721774890699890835):':6 '12':48 '12th':8 '23.04':40 '36':44 'anniversari':9 'avail':29 'continu':17 'debian':47 'download':32,51 'fedora':43 'firealpaca':7,22,25,52 'firealpaca.com':56 'firealpaca.com/download/':55 'free':31 'later':42,46,50 'linux':24,27,54 'nitter.net':5 'nitter.net/firealpaca_en/status/1721774890699890835):':4 'novemb':12 'offici':35 'releas':21 'requir':38 'support':18 'system':37 'thank':13 'twitter':3 'ubuntu':39 'websit':36"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699495696
+visibility: "visible "
+apId: "https://feddit.uk/post/4260897"
+editedAt: null
+createdAt: DateTimeImmutable @1699409296 {#2029
date: 2023-11-08 03:08:16.0 +01:00
}
} |
|
Show voter details
|
67 |
DENIED
|
edit
|
App\Entity\Entry {#2012
+user: Proxies\__CG__\App\Entity\User {#2020 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Firealpaca-Proprietary-Painting-Software-Releases-Linux-Version"
+title: "Firealpaca (Proprietary Painting Software) Releases Linux Version"
+url: null
+body: """
From their [Twitter](https://nitter.net/firealpaca_en/status/1721774890699890835):\n
\n
> FireAlpaca 12th anniversary in this November! Thank you for your continued support! We have released FireAlpaca for Linux […] FireAlpaca for Linux is available for free download from the official website. (System requirements: Ubuntu 23.04 or later, Fedora 36 or later, Debian 12 or later.) -Download FireAlpaca for Linux firealpaca.com/download/
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 16
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699551141 {#2028
date: 2023-11-09 18:32:21.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
+badges: Doctrine\ORM\PersistentCollection {#2084 …}
+children: []
-id: 11065
-titleTs: "'firealpaca':1 'linux':6 'paint':3 'proprietari':2 'releas':5 'softwar':4 'version':7"
-bodyTs: "'/download/':57 '/firealpaca_en/status/1721774890699890835):':6 '12':48 '12th':8 '23.04':40 '36':44 'anniversari':9 'avail':29 'continu':17 'debian':47 'download':32,51 'fedora':43 'firealpaca':7,22,25,52 'firealpaca.com':56 'firealpaca.com/download/':55 'free':31 'later':42,46,50 'linux':24,27,54 'nitter.net':5 'nitter.net/firealpaca_en/status/1721774890699890835):':4 'novemb':12 'offici':35 'releas':21 'requir':38 'support':18 'system':37 'thank':13 'twitter':3 'ubuntu':39 'websit':36"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699495696
+visibility: "visible "
+apId: "https://feddit.uk/post/4260897"
+editedAt: null
+createdAt: DateTimeImmutable @1699409296 {#2029
date: 2023-11-08 03:08:16.0 +01:00
}
} |
|
Show voter details
|
68 |
DENIED
|
moderate
|
App\Entity\Entry {#2012
+user: Proxies\__CG__\App\Entity\User {#2020 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Firealpaca-Proprietary-Painting-Software-Releases-Linux-Version"
+title: "Firealpaca (Proprietary Painting Software) Releases Linux Version"
+url: null
+body: """
From their [Twitter](https://nitter.net/firealpaca_en/status/1721774890699890835):\n
\n
> FireAlpaca 12th anniversary in this November! Thank you for your continued support! We have released FireAlpaca for Linux […] FireAlpaca for Linux is available for free download from the official website. (System requirements: Ubuntu 23.04 or later, Fedora 36 or later, Debian 12 or later.) -Download FireAlpaca for Linux firealpaca.com/download/
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 16
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699551141 {#2028
date: 2023-11-09 18:32:21.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
+badges: Doctrine\ORM\PersistentCollection {#2084 …}
+children: []
-id: 11065
-titleTs: "'firealpaca':1 'linux':6 'paint':3 'proprietari':2 'releas':5 'softwar':4 'version':7"
-bodyTs: "'/download/':57 '/firealpaca_en/status/1721774890699890835):':6 '12':48 '12th':8 '23.04':40 '36':44 'anniversari':9 'avail':29 'continu':17 'debian':47 'download':32,51 'fedora':43 'firealpaca':7,22,25,52 'firealpaca.com':56 'firealpaca.com/download/':55 'free':31 'later':42,46,50 'linux':24,27,54 'nitter.net':5 'nitter.net/firealpaca_en/status/1721774890699890835):':4 'novemb':12 'offici':35 'releas':21 'requir':38 'support':18 'system':37 'thank':13 'twitter':3 'ubuntu':39 'websit':36"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699495696
+visibility: "visible "
+apId: "https://feddit.uk/post/4260897"
+editedAt: null
+createdAt: DateTimeImmutable @1699409296 {#2029
date: 2023-11-08 03:08:16.0 +01:00
}
} |
|
Show voter details
|
69 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
70 |
DENIED
|
moderate
|
App\Entity\Entry {#2083
+user: Proxies\__CG__\App\Entity\User {#2082 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Distro-Picking"
+title: "Distro Picking"
+url: null
+body: "Hi! You may be sick of these posts by now, but I have been having a very hard time selecting between three distros; that being OpenSUSE, Fedora, and Linux Mint. I have tried linux in the past, I did debian with cinnamon and ran into some issues, so I ended up sheepishly reinstalling windows and getting AME10. I want to give it another shot though, and I have settled on one of these three. I am an absolute beginner to linux and i’m a g*mer (laugh it up), so out of these which would be better? I don’t have too many preferences, I guess I would like to avoid CLI’s as much as possible but it’s not too much of a big deal. I could get used to it and learn the commands. If you can give a bit of advice, that’d be great and I appreciate all of you! "
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 27
+favouriteCount: 22
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699537049 {#2076
date: 2023-11-09 14:37:29.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2085 …}
+votes: Doctrine\ORM\PersistentCollection {#2062 …}
+reports: Doctrine\ORM\PersistentCollection {#2077 …}
+favourites: Doctrine\ORM\PersistentCollection {#2063 …}
+notifications: Doctrine\ORM\PersistentCollection {#2064 …}
+badges: Doctrine\ORM\PersistentCollection {#2088 …}
+children: []
-id: 10660
-titleTs: "'distro':1 'pick':2"
-bodyTs: "'/pictrs/image/7f8df734-0c06-4a77-949f-2b0f0e246cfc.png':162 'absolut':78 'advic':146 'af':158,165 'af-heart':157,164 'ame10':57 'anoth':63 'appreci':153 'avoid':112 'beginn':79 'better':98 'big':127 'bit':144 'cinnamon':42 'cli':113 'command':138 'could':130 'd':148 'deal':128 'debian':40 'distro':23 'emoji':163 'end':50 'fedora':27 'g':86 'get':56,131 'give':61,142 'great':150 'guess':107 'hard':18 'heart':159,166 'hi':1 'issu':47 'laugh':88 'learn':136 'like':110 'linux':29,34,81 'm':84 'mani':104 'may':3 'mer':87 'mint':30 'much':116,124 'one':71 'opensus':26 'past':37 'possibl':118 'post':8 'prefer':105 'ran':44 'reinstal':53 'select':20 'settl':69 'sheepish':52 'shot':64 'sick':5 'though':65 'three':22,74 'time':19 'tri':33 'use':132 'want':59 'window':54 'would':96,109 'www.hexbear.net':161 'www.hexbear.net/pictrs/image/7f8df734-0c06-4a77-949f-2b0f0e246cfc.png':160"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699399429
+visibility: "visible "
+apId: "https://hexbear.net/post/1020397"
+editedAt: null
+createdAt: DateTimeImmutable @1699313029 {#2097
date: 2023-11-07 00:23:49.0 +01:00
}
} |
|
Show voter details
|
71 |
DENIED
|
edit
|
App\Entity\Entry {#2083
+user: Proxies\__CG__\App\Entity\User {#2082 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Distro-Picking"
+title: "Distro Picking"
+url: null
+body: "Hi! You may be sick of these posts by now, but I have been having a very hard time selecting between three distros; that being OpenSUSE, Fedora, and Linux Mint. I have tried linux in the past, I did debian with cinnamon and ran into some issues, so I ended up sheepishly reinstalling windows and getting AME10. I want to give it another shot though, and I have settled on one of these three. I am an absolute beginner to linux and i’m a g*mer (laugh it up), so out of these which would be better? I don’t have too many preferences, I guess I would like to avoid CLI’s as much as possible but it’s not too much of a big deal. I could get used to it and learn the commands. If you can give a bit of advice, that’d be great and I appreciate all of you! "
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 27
+favouriteCount: 22
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699537049 {#2076
date: 2023-11-09 14:37:29.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2085 …}
+votes: Doctrine\ORM\PersistentCollection {#2062 …}
+reports: Doctrine\ORM\PersistentCollection {#2077 …}
+favourites: Doctrine\ORM\PersistentCollection {#2063 …}
+notifications: Doctrine\ORM\PersistentCollection {#2064 …}
+badges: Doctrine\ORM\PersistentCollection {#2088 …}
+children: []
-id: 10660
-titleTs: "'distro':1 'pick':2"
-bodyTs: "'/pictrs/image/7f8df734-0c06-4a77-949f-2b0f0e246cfc.png':162 'absolut':78 'advic':146 'af':158,165 'af-heart':157,164 'ame10':57 'anoth':63 'appreci':153 'avoid':112 'beginn':79 'better':98 'big':127 'bit':144 'cinnamon':42 'cli':113 'command':138 'could':130 'd':148 'deal':128 'debian':40 'distro':23 'emoji':163 'end':50 'fedora':27 'g':86 'get':56,131 'give':61,142 'great':150 'guess':107 'hard':18 'heart':159,166 'hi':1 'issu':47 'laugh':88 'learn':136 'like':110 'linux':29,34,81 'm':84 'mani':104 'may':3 'mer':87 'mint':30 'much':116,124 'one':71 'opensus':26 'past':37 'possibl':118 'post':8 'prefer':105 'ran':44 'reinstal':53 'select':20 'settl':69 'sheepish':52 'shot':64 'sick':5 'though':65 'three':22,74 'time':19 'tri':33 'use':132 'want':59 'window':54 'would':96,109 'www.hexbear.net':161 'www.hexbear.net/pictrs/image/7f8df734-0c06-4a77-949f-2b0f0e246cfc.png':160"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699399429
+visibility: "visible "
+apId: "https://hexbear.net/post/1020397"
+editedAt: null
+createdAt: DateTimeImmutable @1699313029 {#2097
date: 2023-11-07 00:23:49.0 +01:00
}
} |
|
Show voter details
|
72 |
DENIED
|
moderate
|
App\Entity\Entry {#2083
+user: Proxies\__CG__\App\Entity\User {#2082 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Distro-Picking"
+title: "Distro Picking"
+url: null
+body: "Hi! You may be sick of these posts by now, but I have been having a very hard time selecting between three distros; that being OpenSUSE, Fedora, and Linux Mint. I have tried linux in the past, I did debian with cinnamon and ran into some issues, so I ended up sheepishly reinstalling windows and getting AME10. I want to give it another shot though, and I have settled on one of these three. I am an absolute beginner to linux and i’m a g*mer (laugh it up), so out of these which would be better? I don’t have too many preferences, I guess I would like to avoid CLI’s as much as possible but it’s not too much of a big deal. I could get used to it and learn the commands. If you can give a bit of advice, that’d be great and I appreciate all of you! "
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 27
+favouriteCount: 22
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699537049 {#2076
date: 2023-11-09 14:37:29.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2085 …}
+votes: Doctrine\ORM\PersistentCollection {#2062 …}
+reports: Doctrine\ORM\PersistentCollection {#2077 …}
+favourites: Doctrine\ORM\PersistentCollection {#2063 …}
+notifications: Doctrine\ORM\PersistentCollection {#2064 …}
+badges: Doctrine\ORM\PersistentCollection {#2088 …}
+children: []
-id: 10660
-titleTs: "'distro':1 'pick':2"
-bodyTs: "'/pictrs/image/7f8df734-0c06-4a77-949f-2b0f0e246cfc.png':162 'absolut':78 'advic':146 'af':158,165 'af-heart':157,164 'ame10':57 'anoth':63 'appreci':153 'avoid':112 'beginn':79 'better':98 'big':127 'bit':144 'cinnamon':42 'cli':113 'command':138 'could':130 'd':148 'deal':128 'debian':40 'distro':23 'emoji':163 'end':50 'fedora':27 'g':86 'get':56,131 'give':61,142 'great':150 'guess':107 'hard':18 'heart':159,166 'hi':1 'issu':47 'laugh':88 'learn':136 'like':110 'linux':29,34,81 'm':84 'mani':104 'may':3 'mer':87 'mint':30 'much':116,124 'one':71 'opensus':26 'past':37 'possibl':118 'post':8 'prefer':105 'ran':44 'reinstal':53 'select':20 'settl':69 'sheepish':52 'shot':64 'sick':5 'though':65 'three':22,74 'time':19 'tri':33 'use':132 'want':59 'window':54 'would':96,109 'www.hexbear.net':161 'www.hexbear.net/pictrs/image/7f8df734-0c06-4a77-949f-2b0f0e246cfc.png':160"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699399429
+visibility: "visible "
+apId: "https://hexbear.net/post/1020397"
+editedAt: null
+createdAt: DateTimeImmutable @1699313029 {#2097
date: 2023-11-07 00:23:49.0 +01:00
}
} |
|
Show voter details
|
73 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
74 |
DENIED
|
moderate
|
App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2090 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Any-way-to-add-an-It-s-now-safe-to-turn"
+title: "Any way to add an "It's now safe to turn off your computer" message at the end of shutdown?"
+url: null
+body: "I want to do this for my raspberry pis since they don’t have an ACPI system in place. I think it would look really nice combined with XFCE and the chicago95 theme. So I would prefer it if it were showing it like the windows 95 shutdown screen, maybe using an image file? There’s a lot of information on the shutdown process on linux but not much on the topic of altering it."
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 115
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699534532 {#2087
date: 2023-11-09 13:55:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2093 …}
+votes: Doctrine\ORM\PersistentCollection {#2094 …}
+reports: Doctrine\ORM\PersistentCollection {#2140 …}
+favourites: Doctrine\ORM\PersistentCollection {#2133 …}
+notifications: Doctrine\ORM\PersistentCollection {#2131 …}
+badges: Doctrine\ORM\PersistentCollection {#2138 …}
+children: []
-id: 11214
-titleTs: "'add':4 'comput':14 'end':18 'messag':15 'safe':9 'shutdown':20 'turn':11 'way':2"
-bodyTs: "'95':47 'acpi':16 'alter':74 'chicago95':32 'combin':27 'file':54 'imag':53 'inform':60 'like':44 'linux':66 'look':24 'lot':58 'mayb':50 'much':69 'nice':26 'pis':9 'place':19 'prefer':37 'process':64 'raspberri':8 'realli':25 'screen':49 'show':42 'shutdown':48,63 'sinc':10 'system':17 'theme':33 'think':21 'topic':72 'use':51 'want':2 'window':46 'would':23,36 'xfce':29"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699554870
+visibility: "visible "
+apId: "https://lemmy.ml/post/7682276"
+editedAt: null
+createdAt: DateTimeImmutable @1699468470 {#2091
date: 2023-11-08 19:34:30.0 +01:00
}
} |
|
Show voter details
|
75 |
DENIED
|
edit
|
App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2090 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Any-way-to-add-an-It-s-now-safe-to-turn"
+title: "Any way to add an "It's now safe to turn off your computer" message at the end of shutdown?"
+url: null
+body: "I want to do this for my raspberry pis since they don’t have an ACPI system in place. I think it would look really nice combined with XFCE and the chicago95 theme. So I would prefer it if it were showing it like the windows 95 shutdown screen, maybe using an image file? There’s a lot of information on the shutdown process on linux but not much on the topic of altering it."
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 115
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699534532 {#2087
date: 2023-11-09 13:55:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2093 …}
+votes: Doctrine\ORM\PersistentCollection {#2094 …}
+reports: Doctrine\ORM\PersistentCollection {#2140 …}
+favourites: Doctrine\ORM\PersistentCollection {#2133 …}
+notifications: Doctrine\ORM\PersistentCollection {#2131 …}
+badges: Doctrine\ORM\PersistentCollection {#2138 …}
+children: []
-id: 11214
-titleTs: "'add':4 'comput':14 'end':18 'messag':15 'safe':9 'shutdown':20 'turn':11 'way':2"
-bodyTs: "'95':47 'acpi':16 'alter':74 'chicago95':32 'combin':27 'file':54 'imag':53 'inform':60 'like':44 'linux':66 'look':24 'lot':58 'mayb':50 'much':69 'nice':26 'pis':9 'place':19 'prefer':37 'process':64 'raspberri':8 'realli':25 'screen':49 'show':42 'shutdown':48,63 'sinc':10 'system':17 'theme':33 'think':21 'topic':72 'use':51 'want':2 'window':46 'would':23,36 'xfce':29"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699554870
+visibility: "visible "
+apId: "https://lemmy.ml/post/7682276"
+editedAt: null
+createdAt: DateTimeImmutable @1699468470 {#2091
date: 2023-11-08 19:34:30.0 +01:00
}
} |
|
Show voter details
|
76 |
DENIED
|
moderate
|
App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2090 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Any-way-to-add-an-It-s-now-safe-to-turn"
+title: "Any way to add an "It's now safe to turn off your computer" message at the end of shutdown?"
+url: null
+body: "I want to do this for my raspberry pis since they don’t have an ACPI system in place. I think it would look really nice combined with XFCE and the chicago95 theme. So I would prefer it if it were showing it like the windows 95 shutdown screen, maybe using an image file? There’s a lot of information on the shutdown process on linux but not much on the topic of altering it."
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 115
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699534532 {#2087
date: 2023-11-09 13:55:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2093 …}
+votes: Doctrine\ORM\PersistentCollection {#2094 …}
+reports: Doctrine\ORM\PersistentCollection {#2140 …}
+favourites: Doctrine\ORM\PersistentCollection {#2133 …}
+notifications: Doctrine\ORM\PersistentCollection {#2131 …}
+badges: Doctrine\ORM\PersistentCollection {#2138 …}
+children: []
-id: 11214
-titleTs: "'add':4 'comput':14 'end':18 'messag':15 'safe':9 'shutdown':20 'turn':11 'way':2"
-bodyTs: "'95':47 'acpi':16 'alter':74 'chicago95':32 'combin':27 'file':54 'imag':53 'inform':60 'like':44 'linux':66 'look':24 'lot':58 'mayb':50 'much':69 'nice':26 'pis':9 'place':19 'prefer':37 'process':64 'raspberri':8 'realli':25 'screen':49 'show':42 'shutdown':48,63 'sinc':10 'system':17 'theme':33 'think':21 'topic':72 'use':51 'want':2 'window':46 'would':23,36 'xfce':29"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699554870
+visibility: "visible "
+apId: "https://lemmy.ml/post/7682276"
+editedAt: null
+createdAt: DateTimeImmutable @1699468470 {#2091
date: 2023-11-08 19:34:30.0 +01:00
}
} |
|
Show voter details
|
77 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
78 |
DENIED
|
moderate
|
App\Entity\Entry {#2330
+user: Proxies\__CG__\App\Entity\User {#2348 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Best-Linux-distro-for-gaming-on-a-crappy-integrated-graphics"
+title: "Best Linux distro for gaming on a crappy integrated graphics old PC?"
+url: null
+body: "I know the “best linux for gaming” is probably one of the most common questions, but I have heard that some distro can have issues with some hardware, I have a crappy old PC with an integrated radeon R7, which distro would you recommend?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 31
+favouriteCount: 28
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699533189 {#2345
date: 2023-11-09 13:33:09.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2346 …}
+votes: Doctrine\ORM\PersistentCollection {#2347 …}
+reports: Doctrine\ORM\PersistentCollection {#2344 …}
+favourites: Doctrine\ORM\PersistentCollection {#2042 …}
+notifications: Doctrine\ORM\PersistentCollection {#2060 …}
+badges: Doctrine\ORM\PersistentCollection {#2331 …}
+children: []
-id: 10842
-titleTs: "'best':1 'crappi':8 'distro':3 'game':5 'graphic':10 'integr':9 'linux':2 'old':11 'pc':12"
-bodyTs: "'best':4 'common':14 'crappi':32 'distro':22,41 'game':7 'hardwar':28 'heard':19 'integr':37 'issu':25 'know':2 'linux':5 'old':33 'one':10 'pc':34 'probabl':9 'question':15 'r7':39 'radeon':38 'recommend':44 'would':42"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699444948
+visibility: "visible "
+apId: "https://lemm.ee/post/14123437"
+editedAt: null
+createdAt: DateTimeImmutable @1699358548 {#2350
date: 2023-11-07 13:02:28.0 +01:00
}
} |
|
Show voter details
|
79 |
DENIED
|
edit
|
App\Entity\Entry {#2330
+user: Proxies\__CG__\App\Entity\User {#2348 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Best-Linux-distro-for-gaming-on-a-crappy-integrated-graphics"
+title: "Best Linux distro for gaming on a crappy integrated graphics old PC?"
+url: null
+body: "I know the “best linux for gaming” is probably one of the most common questions, but I have heard that some distro can have issues with some hardware, I have a crappy old PC with an integrated radeon R7, which distro would you recommend?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 31
+favouriteCount: 28
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699533189 {#2345
date: 2023-11-09 13:33:09.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2346 …}
+votes: Doctrine\ORM\PersistentCollection {#2347 …}
+reports: Doctrine\ORM\PersistentCollection {#2344 …}
+favourites: Doctrine\ORM\PersistentCollection {#2042 …}
+notifications: Doctrine\ORM\PersistentCollection {#2060 …}
+badges: Doctrine\ORM\PersistentCollection {#2331 …}
+children: []
-id: 10842
-titleTs: "'best':1 'crappi':8 'distro':3 'game':5 'graphic':10 'integr':9 'linux':2 'old':11 'pc':12"
-bodyTs: "'best':4 'common':14 'crappi':32 'distro':22,41 'game':7 'hardwar':28 'heard':19 'integr':37 'issu':25 'know':2 'linux':5 'old':33 'one':10 'pc':34 'probabl':9 'question':15 'r7':39 'radeon':38 'recommend':44 'would':42"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699444948
+visibility: "visible "
+apId: "https://lemm.ee/post/14123437"
+editedAt: null
+createdAt: DateTimeImmutable @1699358548 {#2350
date: 2023-11-07 13:02:28.0 +01:00
}
} |
|
Show voter details
|
80 |
DENIED
|
moderate
|
App\Entity\Entry {#2330
+user: Proxies\__CG__\App\Entity\User {#2348 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Best-Linux-distro-for-gaming-on-a-crappy-integrated-graphics"
+title: "Best Linux distro for gaming on a crappy integrated graphics old PC?"
+url: null
+body: "I know the “best linux for gaming” is probably one of the most common questions, but I have heard that some distro can have issues with some hardware, I have a crappy old PC with an integrated radeon R7, which distro would you recommend?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 31
+favouriteCount: 28
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699533189 {#2345
date: 2023-11-09 13:33:09.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2346 …}
+votes: Doctrine\ORM\PersistentCollection {#2347 …}
+reports: Doctrine\ORM\PersistentCollection {#2344 …}
+favourites: Doctrine\ORM\PersistentCollection {#2042 …}
+notifications: Doctrine\ORM\PersistentCollection {#2060 …}
+badges: Doctrine\ORM\PersistentCollection {#2331 …}
+children: []
-id: 10842
-titleTs: "'best':1 'crappi':8 'distro':3 'game':5 'graphic':10 'integr':9 'linux':2 'old':11 'pc':12"
-bodyTs: "'best':4 'common':14 'crappi':32 'distro':22,41 'game':7 'hardwar':28 'heard':19 'integr':37 'issu':25 'know':2 'linux':5 'old':33 'one':10 'pc':34 'probabl':9 'question':15 'r7':39 'radeon':38 'recommend':44 'would':42"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699444948
+visibility: "visible "
+apId: "https://lemm.ee/post/14123437"
+editedAt: null
+createdAt: DateTimeImmutable @1699358548 {#2350
date: 2023-11-07 13:02:28.0 +01:00
}
} |
|
Show voter details
|
81 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
82 |
DENIED
|
moderate
|
App\Entity\Entry {#2326
+user: Proxies\__CG__\App\Entity\User {#2191 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "My-ubuntu-installation-broke-completely"
+title: "My ubuntu installation broke completely"
+url: null
+body: """
I think that installation was originally 18.04 and I installed it when it was released. A while ago anyways and I’ve been upgrading it as new versions roll out and with the latest upgrade and snapd software it has become more and more annoying to keep the operating system happy and out of my way so I can do whatever I need to do on the computer.\n
\n
Snap updates have been annoying and they randomly (and temporarily) broke stuff while some update process was running on background, but as whole reinstallation is a pain in the rear I have just swallowed the annoyance and kept the thing running.\n
\n
But now today, when I planned that I’d spend the day with paperwork and other “administrative” things I’ve been pushing off due to life being busy, I booted the computer and primary monitor was dead, secondary has resolution of something like 1024x768, nvidia drivers are absent and usability in general just isn’t there.\n
\n
After couple of swear words I thought that ok, I’ll fix this, I’ll install all the updates and make the system happy again. But no. That’s not going to happen, at least not very easily.\n
\n
I’m running LUKS encryption and thus I have a separate boot -partition. 700MB of it. I don’t remember if installer recommended that or if I just threw some reasonable sounding amount on the installer. No matter where that originally came from, it should be enough (this other ubuntu I’m writing this with has 157MB stored on /boot). I removed older kernels, but still the installer claims that I need at least 480MB (or something like that) free space on /boot, but the single kernel image, initrd and whatever crap it includes consumes 280MB (or so). So apt just fails on upgrade as it can’t generate new initrd or whatever it tries to do.\n
\n
So I grabbed my ventoy-drive, downloaded latest mint ISO on it and instead of doing something productive I planned to do I’ll spend couple of hours at reinstalling the whole system. It’ll be quite a while before I install ubuntu on anything.\n
\n
And it’s not just this one broken update, like I mentioned I’ve had a lot of issues with the setup and at least majority of them is caused by ubuntu and it’s package management. This was just a tipping point to finally leave that abusive relationship with my tool and set it up so that I can actually use it instead of figuring out what’s broken now and next.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 51
+favouriteCount: 42
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699449781 {#2289
date: 2023-11-08 14:23:01.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2325 …}
+votes: Doctrine\ORM\PersistentCollection {#2329 …}
+reports: Doctrine\ORM\PersistentCollection {#2323 …}
+favourites: Doctrine\ORM\PersistentCollection {#2300 …}
+notifications: Doctrine\ORM\PersistentCollection {#2340 …}
+badges: Doctrine\ORM\PersistentCollection {#2342 …}
+children: []
-id: 10815
-titleTs: "'broke':4 'complet':5 'instal':3 'ubuntu':2"
-bodyTs: "'/boot':263,286 '1024x768':153 '157mb':260 '18.04':7 '280mb':299 '480mb':278 '700mb':217 'absent':157 'abus':414 'actual':427 'administr':126 'ago':18 'amount':236 'annoy':45,73,104 'anyth':366 'anyway':19 'apt':303 'background':88 'becom':41 'boot':139,215 'broke':79 'broken':374,436 'busi':137 'came':245 'caus':396 'claim':272 'comput':68,141 'consum':298 'coupl':167,347 'crap':295 'd':118 'day':121 'dead':146 'download':328 'drive':327 'driver':155 'due':133 'easili':203 'encrypt':208 'enough':250 'fail':305 'figur':432 'final':411 'fix':177 'free':283 'general':161 'generat':312 'go':196 'grab':323 'happen':198 'happi':51,189 'hour':349 'imag':291 'includ':297 'initrd':292,314 'instal':4,10,181,225,239,271,363 'instead':335,430 'isn':163 'iso':331 'issu':385 'keep':47 'kept':106 'kernel':267,290 'latest':34,329 'least':200,277,391 'leav':412 'life':135 'like':152,281,376 'll':176,180,345,356 'lot':383 'luk':207 'm':205,255 'major':392 'make':186 'manag':403 'matter':241 'mention':378 'mint':330 'monitor':144 'need':63,275 'new':27,313 'next':439 'nvidia':154 'ok':174 'older':266 'one':373 'oper':49 'origin':6,244 'packag':402 'pain':95 'paperwork':123 'partit':216 'plan':115,341 'point':409 'primari':143 'process':84 'product':339 'push':131 'quit':358 'random':76 'rear':98 'reason':234 'recommend':226 'reinstal':92,351 'relationship':415 'releas':15 'rememb':223 'remov':265 'resolut':149 'roll':29 'run':86,109,206 'secondari':147 'separ':214 'set':420 'setup':388 'singl':289 'snap':69 'snapd':37 'softwar':38 'someth':151,280,338 'sound':235 'space':284 'spend':119,346 'still':269 'store':261 'stuff':80 'swallow':102 'swear':169 'system':50,188,354 'temporarili':78 'thing':108,127 'think':2 'thought':172 'threw':232 'thus':210 'tip':408 'today':112 'tool':418 'tri':318 'ubuntu':253,364,398 'updat':70,83,184,375 'upgrad':24,35,307 'usabl':159 'use':428 've':22,129,380 'ventoy':326 'ventoy-dr':325 'version':28 'way':56 'whatev':61,294,316 'whole':91,353 'word':170 'write':256"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699436524
+visibility: "visible "
+apId: "https://sopuli.xyz/post/5576505"
+editedAt: null
+createdAt: DateTimeImmutable @1699350124 {#2328
date: 2023-11-07 10:42:04.0 +01:00
}
} |
|
Show voter details
|
83 |
DENIED
|
edit
|
App\Entity\Entry {#2326
+user: Proxies\__CG__\App\Entity\User {#2191 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "My-ubuntu-installation-broke-completely"
+title: "My ubuntu installation broke completely"
+url: null
+body: """
I think that installation was originally 18.04 and I installed it when it was released. A while ago anyways and I’ve been upgrading it as new versions roll out and with the latest upgrade and snapd software it has become more and more annoying to keep the operating system happy and out of my way so I can do whatever I need to do on the computer.\n
\n
Snap updates have been annoying and they randomly (and temporarily) broke stuff while some update process was running on background, but as whole reinstallation is a pain in the rear I have just swallowed the annoyance and kept the thing running.\n
\n
But now today, when I planned that I’d spend the day with paperwork and other “administrative” things I’ve been pushing off due to life being busy, I booted the computer and primary monitor was dead, secondary has resolution of something like 1024x768, nvidia drivers are absent and usability in general just isn’t there.\n
\n
After couple of swear words I thought that ok, I’ll fix this, I’ll install all the updates and make the system happy again. But no. That’s not going to happen, at least not very easily.\n
\n
I’m running LUKS encryption and thus I have a separate boot -partition. 700MB of it. I don’t remember if installer recommended that or if I just threw some reasonable sounding amount on the installer. No matter where that originally came from, it should be enough (this other ubuntu I’m writing this with has 157MB stored on /boot). I removed older kernels, but still the installer claims that I need at least 480MB (or something like that) free space on /boot, but the single kernel image, initrd and whatever crap it includes consumes 280MB (or so). So apt just fails on upgrade as it can’t generate new initrd or whatever it tries to do.\n
\n
So I grabbed my ventoy-drive, downloaded latest mint ISO on it and instead of doing something productive I planned to do I’ll spend couple of hours at reinstalling the whole system. It’ll be quite a while before I install ubuntu on anything.\n
\n
And it’s not just this one broken update, like I mentioned I’ve had a lot of issues with the setup and at least majority of them is caused by ubuntu and it’s package management. This was just a tipping point to finally leave that abusive relationship with my tool and set it up so that I can actually use it instead of figuring out what’s broken now and next.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 51
+favouriteCount: 42
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699449781 {#2289
date: 2023-11-08 14:23:01.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2325 …}
+votes: Doctrine\ORM\PersistentCollection {#2329 …}
+reports: Doctrine\ORM\PersistentCollection {#2323 …}
+favourites: Doctrine\ORM\PersistentCollection {#2300 …}
+notifications: Doctrine\ORM\PersistentCollection {#2340 …}
+badges: Doctrine\ORM\PersistentCollection {#2342 …}
+children: []
-id: 10815
-titleTs: "'broke':4 'complet':5 'instal':3 'ubuntu':2"
-bodyTs: "'/boot':263,286 '1024x768':153 '157mb':260 '18.04':7 '280mb':299 '480mb':278 '700mb':217 'absent':157 'abus':414 'actual':427 'administr':126 'ago':18 'amount':236 'annoy':45,73,104 'anyth':366 'anyway':19 'apt':303 'background':88 'becom':41 'boot':139,215 'broke':79 'broken':374,436 'busi':137 'came':245 'caus':396 'claim':272 'comput':68,141 'consum':298 'coupl':167,347 'crap':295 'd':118 'day':121 'dead':146 'download':328 'drive':327 'driver':155 'due':133 'easili':203 'encrypt':208 'enough':250 'fail':305 'figur':432 'final':411 'fix':177 'free':283 'general':161 'generat':312 'go':196 'grab':323 'happen':198 'happi':51,189 'hour':349 'imag':291 'includ':297 'initrd':292,314 'instal':4,10,181,225,239,271,363 'instead':335,430 'isn':163 'iso':331 'issu':385 'keep':47 'kept':106 'kernel':267,290 'latest':34,329 'least':200,277,391 'leav':412 'life':135 'like':152,281,376 'll':176,180,345,356 'lot':383 'luk':207 'm':205,255 'major':392 'make':186 'manag':403 'matter':241 'mention':378 'mint':330 'monitor':144 'need':63,275 'new':27,313 'next':439 'nvidia':154 'ok':174 'older':266 'one':373 'oper':49 'origin':6,244 'packag':402 'pain':95 'paperwork':123 'partit':216 'plan':115,341 'point':409 'primari':143 'process':84 'product':339 'push':131 'quit':358 'random':76 'rear':98 'reason':234 'recommend':226 'reinstal':92,351 'relationship':415 'releas':15 'rememb':223 'remov':265 'resolut':149 'roll':29 'run':86,109,206 'secondari':147 'separ':214 'set':420 'setup':388 'singl':289 'snap':69 'snapd':37 'softwar':38 'someth':151,280,338 'sound':235 'space':284 'spend':119,346 'still':269 'store':261 'stuff':80 'swallow':102 'swear':169 'system':50,188,354 'temporarili':78 'thing':108,127 'think':2 'thought':172 'threw':232 'thus':210 'tip':408 'today':112 'tool':418 'tri':318 'ubuntu':253,364,398 'updat':70,83,184,375 'upgrad':24,35,307 'usabl':159 'use':428 've':22,129,380 'ventoy':326 'ventoy-dr':325 'version':28 'way':56 'whatev':61,294,316 'whole':91,353 'word':170 'write':256"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699436524
+visibility: "visible "
+apId: "https://sopuli.xyz/post/5576505"
+editedAt: null
+createdAt: DateTimeImmutable @1699350124 {#2328
date: 2023-11-07 10:42:04.0 +01:00
}
} |
|
Show voter details
|
84 |
DENIED
|
moderate
|
App\Entity\Entry {#2326
+user: Proxies\__CG__\App\Entity\User {#2191 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "My-ubuntu-installation-broke-completely"
+title: "My ubuntu installation broke completely"
+url: null
+body: """
I think that installation was originally 18.04 and I installed it when it was released. A while ago anyways and I’ve been upgrading it as new versions roll out and with the latest upgrade and snapd software it has become more and more annoying to keep the operating system happy and out of my way so I can do whatever I need to do on the computer.\n
\n
Snap updates have been annoying and they randomly (and temporarily) broke stuff while some update process was running on background, but as whole reinstallation is a pain in the rear I have just swallowed the annoyance and kept the thing running.\n
\n
But now today, when I planned that I’d spend the day with paperwork and other “administrative” things I’ve been pushing off due to life being busy, I booted the computer and primary monitor was dead, secondary has resolution of something like 1024x768, nvidia drivers are absent and usability in general just isn’t there.\n
\n
After couple of swear words I thought that ok, I’ll fix this, I’ll install all the updates and make the system happy again. But no. That’s not going to happen, at least not very easily.\n
\n
I’m running LUKS encryption and thus I have a separate boot -partition. 700MB of it. I don’t remember if installer recommended that or if I just threw some reasonable sounding amount on the installer. No matter where that originally came from, it should be enough (this other ubuntu I’m writing this with has 157MB stored on /boot). I removed older kernels, but still the installer claims that I need at least 480MB (or something like that) free space on /boot, but the single kernel image, initrd and whatever crap it includes consumes 280MB (or so). So apt just fails on upgrade as it can’t generate new initrd or whatever it tries to do.\n
\n
So I grabbed my ventoy-drive, downloaded latest mint ISO on it and instead of doing something productive I planned to do I’ll spend couple of hours at reinstalling the whole system. It’ll be quite a while before I install ubuntu on anything.\n
\n
And it’s not just this one broken update, like I mentioned I’ve had a lot of issues with the setup and at least majority of them is caused by ubuntu and it’s package management. This was just a tipping point to finally leave that abusive relationship with my tool and set it up so that I can actually use it instead of figuring out what’s broken now and next.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 51
+favouriteCount: 42
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699449781 {#2289
date: 2023-11-08 14:23:01.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2325 …}
+votes: Doctrine\ORM\PersistentCollection {#2329 …}
+reports: Doctrine\ORM\PersistentCollection {#2323 …}
+favourites: Doctrine\ORM\PersistentCollection {#2300 …}
+notifications: Doctrine\ORM\PersistentCollection {#2340 …}
+badges: Doctrine\ORM\PersistentCollection {#2342 …}
+children: []
-id: 10815
-titleTs: "'broke':4 'complet':5 'instal':3 'ubuntu':2"
-bodyTs: "'/boot':263,286 '1024x768':153 '157mb':260 '18.04':7 '280mb':299 '480mb':278 '700mb':217 'absent':157 'abus':414 'actual':427 'administr':126 'ago':18 'amount':236 'annoy':45,73,104 'anyth':366 'anyway':19 'apt':303 'background':88 'becom':41 'boot':139,215 'broke':79 'broken':374,436 'busi':137 'came':245 'caus':396 'claim':272 'comput':68,141 'consum':298 'coupl':167,347 'crap':295 'd':118 'day':121 'dead':146 'download':328 'drive':327 'driver':155 'due':133 'easili':203 'encrypt':208 'enough':250 'fail':305 'figur':432 'final':411 'fix':177 'free':283 'general':161 'generat':312 'go':196 'grab':323 'happen':198 'happi':51,189 'hour':349 'imag':291 'includ':297 'initrd':292,314 'instal':4,10,181,225,239,271,363 'instead':335,430 'isn':163 'iso':331 'issu':385 'keep':47 'kept':106 'kernel':267,290 'latest':34,329 'least':200,277,391 'leav':412 'life':135 'like':152,281,376 'll':176,180,345,356 'lot':383 'luk':207 'm':205,255 'major':392 'make':186 'manag':403 'matter':241 'mention':378 'mint':330 'monitor':144 'need':63,275 'new':27,313 'next':439 'nvidia':154 'ok':174 'older':266 'one':373 'oper':49 'origin':6,244 'packag':402 'pain':95 'paperwork':123 'partit':216 'plan':115,341 'point':409 'primari':143 'process':84 'product':339 'push':131 'quit':358 'random':76 'rear':98 'reason':234 'recommend':226 'reinstal':92,351 'relationship':415 'releas':15 'rememb':223 'remov':265 'resolut':149 'roll':29 'run':86,109,206 'secondari':147 'separ':214 'set':420 'setup':388 'singl':289 'snap':69 'snapd':37 'softwar':38 'someth':151,280,338 'sound':235 'space':284 'spend':119,346 'still':269 'store':261 'stuff':80 'swallow':102 'swear':169 'system':50,188,354 'temporarili':78 'thing':108,127 'think':2 'thought':172 'threw':232 'thus':210 'tip':408 'today':112 'tool':418 'tri':318 'ubuntu':253,364,398 'updat':70,83,184,375 'upgrad':24,35,307 'usabl':159 'use':428 've':22,129,380 'ventoy':326 'ventoy-dr':325 'version':28 'way':56 'whatev':61,294,316 'whole':91,353 'word':170 'write':256"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699436524
+visibility: "visible "
+apId: "https://sopuli.xyz/post/5576505"
+editedAt: null
+createdAt: DateTimeImmutable @1699350124 {#2328
date: 2023-11-07 10:42:04.0 +01:00
}
} |
|
Show voter details
|
85 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
86 |
DENIED
|
moderate
|
App\Entity\Entry {#2335
+user: Proxies\__CG__\App\Entity\User {#1667 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Help-troubleshooting-issues-with-Sony-WH1000MX5-playback"
+title: "Help troubleshooting issues with Sony WH1000MX5 playback"
+url: null
+body: """
This is not strictly a Linux-issue as I reproduce this issue under Windows 10 as well (but can not reproduce under Android or macOS), but I will be using Linux for any troubleshooting and I wasn’t sure where else to post this.\n
\n
I have a pair of Sony WH1000MX5 that acts like an expensive piece of garbage so far. I will eventually (usually within 2-10 minutes usually) hear crackling noises when using the headset via Bluetooth in high-fidelity mode on my Linux machine (and as mentioned above, this is reproduced on two other machines running Windows 10). The crackling noises are there regardless of whether active noise canceling is active or not. It is not constant, but it is enough to significantly reduce the listening experience, especially for tracks where not too much is going on, such as quiet piano pieces.\n
\n
On my Linux machine, I can choose between three codecs: SBC, SBC-XQ and LDAC. It tends to be less pronounced using the LDAC codec over SBC (right now I’ve had a longer period with no issue). SBC-XQ also seems better. However, I have experienced it for all choices of codecs before. Also, under Windows (which I must use for work), this does not seem to be a choice at all. But I wonder if the problem lies here? I don’t know much about Bluetooth codecs.\n
\n
Ideally, as in addition to these issues, they are not very comfortable, I would like to return them and get a refund (should be possible under local laws), but I am having some issues with the retailer claiming they can’t find anything wrong with them after two trips to a repair shop. The first time they factory reset it and updated the firmware, the second time they did nothing. I don’t think local Sony support will be of much help, and the local laws relate to to the buyer/seller contract, so for the refund or repair they will anyway refer me to the retailer.\n
\n
So I am trying to get a better understanding of the issue before pursuing this further, and if I fail to get a refund, I would like to fix the issue if possible. So if anyone is familiar with this and could help point me in the right directions to fix these issues, I would be very grateful.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 15
+favouriteCount: 24
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699431011 {#2343
date: 2023-11-08 09:10:11.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2339 …}
+votes: Doctrine\ORM\PersistentCollection {#2159 …}
+reports: Doctrine\ORM\PersistentCollection {#2135 …}
+favourites: Doctrine\ORM\PersistentCollection {#2137 …}
+notifications: Doctrine\ORM\PersistentCollection {#2068 …}
+badges: Doctrine\ORM\PersistentCollection {#2069 …}
+children: []
-id: 10833
-titleTs: "'help':1 'issu':3 'playback':7 'soni':5 'troubleshoot':2 'wh1000mx5':6"
-bodyTs: "'-10':69 '10':16,103 '2':68 'act':54 'activ':112,116 'addit':242 'also':190,204 'android':24 'anyon':380 'anyth':281 'anyway':339 'better':192,352 'bluetooth':80,237 'buyer/seller':329 'cancel':114 'choic':200,220 'choos':154 'claim':276 'codec':157,173,202,238 'comfort':250 'constant':122 'contract':330 'could':386 'crackl':73,105 'direct':393 'els':42 'enough':126 'especi':133 'eventu':65 'expens':57 'experi':132 'experienc':196 'factori':296 'fail':364 'familiar':382 'far':62 'fidel':84 'find':280 'firmwar':302 'first':293 'fix':373,395 'garbag':60 'get':258,350,366 'go':141 'grate':402 'headset':78 'hear':72 'help':320,387 'high':83 'high-fidel':82 'howev':193 'ideal':239 'issu':8,13,186,245,272,356,375,397 'know':234 'law':266,324 'ldac':163,172 'less':168 'lie':229 'like':55,253,371 'linux':7,32,88,150 'linux-issu':6 'listen':131 'local':265,313,323 'longer':182 'machin':89,100,151 'maco':26 'mention':92 'minut':70 'mode':85 'much':139,235,319 'must':209 'nois':74,106,113 'noth':308 'pair':49 'period':183 'piano':146 'piec':58,147 'point':388 'possibl':263,377 'post':44 'problem':228 'pronounc':169 'pursu':358 'quiet':145 'reduc':129 'refer':340 'refund':260,334,368 'regardless':109 'relat':325 'repair':290,336 'reproduc':11,22,96 'reset':297 'retail':275,344 'return':255 'right':176,392 'run':101 'sbc':158,160,175,188 'sbc-xq':159,187 'second':304 'seem':191,216 'shop':291 'signific':128 'soni':51,314 'strict':4 'support':315 'sure':40 'tend':165 'think':312 'three':156 'time':294,305 'track':135 'tri':348 'trip':287 'troubleshoot':35 'two':98,286 'understand':353 'updat':300 'use':31,76,170,210 'usual':66,71 've':179 'via':79 'wasn':38 'well':18 'wh1000mx5':52 'whether':111 'window':15,102,206 'within':67 'wonder':225 'work':212 'would':252,370,399 'wrong':282 'xq':161,189"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699440694
+visibility: "visible "
+apId: "https://lemmy.ml/post/7622909"
+editedAt: null
+createdAt: DateTimeImmutable @1699354294 {#2336
date: 2023-11-07 11:51:34.0 +01:00
}
} |
|
Show voter details
|
87 |
DENIED
|
edit
|
App\Entity\Entry {#2335
+user: Proxies\__CG__\App\Entity\User {#1667 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Help-troubleshooting-issues-with-Sony-WH1000MX5-playback"
+title: "Help troubleshooting issues with Sony WH1000MX5 playback"
+url: null
+body: """
This is not strictly a Linux-issue as I reproduce this issue under Windows 10 as well (but can not reproduce under Android or macOS), but I will be using Linux for any troubleshooting and I wasn’t sure where else to post this.\n
\n
I have a pair of Sony WH1000MX5 that acts like an expensive piece of garbage so far. I will eventually (usually within 2-10 minutes usually) hear crackling noises when using the headset via Bluetooth in high-fidelity mode on my Linux machine (and as mentioned above, this is reproduced on two other machines running Windows 10). The crackling noises are there regardless of whether active noise canceling is active or not. It is not constant, but it is enough to significantly reduce the listening experience, especially for tracks where not too much is going on, such as quiet piano pieces.\n
\n
On my Linux machine, I can choose between three codecs: SBC, SBC-XQ and LDAC. It tends to be less pronounced using the LDAC codec over SBC (right now I’ve had a longer period with no issue). SBC-XQ also seems better. However, I have experienced it for all choices of codecs before. Also, under Windows (which I must use for work), this does not seem to be a choice at all. But I wonder if the problem lies here? I don’t know much about Bluetooth codecs.\n
\n
Ideally, as in addition to these issues, they are not very comfortable, I would like to return them and get a refund (should be possible under local laws), but I am having some issues with the retailer claiming they can’t find anything wrong with them after two trips to a repair shop. The first time they factory reset it and updated the firmware, the second time they did nothing. I don’t think local Sony support will be of much help, and the local laws relate to to the buyer/seller contract, so for the refund or repair they will anyway refer me to the retailer.\n
\n
So I am trying to get a better understanding of the issue before pursuing this further, and if I fail to get a refund, I would like to fix the issue if possible. So if anyone is familiar with this and could help point me in the right directions to fix these issues, I would be very grateful.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 15
+favouriteCount: 24
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699431011 {#2343
date: 2023-11-08 09:10:11.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2339 …}
+votes: Doctrine\ORM\PersistentCollection {#2159 …}
+reports: Doctrine\ORM\PersistentCollection {#2135 …}
+favourites: Doctrine\ORM\PersistentCollection {#2137 …}
+notifications: Doctrine\ORM\PersistentCollection {#2068 …}
+badges: Doctrine\ORM\PersistentCollection {#2069 …}
+children: []
-id: 10833
-titleTs: "'help':1 'issu':3 'playback':7 'soni':5 'troubleshoot':2 'wh1000mx5':6"
-bodyTs: "'-10':69 '10':16,103 '2':68 'act':54 'activ':112,116 'addit':242 'also':190,204 'android':24 'anyon':380 'anyth':281 'anyway':339 'better':192,352 'bluetooth':80,237 'buyer/seller':329 'cancel':114 'choic':200,220 'choos':154 'claim':276 'codec':157,173,202,238 'comfort':250 'constant':122 'contract':330 'could':386 'crackl':73,105 'direct':393 'els':42 'enough':126 'especi':133 'eventu':65 'expens':57 'experi':132 'experienc':196 'factori':296 'fail':364 'familiar':382 'far':62 'fidel':84 'find':280 'firmwar':302 'first':293 'fix':373,395 'garbag':60 'get':258,350,366 'go':141 'grate':402 'headset':78 'hear':72 'help':320,387 'high':83 'high-fidel':82 'howev':193 'ideal':239 'issu':8,13,186,245,272,356,375,397 'know':234 'law':266,324 'ldac':163,172 'less':168 'lie':229 'like':55,253,371 'linux':7,32,88,150 'linux-issu':6 'listen':131 'local':265,313,323 'longer':182 'machin':89,100,151 'maco':26 'mention':92 'minut':70 'mode':85 'much':139,235,319 'must':209 'nois':74,106,113 'noth':308 'pair':49 'period':183 'piano':146 'piec':58,147 'point':388 'possibl':263,377 'post':44 'problem':228 'pronounc':169 'pursu':358 'quiet':145 'reduc':129 'refer':340 'refund':260,334,368 'regardless':109 'relat':325 'repair':290,336 'reproduc':11,22,96 'reset':297 'retail':275,344 'return':255 'right':176,392 'run':101 'sbc':158,160,175,188 'sbc-xq':159,187 'second':304 'seem':191,216 'shop':291 'signific':128 'soni':51,314 'strict':4 'support':315 'sure':40 'tend':165 'think':312 'three':156 'time':294,305 'track':135 'tri':348 'trip':287 'troubleshoot':35 'two':98,286 'understand':353 'updat':300 'use':31,76,170,210 'usual':66,71 've':179 'via':79 'wasn':38 'well':18 'wh1000mx5':52 'whether':111 'window':15,102,206 'within':67 'wonder':225 'work':212 'would':252,370,399 'wrong':282 'xq':161,189"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699440694
+visibility: "visible "
+apId: "https://lemmy.ml/post/7622909"
+editedAt: null
+createdAt: DateTimeImmutable @1699354294 {#2336
date: 2023-11-07 11:51:34.0 +01:00
}
} |
|
Show voter details
|
88 |
DENIED
|
moderate
|
App\Entity\Entry {#2335
+user: Proxies\__CG__\App\Entity\User {#1667 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Help-troubleshooting-issues-with-Sony-WH1000MX5-playback"
+title: "Help troubleshooting issues with Sony WH1000MX5 playback"
+url: null
+body: """
This is not strictly a Linux-issue as I reproduce this issue under Windows 10 as well (but can not reproduce under Android or macOS), but I will be using Linux for any troubleshooting and I wasn’t sure where else to post this.\n
\n
I have a pair of Sony WH1000MX5 that acts like an expensive piece of garbage so far. I will eventually (usually within 2-10 minutes usually) hear crackling noises when using the headset via Bluetooth in high-fidelity mode on my Linux machine (and as mentioned above, this is reproduced on two other machines running Windows 10). The crackling noises are there regardless of whether active noise canceling is active or not. It is not constant, but it is enough to significantly reduce the listening experience, especially for tracks where not too much is going on, such as quiet piano pieces.\n
\n
On my Linux machine, I can choose between three codecs: SBC, SBC-XQ and LDAC. It tends to be less pronounced using the LDAC codec over SBC (right now I’ve had a longer period with no issue). SBC-XQ also seems better. However, I have experienced it for all choices of codecs before. Also, under Windows (which I must use for work), this does not seem to be a choice at all. But I wonder if the problem lies here? I don’t know much about Bluetooth codecs.\n
\n
Ideally, as in addition to these issues, they are not very comfortable, I would like to return them and get a refund (should be possible under local laws), but I am having some issues with the retailer claiming they can’t find anything wrong with them after two trips to a repair shop. The first time they factory reset it and updated the firmware, the second time they did nothing. I don’t think local Sony support will be of much help, and the local laws relate to to the buyer/seller contract, so for the refund or repair they will anyway refer me to the retailer.\n
\n
So I am trying to get a better understanding of the issue before pursuing this further, and if I fail to get a refund, I would like to fix the issue if possible. So if anyone is familiar with this and could help point me in the right directions to fix these issues, I would be very grateful.
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 15
+favouriteCount: 24
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699431011 {#2343
date: 2023-11-08 09:10:11.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2339 …}
+votes: Doctrine\ORM\PersistentCollection {#2159 …}
+reports: Doctrine\ORM\PersistentCollection {#2135 …}
+favourites: Doctrine\ORM\PersistentCollection {#2137 …}
+notifications: Doctrine\ORM\PersistentCollection {#2068 …}
+badges: Doctrine\ORM\PersistentCollection {#2069 …}
+children: []
-id: 10833
-titleTs: "'help':1 'issu':3 'playback':7 'soni':5 'troubleshoot':2 'wh1000mx5':6"
-bodyTs: "'-10':69 '10':16,103 '2':68 'act':54 'activ':112,116 'addit':242 'also':190,204 'android':24 'anyon':380 'anyth':281 'anyway':339 'better':192,352 'bluetooth':80,237 'buyer/seller':329 'cancel':114 'choic':200,220 'choos':154 'claim':276 'codec':157,173,202,238 'comfort':250 'constant':122 'contract':330 'could':386 'crackl':73,105 'direct':393 'els':42 'enough':126 'especi':133 'eventu':65 'expens':57 'experi':132 'experienc':196 'factori':296 'fail':364 'familiar':382 'far':62 'fidel':84 'find':280 'firmwar':302 'first':293 'fix':373,395 'garbag':60 'get':258,350,366 'go':141 'grate':402 'headset':78 'hear':72 'help':320,387 'high':83 'high-fidel':82 'howev':193 'ideal':239 'issu':8,13,186,245,272,356,375,397 'know':234 'law':266,324 'ldac':163,172 'less':168 'lie':229 'like':55,253,371 'linux':7,32,88,150 'linux-issu':6 'listen':131 'local':265,313,323 'longer':182 'machin':89,100,151 'maco':26 'mention':92 'minut':70 'mode':85 'much':139,235,319 'must':209 'nois':74,106,113 'noth':308 'pair':49 'period':183 'piano':146 'piec':58,147 'point':388 'possibl':263,377 'post':44 'problem':228 'pronounc':169 'pursu':358 'quiet':145 'reduc':129 'refer':340 'refund':260,334,368 'regardless':109 'relat':325 'repair':290,336 'reproduc':11,22,96 'reset':297 'retail':275,344 'return':255 'right':176,392 'run':101 'sbc':158,160,175,188 'sbc-xq':159,187 'second':304 'seem':191,216 'shop':291 'signific':128 'soni':51,314 'strict':4 'support':315 'sure':40 'tend':165 'think':312 'three':156 'time':294,305 'track':135 'tri':348 'trip':287 'troubleshoot':35 'two':98,286 'understand':353 'updat':300 'use':31,76,170,210 'usual':66,71 've':179 'via':79 'wasn':38 'well':18 'wh1000mx5':52 'whether':111 'window':15,102,206 'within':67 'wonder':225 'work':212 'would':252,370,399 'wrong':282 'xq':161,189"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699440694
+visibility: "visible "
+apId: "https://lemmy.ml/post/7622909"
+editedAt: null
+createdAt: DateTimeImmutable @1699354294 {#2336
date: 2023-11-07 11:51:34.0 +01:00
}
} |
|
Show voter details
|
89 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
90 |
DENIED
|
moderate
|
App\Entity\Entry {#2071
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Filesystem-mirroring-best-backup-tool"
+title: "Filesystem mirroring: best backup tool?"
+url: null
+body: """
I am currently using Freefilesync Flatpak, but that app is not great at all. I dont want weird archives or anything, just to copy my filesystem to another drive.\n
\n
Also, I want to mirror with the possibility to exclude folders. Mirroring means that the backup should be updated to look like my disk, including deletion of files.\n
\n
I tested many tools in the Past and for some reason came back to FFS.\n
\n
Best would be to have automatic backups once I plug in and decrypt the backup drive.\n
\n
Thanks!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 18
+favouriteCount: 22
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699425531 {#2074
date: 2023-11-08 07:38:51.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2067 …}
+votes: Doctrine\ORM\PersistentCollection {#2049 …}
+reports: Doctrine\ORM\PersistentCollection {#2051 …}
+favourites: Doctrine\ORM\PersistentCollection {#2059 …}
+notifications: Doctrine\ORM\PersistentCollection {#2047 …}
+badges: Doctrine\ORM\PersistentCollection {#2057 …}
+children: []
-id: 10832
-titleTs: "'backup':4 'best':3 'filesystem':1 'mirror':2 'tool':5"
-bodyTs: "'also':30 'anoth':28 'anyth':21 'app':9 'archiv':19 'automat':78 'back':70 'backup':45,79,87 'best':73 'came':69 'copi':24 'current':3 'decrypt':85 'delet':55 'disk':53 'dont':16 'drive':29,88 'exclud':39 'ffs':72 'file':57 'filesystem':26 'flatpak':6 'folder':40 'freefilesync':5 'great':12 'includ':54 'like':51 'look':50 'mani':60 'mean':42 'mirror':34,41 'past':64 'plug':82 'possibl':37 'reason':68 'test':59 'thank':89 'tool':61 'updat':48 'use':4 'want':17,32 'weird':18 'would':74"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699439591
+visibility: "visible "
+apId: "https://feddit.de/post/5391386"
+editedAt: null
+createdAt: DateTimeImmutable @1699353191 {#2066
date: 2023-11-07 11:33:11.0 +01:00
}
} |
|
Show voter details
|
91 |
DENIED
|
edit
|
App\Entity\Entry {#2071
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Filesystem-mirroring-best-backup-tool"
+title: "Filesystem mirroring: best backup tool?"
+url: null
+body: """
I am currently using Freefilesync Flatpak, but that app is not great at all. I dont want weird archives or anything, just to copy my filesystem to another drive.\n
\n
Also, I want to mirror with the possibility to exclude folders. Mirroring means that the backup should be updated to look like my disk, including deletion of files.\n
\n
I tested many tools in the Past and for some reason came back to FFS.\n
\n
Best would be to have automatic backups once I plug in and decrypt the backup drive.\n
\n
Thanks!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 18
+favouriteCount: 22
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699425531 {#2074
date: 2023-11-08 07:38:51.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2067 …}
+votes: Doctrine\ORM\PersistentCollection {#2049 …}
+reports: Doctrine\ORM\PersistentCollection {#2051 …}
+favourites: Doctrine\ORM\PersistentCollection {#2059 …}
+notifications: Doctrine\ORM\PersistentCollection {#2047 …}
+badges: Doctrine\ORM\PersistentCollection {#2057 …}
+children: []
-id: 10832
-titleTs: "'backup':4 'best':3 'filesystem':1 'mirror':2 'tool':5"
-bodyTs: "'also':30 'anoth':28 'anyth':21 'app':9 'archiv':19 'automat':78 'back':70 'backup':45,79,87 'best':73 'came':69 'copi':24 'current':3 'decrypt':85 'delet':55 'disk':53 'dont':16 'drive':29,88 'exclud':39 'ffs':72 'file':57 'filesystem':26 'flatpak':6 'folder':40 'freefilesync':5 'great':12 'includ':54 'like':51 'look':50 'mani':60 'mean':42 'mirror':34,41 'past':64 'plug':82 'possibl':37 'reason':68 'test':59 'thank':89 'tool':61 'updat':48 'use':4 'want':17,32 'weird':18 'would':74"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699439591
+visibility: "visible "
+apId: "https://feddit.de/post/5391386"
+editedAt: null
+createdAt: DateTimeImmutable @1699353191 {#2066
date: 2023-11-07 11:33:11.0 +01:00
}
} |
|
Show voter details
|
92 |
DENIED
|
moderate
|
App\Entity\Entry {#2071
+user: Proxies\__CG__\App\Entity\User {#1647 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "Filesystem-mirroring-best-backup-tool"
+title: "Filesystem mirroring: best backup tool?"
+url: null
+body: """
I am currently using Freefilesync Flatpak, but that app is not great at all. I dont want weird archives or anything, just to copy my filesystem to another drive.\n
\n
Also, I want to mirror with the possibility to exclude folders. Mirroring means that the backup should be updated to look like my disk, including deletion of files.\n
\n
I tested many tools in the Past and for some reason came back to FFS.\n
\n
Best would be to have automatic backups once I plug in and decrypt the backup drive.\n
\n
Thanks!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 18
+favouriteCount: 22
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699425531 {#2074
date: 2023-11-08 07:38:51.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2067 …}
+votes: Doctrine\ORM\PersistentCollection {#2049 …}
+reports: Doctrine\ORM\PersistentCollection {#2051 …}
+favourites: Doctrine\ORM\PersistentCollection {#2059 …}
+notifications: Doctrine\ORM\PersistentCollection {#2047 …}
+badges: Doctrine\ORM\PersistentCollection {#2057 …}
+children: []
-id: 10832
-titleTs: "'backup':4 'best':3 'filesystem':1 'mirror':2 'tool':5"
-bodyTs: "'also':30 'anoth':28 'anyth':21 'app':9 'archiv':19 'automat':78 'back':70 'backup':45,79,87 'best':73 'came':69 'copi':24 'current':3 'decrypt':85 'delet':55 'disk':53 'dont':16 'drive':29,88 'exclud':39 'ffs':72 'file':57 'filesystem':26 'flatpak':6 'folder':40 'freefilesync':5 'great':12 'includ':54 'like':51 'look':50 'mani':60 'mean':42 'mirror':34,41 'past':64 'plug':82 'possibl':37 'reason':68 'test':59 'thank':89 'tool':61 'updat':48 'use':4 'want':17,32 'weird':18 'would':74"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699439591
+visibility: "visible "
+apId: "https://feddit.de/post/5391386"
+editedAt: null
+createdAt: DateTimeImmutable @1699353191 {#2066
date: 2023-11-07 11:33:11.0 +01:00
}
} |
|
Show voter details
|
93 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
94 |
DENIED
|
moderate
|
App\Entity\Entry {#2058
+user: Proxies\__CG__\App\Entity\User {#2053 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "The-best-RAID-setup-for-internal-HDD-and-does-it"
+title: "The best RAID setup for internal HDD and does it actually make sense to use it all for gaming?"
+url: null
+body: """
I have 500gb SSD and need to basically uninstall Elden Ring and Dark Souls 3 to install Baldur’s Gate 3. I want to buy new SSD, but my money is a bit tight right now as I’m saving for my degree’s tuition fee.\n
\n
I’m thinking of buying 3x500GB spinning HDD that will cost me around $20. I know it wont be as fast as SSD, but I read/watched about RAID, and saw amazing result. Around 400-500MBPs, which should be more than enough for gaming, imo. If I were to buy the same amount of storage but SSD, it will cost me $100.\n
\n
I dont really need redundancy, as all of my personal documents are backed up in my server and I have separate disk just for my data archieve. It will only be used to game and game only.\n
\n
Do you think that my idea makes sense? Is it does…, I want to ask another questions.\n
\n
I knew I wanted to use RAID 0, but after I read arch wiki, it says that RAID 5 is superior. Should I use BTRFS, EXT4, ZFS, or F2FS? What kernel or module should I use?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 36
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699407312 {#2055
date: 2023-11-08 02:35:12.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2125 …}
+votes: Doctrine\ORM\PersistentCollection {#2041 …}
+reports: Doctrine\ORM\PersistentCollection {#2100 …}
+favourites: Doctrine\ORM\PersistentCollection {#2105 …}
+notifications: Doctrine\ORM\PersistentCollection {#2111 …}
+badges: Doctrine\ORM\PersistentCollection {#2102 …}
+children: []
-id: 10549
-titleTs: "'actual':11 'best':2 'game':19 'hdd':7 'intern':6 'make':12 'raid':3 'sens':13 'setup':4 'use':15"
-bodyTs: "'-500':81 '0':170 '100':108 '20':60 '3':15,21 '3x500gb':52 '400':80 '5':181 '500gb':3 'amaz':77 'amount':99 'anoth':161 'arch':175 'archiev':135 'around':59,79 'ask':160 'back':121 'baldur':18 'basic':8 'bit':33 'btrfs':187 'buy':25,51,96 'cost':57,106 'dark':13 'data':134 'degre':43 'disk':130 'document':119 'dont':110 'elden':10 'enough':88 'ext4':188 'f2fs':191 'fast':67 'fee':46 'game':90,142,144 'gate':20 'hdd':54 'idea':151 'imo':91 'instal':17 'kernel':193 'knew':164 'know':62 'm':39,48 'make':152 'mbps':82 'modul':195 'money':30 'need':6,112 'new':26 'person':118 'question':162 'raid':74,169,180 'read':174 'read/watched':72 'realli':111 'redund':113 'result':78 'right':35 'ring':11 'save':40 'saw':76 'say':178 'sens':153 'separ':129 'server':125 'soul':14 'spin':53 'ssd':4,27,69,103 'storag':101 'superior':183 'think':49,148 'tight':34 'tuition':45 'uninstal':9 'use':140,168,186,198 'want':23,158,166 'wiki':176 'wont':64 'zfs':189"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699373440
+visibility: "visible "
+apId: "https://lemmy.ml/post/7585833"
+editedAt: DateTimeImmutable @1699310301 {#2052
date: 2023-11-06 23:38:21.0 +01:00
}
+createdAt: DateTimeImmutable @1699287040 {#2054
date: 2023-11-06 17:10:40.0 +01:00
}
} |
|
Show voter details
|
95 |
DENIED
|
edit
|
App\Entity\Entry {#2058
+user: Proxies\__CG__\App\Entity\User {#2053 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "The-best-RAID-setup-for-internal-HDD-and-does-it"
+title: "The best RAID setup for internal HDD and does it actually make sense to use it all for gaming?"
+url: null
+body: """
I have 500gb SSD and need to basically uninstall Elden Ring and Dark Souls 3 to install Baldur’s Gate 3. I want to buy new SSD, but my money is a bit tight right now as I’m saving for my degree’s tuition fee.\n
\n
I’m thinking of buying 3x500GB spinning HDD that will cost me around $20. I know it wont be as fast as SSD, but I read/watched about RAID, and saw amazing result. Around 400-500MBPs, which should be more than enough for gaming, imo. If I were to buy the same amount of storage but SSD, it will cost me $100.\n
\n
I dont really need redundancy, as all of my personal documents are backed up in my server and I have separate disk just for my data archieve. It will only be used to game and game only.\n
\n
Do you think that my idea makes sense? Is it does…, I want to ask another questions.\n
\n
I knew I wanted to use RAID 0, but after I read arch wiki, it says that RAID 5 is superior. Should I use BTRFS, EXT4, ZFS, or F2FS? What kernel or module should I use?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 36
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699407312 {#2055
date: 2023-11-08 02:35:12.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2125 …}
+votes: Doctrine\ORM\PersistentCollection {#2041 …}
+reports: Doctrine\ORM\PersistentCollection {#2100 …}
+favourites: Doctrine\ORM\PersistentCollection {#2105 …}
+notifications: Doctrine\ORM\PersistentCollection {#2111 …}
+badges: Doctrine\ORM\PersistentCollection {#2102 …}
+children: []
-id: 10549
-titleTs: "'actual':11 'best':2 'game':19 'hdd':7 'intern':6 'make':12 'raid':3 'sens':13 'setup':4 'use':15"
-bodyTs: "'-500':81 '0':170 '100':108 '20':60 '3':15,21 '3x500gb':52 '400':80 '5':181 '500gb':3 'amaz':77 'amount':99 'anoth':161 'arch':175 'archiev':135 'around':59,79 'ask':160 'back':121 'baldur':18 'basic':8 'bit':33 'btrfs':187 'buy':25,51,96 'cost':57,106 'dark':13 'data':134 'degre':43 'disk':130 'document':119 'dont':110 'elden':10 'enough':88 'ext4':188 'f2fs':191 'fast':67 'fee':46 'game':90,142,144 'gate':20 'hdd':54 'idea':151 'imo':91 'instal':17 'kernel':193 'knew':164 'know':62 'm':39,48 'make':152 'mbps':82 'modul':195 'money':30 'need':6,112 'new':26 'person':118 'question':162 'raid':74,169,180 'read':174 'read/watched':72 'realli':111 'redund':113 'result':78 'right':35 'ring':11 'save':40 'saw':76 'say':178 'sens':153 'separ':129 'server':125 'soul':14 'spin':53 'ssd':4,27,69,103 'storag':101 'superior':183 'think':49,148 'tight':34 'tuition':45 'uninstal':9 'use':140,168,186,198 'want':23,158,166 'wiki':176 'wont':64 'zfs':189"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699373440
+visibility: "visible "
+apId: "https://lemmy.ml/post/7585833"
+editedAt: DateTimeImmutable @1699310301 {#2052
date: 2023-11-06 23:38:21.0 +01:00
}
+createdAt: DateTimeImmutable @1699287040 {#2054
date: 2023-11-06 17:10:40.0 +01:00
}
} |
|
Show voter details
|
96 |
DENIED
|
moderate
|
App\Entity\Entry {#2058
+user: Proxies\__CG__\App\Entity\User {#2053 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "The-best-RAID-setup-for-internal-HDD-and-does-it"
+title: "The best RAID setup for internal HDD and does it actually make sense to use it all for gaming?"
+url: null
+body: """
I have 500gb SSD and need to basically uninstall Elden Ring and Dark Souls 3 to install Baldur’s Gate 3. I want to buy new SSD, but my money is a bit tight right now as I’m saving for my degree’s tuition fee.\n
\n
I’m thinking of buying 3x500GB spinning HDD that will cost me around $20. I know it wont be as fast as SSD, but I read/watched about RAID, and saw amazing result. Around 400-500MBPs, which should be more than enough for gaming, imo. If I were to buy the same amount of storage but SSD, it will cost me $100.\n
\n
I dont really need redundancy, as all of my personal documents are backed up in my server and I have separate disk just for my data archieve. It will only be used to game and game only.\n
\n
Do you think that my idea makes sense? Is it does…, I want to ask another questions.\n
\n
I knew I wanted to use RAID 0, but after I read arch wiki, it says that RAID 5 is superior. Should I use BTRFS, EXT4, ZFS, or F2FS? What kernel or module should I use?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 36
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699407312 {#2055
date: 2023-11-08 02:35:12.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2125 …}
+votes: Doctrine\ORM\PersistentCollection {#2041 …}
+reports: Doctrine\ORM\PersistentCollection {#2100 …}
+favourites: Doctrine\ORM\PersistentCollection {#2105 …}
+notifications: Doctrine\ORM\PersistentCollection {#2111 …}
+badges: Doctrine\ORM\PersistentCollection {#2102 …}
+children: []
-id: 10549
-titleTs: "'actual':11 'best':2 'game':19 'hdd':7 'intern':6 'make':12 'raid':3 'sens':13 'setup':4 'use':15"
-bodyTs: "'-500':81 '0':170 '100':108 '20':60 '3':15,21 '3x500gb':52 '400':80 '5':181 '500gb':3 'amaz':77 'amount':99 'anoth':161 'arch':175 'archiev':135 'around':59,79 'ask':160 'back':121 'baldur':18 'basic':8 'bit':33 'btrfs':187 'buy':25,51,96 'cost':57,106 'dark':13 'data':134 'degre':43 'disk':130 'document':119 'dont':110 'elden':10 'enough':88 'ext4':188 'f2fs':191 'fast':67 'fee':46 'game':90,142,144 'gate':20 'hdd':54 'idea':151 'imo':91 'instal':17 'kernel':193 'knew':164 'know':62 'm':39,48 'make':152 'mbps':82 'modul':195 'money':30 'need':6,112 'new':26 'person':118 'question':162 'raid':74,169,180 'read':174 'read/watched':72 'realli':111 'redund':113 'result':78 'right':35 'ring':11 'save':40 'saw':76 'say':178 'sens':153 'separ':129 'server':125 'soul':14 'spin':53 'ssd':4,27,69,103 'storag':101 'superior':183 'think':49,148 'tight':34 'tuition':45 'uninstal':9 'use':140,168,186,198 'want':23,158,166 'wiki':176 'wont':64 'zfs':189"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699373440
+visibility: "visible "
+apId: "https://lemmy.ml/post/7585833"
+editedAt: DateTimeImmutable @1699310301 {#2052
date: 2023-11-06 23:38:21.0 +01:00
}
+createdAt: DateTimeImmutable @1699287040 {#2054
date: 2023-11-06 17:10:40.0 +01:00
}
} |
|
Show voter details
|
97 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
98 |
DENIED
|
moderate
|
App\Entity\Entry {#2107
+user: Proxies\__CG__\App\Entity\User {#2112 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "CLI-tools-to-quickly-find-recently-opened-files-by-fuzzy"
+title: "CLI tools to quickly find recently opened files by fuzzy search?"
+url: null
+body: "Are there any CLI tools like zoxide that allow to quickly find recently opened files by fuzzy search instead of directories?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699404338 {#2103
date: 2023-11-08 01:45:38.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2124 …}
+votes: Doctrine\ORM\PersistentCollection {#2118 …}
+reports: Doctrine\ORM\PersistentCollection {#2121 …}
+favourites: Doctrine\ORM\PersistentCollection {#2115 …}
+notifications: Doctrine\ORM\PersistentCollection {#2123 …}
+badges: Doctrine\ORM\PersistentCollection {#2116 …}
+children: []
-id: 10849
-titleTs: "'cli':1 'file':8 'find':5 'fuzzi':10 'open':7 'quick':4 'recent':6 'search':11 'tool':2"
-bodyTs: "'allow':9 'cli':4 'directori':21 'file':15 'find':12 'fuzzi':17 'instead':19 'like':6 'open':14 'quick':11 'recent':13 'search':18 'tool':5 'zoxid':7"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699438933
+visibility: "visible "
+apId: "https://reddthat.com/post/7516419"
+editedAt: DateTimeImmutable @1699398386 {#2106
date: 2023-11-08 00:06:26.0 +01:00
}
+createdAt: DateTimeImmutable @1699359433 {#2110
date: 2023-11-07 13:17:13.0 +01:00
}
} |
|
Show voter details
|
99 |
DENIED
|
edit
|
App\Entity\Entry {#2107
+user: Proxies\__CG__\App\Entity\User {#2112 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "CLI-tools-to-quickly-find-recently-opened-files-by-fuzzy"
+title: "CLI tools to quickly find recently opened files by fuzzy search?"
+url: null
+body: "Are there any CLI tools like zoxide that allow to quickly find recently opened files by fuzzy search instead of directories?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699404338 {#2103
date: 2023-11-08 01:45:38.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2124 …}
+votes: Doctrine\ORM\PersistentCollection {#2118 …}
+reports: Doctrine\ORM\PersistentCollection {#2121 …}
+favourites: Doctrine\ORM\PersistentCollection {#2115 …}
+notifications: Doctrine\ORM\PersistentCollection {#2123 …}
+badges: Doctrine\ORM\PersistentCollection {#2116 …}
+children: []
-id: 10849
-titleTs: "'cli':1 'file':8 'find':5 'fuzzi':10 'open':7 'quick':4 'recent':6 'search':11 'tool':2"
-bodyTs: "'allow':9 'cli':4 'directori':21 'file':15 'find':12 'fuzzi':17 'instead':19 'like':6 'open':14 'quick':11 'recent':13 'search':18 'tool':5 'zoxid':7"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699438933
+visibility: "visible "
+apId: "https://reddthat.com/post/7516419"
+editedAt: DateTimeImmutable @1699398386 {#2106
date: 2023-11-08 00:06:26.0 +01:00
}
+createdAt: DateTimeImmutable @1699359433 {#2110
date: 2023-11-07 13:17:13.0 +01:00
}
} |
|
Show voter details
|
100 |
DENIED
|
moderate
|
App\Entity\Entry {#2107
+user: Proxies\__CG__\App\Entity\User {#2112 …}
+magazine: App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1632 …}
+slug: "CLI-tools-to-quickly-find-recently-opened-files-by-fuzzy"
+title: "CLI tools to quickly find recently opened files by fuzzy search?"
+url: null
+body: "Are there any CLI tools like zoxide that allow to quickly find recently opened files by fuzzy search instead of directories?"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 19
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1699404338 {#2103
date: 2023-11-08 01:45:38.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2124 …}
+votes: Doctrine\ORM\PersistentCollection {#2118 …}
+reports: Doctrine\ORM\PersistentCollection {#2121 …}
+favourites: Doctrine\ORM\PersistentCollection {#2115 …}
+notifications: Doctrine\ORM\PersistentCollection {#2123 …}
+badges: Doctrine\ORM\PersistentCollection {#2116 …}
+children: []
-id: 10849
-titleTs: "'cli':1 'file':8 'find':5 'fuzzi':10 'open':7 'quick':4 'recent':6 'search':11 'tool':2"
-bodyTs: "'allow':9 'cli':4 'directori':21 'file':15 'find':12 'fuzzi':17 'instead':19 'like':6 'open':14 'quick':11 'recent':13 'search':18 'tool':5 'zoxid':7"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1699438933
+visibility: "visible "
+apId: "https://reddthat.com/post/7516419"
+editedAt: DateTimeImmutable @1699398386 {#2106
date: 2023-11-08 00:06:26.0 +01:00
}
+createdAt: DateTimeImmutable @1699359433 {#2110
date: 2023-11-07 13:17:13.0 +01:00
}
} |
|
Show voter details
|
101 |
DENIED
|
edit
|
App\Entity\Magazine {#399
+icon: Proxies\__CG__\App\Entity\Image {#301 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#328
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#282 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#275 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#264 …}
+entries: Doctrine\ORM\PersistentCollection {#222 …}
+posts: Doctrine\ORM\PersistentCollection {#180 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#242 …}
+bans: Doctrine\ORM\PersistentCollection {#159 …}
+reports: Doctrine\ORM\PersistentCollection {#145 …}
+badges: Doctrine\ORM\PersistentCollection {#123 …}
+logs: Doctrine\ORM\PersistentCollection {#113 …}
+awards: Doctrine\ORM\PersistentCollection {#102 …}
+categories: Doctrine\ORM\PersistentCollection {#89 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#325
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#327
date: 2023-11-02 13:51:08.0 +01:00
}
} |
|
Show voter details
|