由买买提看人间百态

topics

全部话题 - 话题: startx
1 2 下页 末页 (共2页)
m**a
发帖数: 1208
1
来自主题: StartUp版 - Standford Univ, StartX
我想加入Startford university 的startX program.
However, In order to be eligible to apply to the StartX accelerator program,
at least one founder of your company has to have a Stanford affiliation.
这有Stanford Unv. 的人愿让我搭伙加入吗?
呃……我是很有passion的合作伙伴哦。
谢。
k******t
发帖数: 1498
2
来自主题: StartUp版 - Standford Univ, StartX
这个startx哪些方面比较特别?湾区的incubator很多啊。

program,
m**a
发帖数: 1208
3
来自主题: StartUp版 - Standford Univ, StartX
startX 是个Stanford的community,
f********u
发帖数: 572
4
【 以下文字转载自 Linux 讨论区 】
【 原文由 flywithyou 所发表 】
I have one user account setup on my Linux redhat 7.3 as Friend.
It could not startx when I log on as Friend, while I can as ROOT.
The error message for Friend account is: does not appear to have
the ownership of console. What's the problem here? How shall I
solve this problem? Thanks a lot. :)
a*****p
发帖数: 1285
5
来自主题: Java版 - java graphics2d 画图请教
public class MouseComponent extends JComponent {



public MouseComponent() {

shapes = new ArrayList();
lines = new ArrayList();
bounds = new ArrayList();
current = null;
startpoint = null;
endpoint = null;

isSelected = false;
eraserSelected = false;
cursorPointer = false;
isLine = false;
clear = false;
filled = false;

shapeIndex =... 阅读全帖
W***i
发帖数: 9134
6
来自主题: JobHunting版 - 请教一道题
private int[][] A = {{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16}};
public void printA()
{
int endX = A.length-1;
int endY = endX;
int startX = 0;
int startY = 0;
while(endX > 0 )
{
for(int i = startX; i <= endX; i++)
{
System.out.print(A[startX][i] + ",");
}
startY++;

for(int i = startY; i <= endY; i++)
{
System.out.print(A[i][endX] + ",");
}
endX--;

c******t
发帖数: 391
7
来自主题: JobHunting版 - 一道关于matrix traversal的面试题
今天面试码工职位,被问到了一道coding题,说有一个m x n的二维矩阵Item[][],每一
个元素都是一个Item类的object, 其中Item类定义如下:
public class Item{
public int x; //
public int y;
}
x和y分别是矩阵里的另一个元素的横纵坐标。实现一个函数,给定一个起始点的横纵坐
标startX 和startY,返回从起始点出发的traversal是否能cover矩阵里的每一个点。
我的想法是用一个hashSet,每初始化一个Item,都放入这个set, 直到遇到重复元素
或null为止,然后计算hashSet的size是否等于matrix的size。我写的基本算法:
boolean getCoverage(Item[][] items, int startX, int startY){
Item item = items[startX][starty];
HashSet set = new HashSet();
set.add(item);
while(item... 阅读全帖
m*****k
发帖数: 731
8
来自主题: JobHunting版 - Citadel面经+分享奇葩经历
public static int reach(char start, char end , int steps){
HashMap keyboard = new HashMap<>();
keyboard.put('1', new int[]{0,0});
keyboard.put('2', new int[]{0,1});
keyboard.put('3', new int[]{0,2});
keyboard.put('4', new int[]{1,0});
keyboard.put('5', new int[]{1,1});
keyboard.put('6', new int[]{1,2});
keyboard.put('7', new int[]{2,0});
keyboard.put('8', new int[]{2,1});
keyboard.put('9', new int[]{2,2});
keyboard.put('*', new int[]{3,0});
keyboard.put('0', new int[]{3,1});
... 阅读全帖
m*****k
发帖数: 731
9
来自主题: JobHunting版 - Citadel面经+分享奇葩经历
那就再加个map存中间结果不就dp了么。
public static BigInteger reach(char start, char end, int steps) {
Map keyboard = new TreeMap<>();
Map pathsMap = new HashMap<>();
keyboard.put('1', new int[] { 0, 0 });
keyboard.put('2', new int[] { 0, 1 });
keyboard.put('3', new int[] { 0, 2 });
keyboard.put('4', new int[] { 1, 0 });
keyboard.put('5', new int[] { 1, 1 });
keyboard.put('6', new int[] { 1, 2 });
keybo... 阅读全帖
a*******e
发帖数: 3021
10
来自主题: Linux版 - 新服务器的xwindows问题
dual core,集成intel g31的显卡,4G内存
装了fedora9的最小安装,无xwin,无gnome等
现在想装个基本的xwin,所以
yum install xorg-x11-server-Xorg +dependencies,
yum install xorg-x11-drv-i810 (intel driver)
yum install xorg-x11-xinit
问题来了,startx启动不了,google了一下大概xorg.conf设置有问题,
就让X自动设置了一个, Xorg -configure
然后 X -config ~/xorg.conf.new 这时候xwin启动了,
但是有个错
error setting MTRR (base = 0xe0000000, size = 0x10000000, type = 1) Invalid
argument (22)
似乎xwindows没问题,我就把这个xorg.conf.new考到了/etc/X11/xorg.conf,
startx
靠,奶奶的,写到一半似乎startx也能启动了,先占个坑,有问题了再
I*********t
发帖数: 5258
11
来自主题: Apple版 - 请教XQuartz 运行的问题
你在terminal里面运行Xquartz或者startx后,那个X窗口的图标有没有显示在dock上?
如果显示了就说明运行了,那些error没关系。我的X窗口运行没有问题,但是在
terminal里面输入Xquartz或startx后也显示和你一样的东西。如果没有显示X的图标,
双击Utilities里面的X11.app运行试试。
a*******e
发帖数: 3021
12
来自主题: Linux版 - 新服务器的xwindows问题
对阿,这就是问题,用X -config就可以,用startx就不行
看来startx里面加了啥东西
d****g
发帖数: 1049
13
来自主题: Linux版 - ubuntu10.04比9.1有什么提高?
看来是没必要升级了:)
如果只是作为服务器,10.04和9.1有没有实质的优势呢?
我现在不小心装了个9.1桌面版可是主要当服务器用。有没有办法
把桌面那部分卸载?或者引导的时候不加载那些东西。我猜这样也许
可以提高系统的效能。如果想用桌面就startx用x11传到server(本地).
我现在一运行startx就给我一堆错说是已经在运行了。估计就是桌面
在引导的时候自动加载了的缘故。
(可能比较乱:)还是linux菜鸟)
w*m
发帖数: 1806
14
来自主题: Linux版 - 菜鸟问个问题
edit ~/.vnc/xstartup
here is a copy of mine,
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
startx &
ps: startx will start gnome or kde.
w*y
发帖数: 74
15
I installed all the pkg related to net.
I guess I need to set up sth so that the xserver could work, since I got the
following message when I type "startx" and then close the pop out "xfree86"
window:
$ startx
login: fatal IO error 32 (Broken pipe) or KillClient on X server ":0.0"
xterm: fatal IO error 32 (Broken pipe) or KillClient on X server ":0.0"xterm:
xinit: connection to X server lost.ed) or KillClient on X server ":0.0"
waiting for X server to shut down XIO: fatal IO error 104 (Conne
m****t
发帖数: 2684
16
来自主题: Unix版 - cygwin 问题请教
安装好后,运行一切正常,X windows OK, 但是在运行 startx 时,有几处错误信息
1. cat: /home/xxx/.Xauthority: No such file or directory
我参考了一下 linux, 根目录下有一文件 .Xauthority, 但不知如何生成的
2. 当startx结束时,有另一出错信息:
wait for X sever shut down XIO : fatal XIO error (connection reset by peer)
on X server ":0.0"
after 386 requests (377 known processed) with 0 events remainings.
X connection to :0.0 broken (explicit kill or server shutdown).
请指教。谢谢.
q*****g
发帖数: 1568
17
来自主题: Unix版 - how to change the log in shell?
Actually, there is a hack, suppose you don't need X stuff, then
put this line in your .login, or .cshrc, or whatever file that
your default shell loads whenever you login:
if ( -f /bin/bash ) exec /bin/bash --login
If you do want to use X from time to time, you need a bit more
trick. I am not an expert on that, but this line in my .bash_profile
may help you:
if [ -z "$DISPLAY" ] && [ $(tty) == /dev/vc/1 ]; then
startx
fi
Of course, that was meant to automate startx not /bin/bash, but
the idea
e***s
发帖数: 799
18
来自主题: JobHunting版 - A家电面
void filp(int startX, int startY, int endX, int endY){
}
这样一个方法?
e***s
发帖数: 799
19
来自主题: JobHunting版 - A家电面
保证startX < endX; startY < end Y;
然后两层for循环不就完了吗?
是不是我miss something 了?
b******y
发帖数: 9224
20
来自主题: StartUp版 - Standford Univ, StartX
找incubator不如找客户。
m**a
发帖数: 1208
21
来自主题: StartUp版 - Standford Univ, StartX
偶就是想混进startup 的圈子。
偶从东部来,没了组织
你们平时都在哪meet?
h*********e
发帖数: 6226
22
来自主题: Texas版 - 大家用哪家电力公司的电?
startx, 10c
j**c
发帖数: 596
23
来自主题: Apple版 - 请教XQuartz 运行的问题
我的macbook pro里的XQuartz运行不了,在terminal里的error是
launch_msg("CheckIn") IPC failure: Operation not permitted
要是用startx的话,error是
font_cache: Scanning user font directories to generate X11 font caches
font_cache: Updating FC cache
xauth: file /Users/xxxxxx/.serverauth.552 does not exist
launch_msg("CheckIn") IPC failure: Operation not permitted
font_cache: Done
那位大侠指点一下。快抓狂了。包子感谢。
t**********s
发帖数: 930
24
【 以下文字转载自 Linux 讨论区 】
发信人: tennisalways (tennisforever), 信区: Linux
标 题: 怎样使Linux 开机直接进入GUI的登录界面?
发信站: BBS 未名空间站 (Sun Jan 9 15:03:07 2011, 美东)
几台PC装了Fedora Linux。有一台每次开机都进入黑底白字的登陆界面,而其他的都是
显示GUI的登录界面。而且字符界面登陆后,STARTX不起作用。错误信息是Server
Error。Delete /tmp/.X)-Lock什么的。
Google了一下发现Ctrl+Alt+F7可以从字符登陆界面转到GUI登陆界面,登陆后就直接进
入GUI了。
我怎么能不按那个组合键,让开机后直接进入GUI登录界面呢?
c*******n
发帖数: 671
25
有点急,借人气一问。
Xubuntu进不去GUI了,登陆后黑屏。
前天莫名其妙firefox从28升级到29后, tree style tabs就不能用了。
然后我把firefox卸了又重装到了28. 然后提示有些更新我就点了。后来莫名奇妙地就
关机了,开机后再也进不去GUI了。
确认不是显卡的问题,因为我查了没有装任何nvidia的东西。
一开始如果运行 startx, 会跳出一个窗口说failed to load session gnome
我想重装gnome-session,说有package broken hold不能。
我一失手update upgrade了,结果我的系统直接从12.10升级到了14.10!还是进去不
GUI.
我又卸了lighdm重装,结果也不行。
现在mess up了,请教怎么debug,trouble shooting阿?新手弱弱一问。求救!
ps: 升级都是从稳定版本可以直接升,我这从12.10升到了14.10怎么办啊?
c*******n
发帖数: 671
26
list我出现问题之前改过,加了Utopic, 因为当时firefox不能downgrade, 怎么只有在
Utopic里面才有firefox28.
gnome我都删了,然后重装提示you have held broken package, 大概是因为升级了系
统导致的?
现在问题是我startx, 结果说:
serversion 1.4 faild
.
..
Loading extension GLX
Fatal server error:
no screen found (EE)
...
.
xint give up...
这是xwindow破坏了吗?
我用的是xubuntu. 是应该装xubuntu-desktop,,还是xfce4(具体package是啥),还是
xorg呢?
这几者什么关系呢?
google到了这样一篇帖子,好像确实也是因为firefox引起的,他说重装xorg就好,不
知道该不该试一下?
http://blog.sina.com.cn/s/blog_9ed9ef3b0101eemm.html
c*******n
发帖数: 671
27
谢谢,以下是我的X11/xorg.0.log, 我看不出来什么问题?是的我不应该删lightdm,
不是那个的问题。startx会出现我上面帖子写的Loading extension GLX, fatal
server error: no screen found. 请问我该怎么修复xwindow? 谢谢!
[ 4.113]
X.Org X Server 1.13.0
Release Date: 2012-09-05
[ 4.113] X Protocol Version 11, Revision 0
[ 4.113] Build Operating System: Linux 3.2.0-37-generic x86_64 Ubuntu
[ 4.113] Current Operating System: Linux x-ThinkPad-X201 3.5.0-49-generic
#74-Ubuntu SMP Fri May 2 23:28:58 UTC 2014 x86_64
[ 4.113] Kernel command line: BOOT_IM... 阅读全帖
Z**0
发帖数: 1119
28
从你的xorg log,你的X server没有问题。检查一下,这个目录下的logs。
/var/log/lightdm/
startx,应该是直接启动不了X的。因为X11要默认启动一个display-manager。 cat /
etc/X11/default-display-manager,看看里边用的是什么?
检查apt源,保证是官方源先。重新安装 apt-get reinstall lightdm
重新启动机器,看看有什么问题?
N****w
发帖数: 21578
29
进 X 也不需要啥 service
直接在 init 的某个 rc 文件里 startx 好了
b***i
发帖数: 3043
30
问题太多了,原因就是有两个硬盘,三个分区。
后来,在ubuntu里给sata secondary 原 C, E盘写了启动grub,
然后,发现ubuntu server没有图形界面,又update 了,后来启动startx,就进入gui,
然后重起,又进不去了,卡在输入密码处,键盘caps lock scroll lock直闪,重起,
进入windows, 进不去了,原来,前面第一次写的grub写到windows XP 的G盘了,于是
用windows xp盘 recover, fixmbr, copy ntldr等,可以进入G 的windows, 发现G, E
可读,C盘不可读了,需要格式化。而且,windows xp恢复盘不能把mbr写入C盘。
反正就是很麻烦。不过,我就准备把C盘和新的ubuntu的分区合并,然后重装ubuntu
desktop, non-server。
b***i
发帖数: 3043
31
Dell 4600, nVidia GeForce MX440 with AGP8x
太古老了,硬盘ide 320G primary, sata 160G secondary, sony cdrw, nec dvdrw,
光盘检查过,正常。
经历,第一次装,装了ubuntu 8.10 server,完毕启动,文本状态,装了图形界面,然
后startx,正常,然后重启,死在登录界面,等待输入用户名,没有反应。
第二次,装ubuntu desktop 8.04,覆盖原硬盘分区,正常启动,运行了一回儿,死机
,重启,发现firefox用了一会儿,死机,
第三次,装unbutn desktop 8.10,不能进入图形界面的安装界面,死在刚出图形的那
会儿。
另外,我如果只装server, 不装gui,可以在另外一台电脑client 用X吗?
a*******e
发帖数: 3021
32
来自主题: Linux版 - 新服务器的xwindows问题
是跟显卡有关,反正现在startx能启动xinw了,但这个错还有。
回头我再看看bios里的设置,asus的bios做的好烂啊
a*******e
发帖数: 3021
33
来自主题: Linux版 - 新服务器的xwindows问题
我有twm应该足够。
我原来的问题是我用X -config /etc/X11/xorg.conf就可以启动X,
但是startx这个命令就不行,屏幕一闪就回到控制台了
然后莫名其妙就可以了,也许根我装了twm有关?但是我觉得不应该,即使没wm也应该
能启动X。
当然那个错误还一直在,但不影响启动X。
a*******e
发帖数: 3021
34
来自主题: Linux版 - 新服务器的xwindows问题
为啥啊。。
没有twm也应该给我启动X啊,只是没有window manager而已,难道startx要求必须有个
wm存在?
y*******g
发帖数: 6599
35
来自主题: Linux版 - 新服务器的xwindows问题
装了wm后startx的脚本改变了吧
a*******e
发帖数: 3021
36
来自主题: Linux版 - 新服务器的xwindows问题
不是吧,startx是xorg-x11-xinit里面的呀
不过我也不懂垃
r***u
发帖数: 241
37
来自主题: Linux版 - 新服务器的xwindows问题
那就是startx会退出?反正我从来不直接运行X的
s****n
发帖数: 786
38
vi $HOME/.vnc/xstartup
make it look like this:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
startx &

la
can
h*******c
发帖数: 248
39
来自主题: Linux版 - Autologin
看到autorun的帖子,顺便贡献一个autologin的方法。
I'm the only user of my linux box. I want to have autologin w/o gdm/kdm or
any other unnecessary stuff. Here is the solution:
- Change boot level to 3:
edit /etc/inittab: id:3:initdefault:
- Autologin w/o X:
edit /etc/event.d/tty1: change the last line to
exec /sbin/mingetty --autologin your-user-name tty1
- Auto start X:
edit your .bash_profile and add a line at the end
[ -z "$DISPLAY" ] && [ $(tty) == /dev/tty1 ] && startx
p******s
发帖数: 738
40
来自主题: Linux版 - arch的x又进不去了...
重装之后...startx直接黑屏...除了sysrq的重启和拔电源其他全部无效...
p******s
发帖数: 738
41
来自主题: Linux版 - xorg.conf是不是通用的?
某个机器上面arch一startx就直接挂掉...mandriva倒是能进X不过速度明显弱小很多..
.能把xorg.conf直接挪过去么?看了一下是有内容的...
w*****3
发帖数: 8
42
来自主题: Linux版 - gentoo 中文输入
emerge了fcitx
打开以后显示输入法的地方: "F4Rt"
请问那里没搞好?
startx 时设置了LANG=zh_CN.gb2312
S****t
发帖数: 1319
43
请求帮助。
试了一下startx,gdm什么的,都不好用。
电脑是联想的。
s*****o
发帖数: 1262
44
来自主题: Linux版 - cygwin的替代软件?
我们实验室通过cygwin连接远程linux主机工作,通过startx 启动X11 display工作。
最近在我的电脑上装了cygwin,一直有毛病,想问问各位,有没有cygwin的替代物。
我知道xming可以,以前用过,容易死,有没有别的软件、途径?
谢谢各位
v*****r
发帖数: 1119
45
来自主题: Linux版 - cygwin的替代软件?
常见错误,很多fix, 最简单的 fix 是:
不要用 cygwin 的 startx to start X, 用 startxwin to start X, you should be
okay then.
s*****o
发帖数: 1262
46
来自主题: Linux版 - cygwin 怎么不能上下左右?
startx 之后的界面(X window?)里
用下面命令写个c程序:
$vi test.c 之后点一下“i”,按道理就应该开始正常的输入
但发下很多键用不了,比如上下左右变成了ABCD,backspace不是向左删除而是向左移
动,怎么fix,
我需要什么配置吗?
谢谢
b*****l
发帖数: 9499
47
来自主题: Linux版 - 菜鸟问个问题
赞!
俺看了俺的,貌似没有把 twn & 注掉,也没有加 startx &,好像也成。关键是把前面
那两行给 uncomment 掉。
a*******e
发帖数: 3021
48
never tried, but maybe u could do the following:
edit /etc/X11/prefdm, modify preferred=GNOME to KDE
then startx?
s****g
发帖数: 183
49
followed online wiki: https://wiki.archlinux.org/index.php/VirtualBox,
"Running Arch Linux as a guest" 那一段。 startx 出错,"Failed to load module
"vboxvedio". 请大虾指点。
t**********s
发帖数: 930
50
几台PC装了Fedora Linux。有一台每次开机都进入黑底白字的登陆界面,而其他的都是
显示GUI的登录界面。而且字符界面登陆后,STARTX不起作用。错误信息是Server
Error。Delete /tmp/.X)-Lock什么的。
Google了一下发现Ctrl+Alt+F7可以从字符登陆界面转到GUI登陆界面,登陆后就直接进
入GUI了。
我怎么能不按那个组合键,让开机后直接进入GUI登录界面呢?
1 2 下页 末页 (共2页)