Search found 115 matches
- Tue May 24, 2022 7:18 pm
- Forum: Apple
- Topic: Errors on disk
- Replies: 1
- Views: 841
Re: Errors on disk
There are several ways. The recommanded way is Repair Your Disk in macOS Recovery, Restart or turn on your Mac, then immediately press and hold Cmd + R . Release the keys when your Mac displays anything on the screen. Once you’re in macOS Recovery, launch Disk Utility and proceed to run First Aid . ...
- Fri May 20, 2022 7:55 am
- Forum: Apple
- Topic: Mac startup key combinations
- Replies: 0
- Views: 1228
Mac startup key combinations
Some interesting information to boot a Mac. On an Intel-based Mac To use any of these key combinations, press and hold the keys immediately after pressing the power button to turn on your Mac, or after your Mac begins to restart. Keep holding until the described behavior occurs. Command (⌘)-R : Star...
- Fri May 20, 2022 7:37 am
- Forum: Apple
- Topic: SOLVED: USB-drive no longer recognized
- Replies: 3
- Views: 1548
Re: USB-drive no longer recognized
You can also try to load it manually:
In Utilities > Terminal
Type: diskutil list to find your drive (mine is disk2s1)
Unmount the drive: diskutil unmount /dev/disk2s1
Mount the drive: diskutil mount /dev/disk2s1
In Utilities > Terminal
Type: diskutil list to find your drive (mine is disk2s1)
Unmount the drive: diskutil unmount /dev/disk2s1
Mount the drive: diskutil mount /dev/disk2s1
- Tue May 17, 2022 10:12 pm
- Forum: Apple
- Topic: SOLVED: USB-drive no longer recognized
- Replies: 3
- Views: 1548
Re: USB-drive no longer recognized
I had this problem once.
I solved it by connecting (and properly dismount) on another computer.
And then connect it again to the macbook.
I solved it by connecting (and properly dismount) on another computer.
And then connect it again to the macbook.
- Fri Feb 04, 2022 4:14 pm
- Forum: Linux
- Topic: SOLVED: su command not found
- Replies: 2
- Views: 1626
Re: su command not found
I had the same problem on Gentoo server.
turns out it was a update that went wrong.
recompiling shadow and util-linux solved the problem:
su flag is missing in sys-apps/shadow and is included in sys-apps/util-linux
turns out it was a update that went wrong.
recompiling shadow and util-linux solved the problem:
Code: Select all
emerge -vp shadow util-linux
- Mon Dec 20, 2021 9:03 pm
- Forum: Linux
- Topic: Solved : linux not connecting to hidden wifi network
- Replies: 2
- Views: 1955
Re: linux not connecting to hidden wifi network
Because a hidden wifi network doesn't broadcast its name,
You have to tell the raspberry pi to scan for it.
add
in /etc/wpa_supplicant/wpa_supplicant.conf
or
in /etc/network/interfaces/wlan0
You have to tell the raspberry pi to scan for it.
add
Code: Select all
scan_ssid=1
or
Code: Select all
wpa-scan-ssid 1
- Sun Oct 24, 2021 11:37 am
- Forum: Windows
- Topic: How to clear DNS cache
- Replies: 1
- Views: 2591
Re: How to clear DNS cache
You can do it with ipconfig open the Run dialog box: ( windows key + R) enter : ipconfig /flushdns but it might be clearer using comand prompt (run as administrator): and run ipconfig /flushdns If you want to use power shell: Type "powershell" in the search bar beside the Windows logo. sel...
- Fri Apr 09, 2021 7:53 pm
- Forum: Linux
- Topic: linux read csr
- Replies: 1
- Views: 3240
Re: linux read csr
You can use the opsenssl command:
Or give it on some sites :
https://www.sslshopper.com/csr-decoder.html
Code: Select all
openssl req -noout -text -in certfile.csr
https://www.sslshopper.com/csr-decoder.html
- Tue Mar 02, 2021 8:42 pm
- Forum: Linux
- Topic: Debian no shutdown command ?
- Replies: 1
- Views: 3100
Re: Debian no shutdown command ?
for debian you neet to be "real"-root.
So the correct su command:
I had the same problem when I installed a debian server.
So the correct su command:
Code: Select all
su -
- Wed Feb 17, 2021 4:52 pm
- Forum: Linux
- Topic: Parted mkpart full disk
- Replies: 1
- Views: 2942
Re: Parted mkpart full disk
standard the numbers are MB, you can lookup the size and the free space with print.
If you want to create an new partition on an empty disk,
the easiest way is using percentage:
If you want to create an new partition on an empty disk,
the easiest way is using percentage:
Code: Select all
mkpart primary ext4 0% 100%