Search found 127 matches

by Chris
Sat Dec 02, 2017 3:09 pm
Forum: General
Topic: SOLVED: krdc send ctrl+alt+del
Replies: 2
Views: 23034

Re: krdc send ctrl+alt+del

You can try:

<CTRL><AltGr><Del> (on the my keyboard, on US-keybord it's <CTRL><Alt-right><Del>)

Or just
<AltGr><Del>
by Chris
Fri Dec 01, 2017 8:02 pm
Forum: Linux
Topic: command to compare cpu speed
Replies: 1
Views: 18743

Re: command to compare cpu speed

There are some tools you can use to check your CPU The /proc/cpuinfo file contains details about individual cpu cores: less /proc/cpuinfo lscpu lscpu is a small and quick command that does not need any options. It would simply print the cpu hardware details in a user-friendly format. dmidecode The d...
by Chris
Sun Nov 26, 2017 7:11 pm
Forum: Windows
Topic: Laptops can't find each other on Wifi network
Replies: 1
Views: 19109

Re: Laptops can't find each other on Wifi network

There can be severals reasons.

Can you ping the access-point/gateway ?
If it is the only you can ping.

It might be a setting on the access-point.

On my wifi-router, there is a setting that allow to "isolate" clients/(Laptops).
Make sure it is unchecked.
router_screenshot.png
router_screenshot.png (35.86 KiB) Viewed 19107 times
by Chris
Wed Jun 21, 2017 4:28 pm
Forum: General
Topic: SOLVED: How to open winmail.dat
Replies: 2
Views: 21085

Re: How to open winmail.dat

This happens when there is problem with sending/recieving the mail. info from microsoft: The Winmail.dat file is used to preserve Rich Text formatting. Outlook uses it when sending a Rich Text-formatted message. During transport, the content of the message may be changed, preventing the receiving cl...
by Chris
Thu May 25, 2017 9:11 am
Forum: Windows
Topic: Set passsword with group policy
Replies: 1
Views: 18655

Re: Set passsword with group policy

You can do it with the following steps: 1. Open Active Directory Users and Computers. 2. In the console tree, right-click the domain or organizational unit that you want to set Group Policy for. 3. Click Properties, and then click the Group Policy tab. 4. Click an entry in Group Policy Object Links ...
by Chris
Thu May 18, 2017 8:26 am
Forum: General
Topic: Acer laptop and bios
Replies: 1
Views: 18671

Re: Acer laptop and bios

It depends on your type of laptop.
So what type do you have ?

On some you have to press Pause/break-button (at boot)
and then F2 or del-key.

But I heard that on some you have to press ctrl+alt+del at boot
to get into bios
by Chris
Fri May 05, 2017 6:59 am
Forum: General
Topic: SOLVED: hpunix show network interfaces
Replies: 2
Views: 21876

Re: hpunix show network interfaces

Yuo can use

Code: Select all

# lanscan
This will show all the lan cards

For more specific info

Code: Select all

# ifconfig lan0
by Chris
Fri Feb 24, 2017 7:05 pm
Forum: Linux
Topic: ext4 disk 4TB not mounting
Replies: 1
Views: 19475

Re: ext4 disk 4TB not mounting

I think your mount command is wrong, you should mount the partition, not the drive. mount -t ext4 /dev/sdc1 /mnt/test/ For the type Microsoft basic data , It don't think it pose a problem. You can change the type with gdisk: sudo gdisk /dev/sdc t change a partition's type code And change it to the d...
by Chris
Wed Dec 21, 2016 9:20 pm
Forum: Linux
Topic: RaspberryPi automatic connect to hidden wireless network
Replies: 2
Views: 21772

Re: RaspberryPi automatic connect to hidden wireless network

You can also add a fixed ip-address:

Update /etc/network/interfaces

Code: Select all

iface wlan0 inet static
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
address 192.168.1.81
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.254
by Chris
Wed Dec 21, 2016 9:08 pm
Forum: Linux
Topic: RaspberryPi automatic connect to hidden wireless network
Replies: 2
Views: 21772

Re: RaspberryPi automatic connect to hidden wireless network

if it is protected WPA you need to setup a /etc/wpa_supplicant/wpa_supplicant.conf sudo nano /etc/wpa_supplicant/wpa_supplicant.conf ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="YOURSSID" psk="YOURPASSWORD" # Protocol type can be: RSN (f...