出现 Unable to cd to ‘home/xxx’解决办法
问题:
开机引导基本服务都显示正常,gnome displaymanager Fails,无法进图形界面,输用户名密码后出现 Unable to cd to ‘home/xxx’
解决:
开机时选择(recovery mode)
输入命令 chmod 755 /
重启问题得到解决
M33-2 401固件发布喽
http://www.pspgen.com/modules.php?name=News&file=article&sid=7254
http://dark-alex.org/
4.01 M33
———-
Instructions: Copy UPDATE folder /PSP/GAME/ and run.
Put the 4.01 sony update as 401.PBP in same folder, or let the program download it for you using a wifi connection.
Changes:
- Bug fix: vshmenu didn’t let change camera mode due to camera_plugin using select button.
Fixed, now vsh menu will not be loaded when using the camera.
- Recovery can now be translated, See how below. Translation to spanish is autoincluded.
- Updated the M33 SDK with a new function and sample, and released the psp-packer tool to
compress prx’s and PBP’s in the ~PSP format.
- The folder of 4.01 and highre homebrew will be GAME4XX so it won’t need change on update.
Taanslating the recovery.
To translate the recovery create a text file in ms0:/seplugins/xx_recovery.txt
or flash1:/xx_recoery.txt (they are evaluated in that order), where xx is the language code
of your language:
es -> spanish
en -> english
fr -> french
de -> german
it -> italian
ja -> japanese
ko -> korean
nl -> netherlands
pt -> portuguese
ru -> russian
ch1 -> chinese simplified
ch2 -> chinese traditional
The file en_recovery.txt in translate folder is included for people to translate to their languages, this file is not needed for english people, as the english language is used when no language file is found.
Just change the english strings to your language ones, and put it in the path mentioned above. Be careful to check in the recovery that the lines look fine, don’t use too large text.
The spanish file es_recovery.txt will be written by the program in the memory stick.
1.50 kernel addon for fat will be released this evening or this night.
4.01 M33-2 (bugfix update)
————————–
Changes:
- Nids resolver: Fixed scePowerGetCpuClockFrequency issue. This is the same bug that happened in 3.80 M33-1, it won’t happen again
- Fixes recovery problems that have apperared in prior version (incorrect position of back string in language others than english, enable, and disabled strings not translated in plugins, hide pic0+pic1 couldn’t be changed, language file in flash1 wasn’t working..
- Spanish recovery translation typos fixed.
安装KDE4导致gnome,xfce字体发虚问题
闲的没事装了个kde4想看下,结果发现xfce下的字体都发虚,怎么设都不行。
就算卸载kde也不行,
其实解决方法很简单,删除登录用户下的所有font相关配置文件,删之前备份一下。
根据ee的提示,只删这个文件 ~/.fonts.conf
重新登录,就不虚了。再次感谢ee。
在windows下复制FreeBSD光盘里的源码
cd x:\7.0-RELEASE\src
copy ssys.?? /B c:\bsd\src\ssys.tgz
FreeBSD 在virtualbox中使用正常cpu和内存,NAT上网设定
FreeBSD 在virtualbox中使用正常cpu和内存,NAT上网设定
http://forums.virtualbox.org/viewtopic.php?t=6370
You can try to add hw.physmem= to your loader.conf
In your case the line should look like this;
hw.physmem=536870912 使用内存
Additionaly if you have a high cpu load on your host even if the guest idles you can add the
following line:
kern.hz=100 使用cpu
使用网络方法http://forums.virtualbox.org/viewtopic.php?t=2563
#!/bin/bash
ifconfig pcn0 down
ifconfig pcn0 media 10baseT/UTP
ifconfig pcn0 up
dhclient pcn0
Place the script below in /usr/local/etc/rc.d/mynetwork
Feel free to rename the file or the name of the service it provides (mynetwork) to suit your
needs.
Make the following changes to /etc/rc.conf:
1. Remove any line activating DHCP on the pcn0 interface, such as
ifconfig_pcn0="DHCP"
2. Add the line
mynetwork_enable="YES"
#!/bin/sh
# PROVIDE: mynetwork
# REQUIRE: netif
# BEFORE: SERVERS
# KEYWORD: nojail
. /etc/rc.subr
name="mynetwork"
rcvar=`set_rcvar`
start_cmd="${name}_start"
stop_cmd=":"
eval "${rcvar}=\${${rcvar}:-'NO'}"
mynetwork_start()
{
ifconfig pcn0 media 10baseT/UTP
dhclient pcn0
echo "Started MyNetwork"
return 0
}
load_rc_config $name
run_rc_command "$1"
